cimpress-fulfiller-identity
Advanced tools
Comparing version 0.2.2 to 0.3.0
@@ -1,2 +0,2 @@ | ||
"use strict"; | ||
'use strict'; | ||
@@ -10,13 +10,22 @@ function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } } | ||
var FulfillerNotFoundError = function (_Error) { | ||
_inherits(FulfillerNotFoundError, _Error); | ||
_inherits(FulfillerNotFoundError, _Error); | ||
function FulfillerNotFoundError() { | ||
_classCallCheck(this, FulfillerNotFoundError); | ||
function FulfillerNotFoundError() { | ||
var _ref; | ||
return _possibleConstructorReturn(this, (FulfillerNotFoundError.__proto__ || Object.getPrototypeOf(FulfillerNotFoundError)).apply(this, arguments)); | ||
} | ||
_classCallCheck(this, FulfillerNotFoundError); | ||
return FulfillerNotFoundError; | ||
for (var _len = arguments.length, args = Array(_len), _key = 0; _key < _len; _key++) { | ||
args[_key] = arguments[_key]; | ||
} | ||
var _this = _possibleConstructorReturn(this, (_ref = FulfillerNotFoundError.__proto__ || Object.getPrototypeOf(FulfillerNotFoundError)).call.apply(_ref, [this].concat(args))); | ||
_this.name = 'FulfillerNotFoundError'; | ||
return _this; | ||
} | ||
return FulfillerNotFoundError; | ||
}(Error); | ||
module.exports = FulfillerNotFoundError; |
{ | ||
"name": "cimpress-fulfiller-identity", | ||
"version": "0.2.2", | ||
"version": "0.3.0", | ||
"description": "Thin client library for Cimpress' Fulfiller Identity service", | ||
@@ -5,0 +5,0 @@ "main": "./lib/index.js", |
class FulfillerNotFoundError extends Error { | ||
constructor(...args) { | ||
super(...args); | ||
this.name = 'FulfillerNotFoundError'; | ||
} | ||
} | ||
module.exports = FulfillerNotFoundError; |
57451
1135