@feathersjs/client 5.0.12 → 5.0.14
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +8 -0
- package/dist/core.js +13 -13
- package/dist/core.js.map +1 -1
- package/dist/core.min.js +1 -1
- package/dist/feathers.js +320 -63
- package/dist/feathers.js.map +1 -1
- package/dist/feathers.min.js +1 -1
- package/package.json +14 -15
package/dist/feathers.js
CHANGED
|
@@ -29,8 +29,8 @@ function _iterableToArrayLimit(r, l) { var t = null == r ? null : "undefined" !=
|
|
|
29
29
|
function _arrayWithHoles(arr) { if (Array.isArray(arr)) return arr; }
|
|
30
30
|
function _defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, _toPropertyKey(descriptor.key), descriptor); } }
|
|
31
31
|
function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); Object.defineProperty(Constructor, "prototype", { writable: false }); return Constructor; }
|
|
32
|
-
function _toPropertyKey(
|
|
33
|
-
function _toPrimitive(
|
|
32
|
+
function _toPropertyKey(t) { var i = _toPrimitive(t, "string"); return "symbol" == _typeof(i) ? i : String(i); }
|
|
33
|
+
function _toPrimitive(t, r) { if ("object" != _typeof(t) || !t) return t; var e = t[Symbol.toPrimitive]; if (void 0 !== e) { var i = e.call(t, r || "default"); if ("object" != _typeof(i)) return i; throw new TypeError("@@toPrimitive must return a primitive value."); } return ("string" === r ? String : Number)(t); }
|
|
34
34
|
function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
|
|
35
35
|
function _inherits(subClass, superClass) { if (typeof superClass !== "function" && superClass !== null) { throw new TypeError("Super expression must either be null or a function"); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, writable: true, configurable: true } }); Object.defineProperty(subClass, "prototype", { writable: false }); if (superClass) _setPrototypeOf(subClass, superClass); }
|
|
36
36
|
function _setPrototypeOf(o, p) { _setPrototypeOf = Object.setPrototypeOf ? Object.setPrototypeOf.bind() : function _setPrototypeOf(o, p) { o.__proto__ = p; return o; }; return _setPrototypeOf(o, p); }
|
|
@@ -199,6 +199,7 @@ var AuthenticationClient = /*#__PURE__*/function () {
|
|
|
199
199
|
*
|
|
200
200
|
* @param force force reauthentication with the server
|
|
201
201
|
* @param strategy The name of the strategy to use. Defaults to `options.jwtStrategy`
|
|
202
|
+
* @param authParams Additional authentication parameters
|
|
202
203
|
* @returns The reauthentication result
|
|
203
204
|
*/
|
|
204
205
|
}, {
|
|
@@ -207,6 +208,7 @@ var AuthenticationClient = /*#__PURE__*/function () {
|
|
|
207
208
|
var _this4 = this;
|
|
208
209
|
var force = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : false;
|
|
209
210
|
var strategy = arguments.length > 1 ? arguments[1] : undefined;
|
|
211
|
+
var authParams = arguments.length > 2 ? arguments[2] : undefined;
|
|
210
212
|
// Either returns the authentication state or
|
|
211
213
|
// tries to re-authenticate with the stored JWT and strategy
|
|
212
214
|
var authPromise = this.app.get('authentication');
|
|
@@ -218,7 +220,7 @@ var AuthenticationClient = /*#__PURE__*/function () {
|
|
|
218
220
|
return _this4.authenticate({
|
|
219
221
|
strategy: strategy || _this4.options.jwtStrategy,
|
|
220
222
|
accessToken: accessToken
|
|
221
|
-
});
|
|
223
|
+
}, authParams);
|
|
222
224
|
});
|
|
223
225
|
this.app.set('authentication', authPromise);
|
|
224
226
|
}
|
|
@@ -358,8 +360,8 @@ Object.defineProperty(exports, "populateHeader", ({
|
|
|
358
360
|
|
|
359
361
|
function _typeof(o) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (o) { return typeof o; } : function (o) { return o && "function" == typeof Symbol && o.constructor === Symbol && o !== Symbol.prototype ? "symbol" : typeof o; }, _typeof(o); }
|
|
360
362
|
function _defineProperty(obj, key, value) { key = _toPropertyKey(key); if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }
|
|
361
|
-
function _toPropertyKey(
|
|
362
|
-
function _toPrimitive(
|
|
363
|
+
function _toPropertyKey(t) { var i = _toPrimitive(t, "string"); return "symbol" == _typeof(i) ? i : String(i); }
|
|
364
|
+
function _toPrimitive(t, r) { if ("object" != _typeof(t) || !t) return t; var e = t[Symbol.toPrimitive]; if (void 0 !== e) { var i = e.call(t, r || "default"); if ("object" != _typeof(i)) return i; throw new TypeError("@@toPrimitive must return a primitive value."); } return ("string" === r ? String : Number)(t); }
|
|
363
365
|
Object.defineProperty(exports, "__esModule", ({
|
|
364
366
|
value: true
|
|
365
367
|
}));
|
|
@@ -496,8 +498,8 @@ function _typeof(o) { "@babel/helpers - typeof"; return _typeof = "function" ==
|
|
|
496
498
|
function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
|
|
497
499
|
function _defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, _toPropertyKey(descriptor.key), descriptor); } }
|
|
498
500
|
function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); Object.defineProperty(Constructor, "prototype", { writable: false }); return Constructor; }
|
|
499
|
-
function _toPropertyKey(
|
|
500
|
-
function _toPrimitive(
|
|
501
|
+
function _toPropertyKey(t) { var i = _toPrimitive(t, "string"); return "symbol" == _typeof(i) ? i : String(i); }
|
|
502
|
+
function _toPrimitive(t, r) { if ("object" != _typeof(t) || !t) return t; var e = t[Symbol.toPrimitive]; if (void 0 !== e) { var i = e.call(t, r || "default"); if ("object" != _typeof(i)) return i; throw new TypeError("@@toPrimitive must return a primitive value."); } return ("string" === r ? String : Number)(t); }
|
|
501
503
|
Object.defineProperty(exports, "__esModule", ({
|
|
502
504
|
value: true
|
|
503
505
|
}));
|
|
@@ -606,8 +608,8 @@ exports.createDebug = createDebug;
|
|
|
606
608
|
|
|
607
609
|
|
|
608
610
|
function _defineProperty(obj, key, value) { key = _toPropertyKey(key); if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }
|
|
609
|
-
function _toPropertyKey(
|
|
610
|
-
function _toPrimitive(
|
|
611
|
+
function _toPropertyKey(t) { var i = _toPrimitive(t, "string"); return "symbol" == _typeof(i) ? i : String(i); }
|
|
612
|
+
function _toPrimitive(t, r) { if ("object" != _typeof(t) || !t) return t; var e = t[Symbol.toPrimitive]; if (void 0 !== e) { var i = e.call(t, r || "default"); if ("object" != _typeof(i)) return i; throw new TypeError("@@toPrimitive must return a primitive value."); } return ("string" === r ? String : Number)(t); }
|
|
611
613
|
function _typeof(o) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (o) { return typeof o; } : function (o) { return o && "function" == typeof Symbol && o.constructor === Symbol && o !== Symbol.prototype ? "symbol" : typeof o; }, _typeof(o); }
|
|
612
614
|
function _slicedToArray(arr, i) { return _arrayWithHoles(arr) || _iterableToArrayLimit(arr, i) || _unsupportedIterableToArray(arr, i) || _nonIterableRest(); }
|
|
613
615
|
function _nonIterableRest() { throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method."); }
|
|
@@ -769,8 +771,8 @@ function _typeof(o) { "@babel/helpers - typeof"; return _typeof = "function" ==
|
|
|
769
771
|
function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
|
|
770
772
|
function _defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, _toPropertyKey(descriptor.key), descriptor); } }
|
|
771
773
|
function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); Object.defineProperty(Constructor, "prototype", { writable: false }); return Constructor; }
|
|
772
|
-
function _toPropertyKey(
|
|
773
|
-
function _toPrimitive(
|
|
774
|
+
function _toPropertyKey(t) { var i = _toPrimitive(t, "string"); return "symbol" == _typeof(i) ? i : String(i); }
|
|
775
|
+
function _toPrimitive(t, r) { if ("object" != _typeof(t) || !t) return t; var e = t[Symbol.toPrimitive]; if (void 0 !== e) { var i = e.call(t, r || "default"); if ("object" != _typeof(i)) return i; throw new TypeError("@@toPrimitive must return a primitive value."); } return ("string" === r ? String : Number)(t); }
|
|
774
776
|
function _inherits(subClass, superClass) { if (typeof superClass !== "function" && superClass !== null) { throw new TypeError("Super expression must either be null or a function"); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, writable: true, configurable: true } }); Object.defineProperty(subClass, "prototype", { writable: false }); if (superClass) _setPrototypeOf(subClass, superClass); }
|
|
775
777
|
function _createSuper(Derived) { var hasNativeReflectConstruct = _isNativeReflectConstruct(); return function _createSuperInternal() { var Super = _getPrototypeOf(Derived), result; if (hasNativeReflectConstruct) { var NewTarget = _getPrototypeOf(this).constructor; result = Reflect.construct(Super, arguments, NewTarget); } else { result = Super.apply(this, arguments); } return _possibleConstructorReturn(this, result); }; }
|
|
776
778
|
function _possibleConstructorReturn(self, call) { if (call && (_typeof(call) === "object" || typeof call === "function")) { return call; } else if (call !== void 0) { throw new TypeError("Derived constructors may only return object or undefined"); } return _assertThisInitialized(self); }
|
|
@@ -1090,8 +1092,8 @@ function _arrayLikeToArray(arr, len) { if (len == null || len > arr.length) len
|
|
|
1090
1092
|
function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
|
|
1091
1093
|
function _defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, _toPropertyKey(descriptor.key), descriptor); } }
|
|
1092
1094
|
function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); Object.defineProperty(Constructor, "prototype", { writable: false }); return Constructor; }
|
|
1093
|
-
function _toPropertyKey(
|
|
1094
|
-
function _toPrimitive(
|
|
1095
|
+
function _toPropertyKey(t) { var i = _toPrimitive(t, "string"); return "symbol" == _typeof(i) ? i : String(i); }
|
|
1096
|
+
function _toPrimitive(t, r) { if ("object" != _typeof(t) || !t) return t; var e = t[Symbol.toPrimitive]; if (void 0 !== e) { var i = e.call(t, r || "default"); if ("object" != _typeof(i)) return i; throw new TypeError("@@toPrimitive must return a primitive value."); } return ("string" === r ? String : Number)(t); }
|
|
1095
1097
|
function _inherits(subClass, superClass) { if (typeof superClass !== "function" && superClass !== null) { throw new TypeError("Super expression must either be null or a function"); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, writable: true, configurable: true } }); Object.defineProperty(subClass, "prototype", { writable: false }); if (superClass) _setPrototypeOf(subClass, superClass); }
|
|
1096
1098
|
function _setPrototypeOf(o, p) { _setPrototypeOf = Object.setPrototypeOf ? Object.setPrototypeOf.bind() : function _setPrototypeOf(o, p) { o.__proto__ = p; return o; }; return _setPrototypeOf(o, p); }
|
|
1097
1099
|
function _createSuper(Derived) { var hasNativeReflectConstruct = _isNativeReflectConstruct(); return function _createSuperInternal() { var Super = _getPrototypeOf(Derived), result; if (hasNativeReflectConstruct) { var NewTarget = _getPrototypeOf(this).constructor; result = Reflect.construct(Super, arguments, NewTarget); } else { result = Super.apply(this, arguments); } return _possibleConstructorReturn(this, result); }; }
|
|
@@ -1392,8 +1394,8 @@ exports.eventMixin = eventMixin;
|
|
|
1392
1394
|
function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
|
|
1393
1395
|
function _defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, _toPropertyKey(descriptor.key), descriptor); } }
|
|
1394
1396
|
function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); Object.defineProperty(Constructor, "prototype", { writable: false }); return Constructor; }
|
|
1395
|
-
function _toPropertyKey(
|
|
1396
|
-
function _toPrimitive(
|
|
1397
|
+
function _toPropertyKey(t) { var i = _toPrimitive(t, "string"); return "symbol" == _typeof(i) ? i : String(i); }
|
|
1398
|
+
function _toPrimitive(t, r) { if ("object" != _typeof(t) || !t) return t; var e = t[Symbol.toPrimitive]; if (void 0 !== e) { var i = e.call(t, r || "default"); if ("object" != _typeof(i)) return i; throw new TypeError("@@toPrimitive must return a primitive value."); } return ("string" === r ? String : Number)(t); }
|
|
1397
1399
|
function _get() { if (typeof Reflect !== "undefined" && Reflect.get) { _get = Reflect.get.bind(); } else { _get = function _get(target, property, receiver) { var base = _superPropBase(target, property); if (!base) return; var desc = Object.getOwnPropertyDescriptor(base, property); if (desc.get) { return desc.get.call(arguments.length < 3 ? target : receiver); } return desc.value; }; } return _get.apply(this, arguments); }
|
|
1398
1400
|
function _superPropBase(object, property) { while (!Object.prototype.hasOwnProperty.call(object, property)) { object = _getPrototypeOf(object); if (object === null) break; } return object; }
|
|
1399
1401
|
function _inherits(subClass, superClass) { if (typeof superClass !== "function" && superClass !== null) { throw new TypeError("Super expression must either be null or a function"); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, writable: true, configurable: true } }); Object.defineProperty(subClass, "prototype", { writable: false }); if (superClass) _setPrototypeOf(subClass, superClass); }
|
|
@@ -1686,8 +1688,8 @@ function _arrayLikeToArray(arr, len) { if (len == null || len > arr.length) len
|
|
|
1686
1688
|
function ownKeys(e, r) { var t = Object.keys(e); if (Object.getOwnPropertySymbols) { var o = Object.getOwnPropertySymbols(e); r && (o = o.filter(function (r) { return Object.getOwnPropertyDescriptor(e, r).enumerable; })), t.push.apply(t, o); } return t; }
|
|
1687
1689
|
function _objectSpread(e) { for (var r = 1; r < arguments.length; r++) { var t = null != arguments[r] ? arguments[r] : {}; r % 2 ? ownKeys(Object(t), !0).forEach(function (r) { _defineProperty(e, r, t[r]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(e, Object.getOwnPropertyDescriptors(t)) : ownKeys(Object(t)).forEach(function (r) { Object.defineProperty(e, r, Object.getOwnPropertyDescriptor(t, r)); }); } return e; }
|
|
1688
1690
|
function _defineProperty(obj, key, value) { key = _toPropertyKey(key); if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }
|
|
1689
|
-
function _toPropertyKey(
|
|
1690
|
-
function _toPrimitive(
|
|
1691
|
+
function _toPropertyKey(t) { var i = _toPrimitive(t, "string"); return "symbol" == _typeof(i) ? i : String(i); }
|
|
1692
|
+
function _toPrimitive(t, r) { if ("object" != _typeof(t) || !t) return t; var e = t[Symbol.toPrimitive]; if (void 0 !== e) { var i = e.call(t, r || "default"); if ("object" != _typeof(i)) return i; throw new TypeError("@@toPrimitive must return a primitive value."); } return ("string" === r ? String : Number)(t); }
|
|
1691
1693
|
Object.defineProperty(exports, "__esModule", ({
|
|
1692
1694
|
value: true
|
|
1693
1695
|
}));
|
|
@@ -1772,7 +1774,7 @@ exports.wrapService = wrapService;
|
|
|
1772
1774
|
Object.defineProperty(exports, "__esModule", ({
|
|
1773
1775
|
value: true
|
|
1774
1776
|
}));
|
|
1775
|
-
exports["default"] = '
|
|
1777
|
+
exports["default"] = 'development';
|
|
1776
1778
|
|
|
1777
1779
|
/***/ }),
|
|
1778
1780
|
|
|
@@ -1789,8 +1791,8 @@ function _typeof(o) { "@babel/helpers - typeof"; return _typeof = "function" ==
|
|
|
1789
1791
|
function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
|
|
1790
1792
|
function _defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, _toPropertyKey(descriptor.key), descriptor); } }
|
|
1791
1793
|
function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); Object.defineProperty(Constructor, "prototype", { writable: false }); return Constructor; }
|
|
1792
|
-
function _toPropertyKey(
|
|
1793
|
-
function _toPrimitive(
|
|
1794
|
+
function _toPropertyKey(t) { var i = _toPrimitive(t, "string"); return "symbol" == _typeof(i) ? i : String(i); }
|
|
1795
|
+
function _toPrimitive(t, r) { if ("object" != _typeof(t) || !t) return t; var e = t[Symbol.toPrimitive]; if (void 0 !== e) { var i = e.call(t, r || "default"); if ("object" != _typeof(i)) return i; throw new TypeError("@@toPrimitive must return a primitive value."); } return ("string" === r ? String : Number)(t); }
|
|
1794
1796
|
function _inherits(subClass, superClass) { if (typeof superClass !== "function" && superClass !== null) { throw new TypeError("Super expression must either be null or a function"); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, writable: true, configurable: true } }); Object.defineProperty(subClass, "prototype", { writable: false }); if (superClass) _setPrototypeOf(subClass, superClass); }
|
|
1795
1797
|
function _setPrototypeOf(o, p) { _setPrototypeOf = Object.setPrototypeOf ? Object.setPrototypeOf.bind() : function _setPrototypeOf(o, p) { o.__proto__ = p; return o; }; return _setPrototypeOf(o, p); }
|
|
1796
1798
|
function _createSuper(Derived) { var hasNativeReflectConstruct = _isNativeReflectConstruct(); return function _createSuperInternal() { var Super = _getPrototypeOf(Derived), result; if (hasNativeReflectConstruct) { var NewTarget = _getPrototypeOf(this).constructor; result = Reflect.construct(Super, arguments, NewTarget); } else { result = Super.apply(this, arguments); } return _possibleConstructorReturn(this, result); }; }
|
|
@@ -1848,8 +1850,8 @@ function _typeof(o) { "@babel/helpers - typeof"; return _typeof = "function" ==
|
|
|
1848
1850
|
function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
|
|
1849
1851
|
function _defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, _toPropertyKey(descriptor.key), descriptor); } }
|
|
1850
1852
|
function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); Object.defineProperty(Constructor, "prototype", { writable: false }); return Constructor; }
|
|
1851
|
-
function _toPropertyKey(
|
|
1852
|
-
function _toPrimitive(
|
|
1853
|
+
function _toPropertyKey(t) { var i = _toPrimitive(t, "string"); return "symbol" == _typeof(i) ? i : String(i); }
|
|
1854
|
+
function _toPrimitive(t, r) { if ("object" != _typeof(t) || !t) return t; var e = t[Symbol.toPrimitive]; if (void 0 !== e) { var i = e.call(t, r || "default"); if ("object" != _typeof(i)) return i; throw new TypeError("@@toPrimitive must return a primitive value."); } return ("string" === r ? String : Number)(t); }
|
|
1853
1855
|
var __importDefault = this && this.__importDefault || function (mod) {
|
|
1854
1856
|
return mod && mod.__esModule ? mod : {
|
|
1855
1857
|
"default": mod
|
|
@@ -2053,8 +2055,8 @@ function _typeof(o) { "@babel/helpers - typeof"; return _typeof = "function" ==
|
|
|
2053
2055
|
function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
|
|
2054
2056
|
function _defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, _toPropertyKey(descriptor.key), descriptor); } }
|
|
2055
2057
|
function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); Object.defineProperty(Constructor, "prototype", { writable: false }); return Constructor; }
|
|
2056
|
-
function _toPropertyKey(
|
|
2057
|
-
function _toPrimitive(
|
|
2058
|
+
function _toPropertyKey(t) { var i = _toPrimitive(t, "string"); return "symbol" == _typeof(i) ? i : String(i); }
|
|
2059
|
+
function _toPrimitive(t, r) { if ("object" != _typeof(t) || !t) return t; var e = t[Symbol.toPrimitive]; if (void 0 !== e) { var i = e.call(t, r || "default"); if ("object" != _typeof(i)) return i; throw new TypeError("@@toPrimitive must return a primitive value."); } return ("string" === r ? String : Number)(t); }
|
|
2058
2060
|
function _inherits(subClass, superClass) { if (typeof superClass !== "function" && superClass !== null) { throw new TypeError("Super expression must either be null or a function"); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, writable: true, configurable: true } }); Object.defineProperty(subClass, "prototype", { writable: false }); if (superClass) _setPrototypeOf(subClass, superClass); }
|
|
2059
2061
|
function _setPrototypeOf(o, p) { _setPrototypeOf = Object.setPrototypeOf ? Object.setPrototypeOf.bind() : function _setPrototypeOf(o, p) { o.__proto__ = p; return o; }; return _setPrototypeOf(o, p); }
|
|
2060
2062
|
function _createSuper(Derived) { var hasNativeReflectConstruct = _isNativeReflectConstruct(); return function _createSuperInternal() { var Super = _getPrototypeOf(Derived), result; if (hasNativeReflectConstruct) { var NewTarget = _getPrototypeOf(this).constructor; result = Reflect.construct(Super, arguments, NewTarget); } else { result = Super.apply(this, arguments); } return _possibleConstructorReturn(this, result); }; }
|
|
@@ -2226,8 +2228,8 @@ function _typeof(o) { "@babel/helpers - typeof"; return _typeof = "function" ==
|
|
|
2226
2228
|
function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
|
|
2227
2229
|
function _defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, _toPropertyKey(descriptor.key), descriptor); } }
|
|
2228
2230
|
function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); Object.defineProperty(Constructor, "prototype", { writable: false }); return Constructor; }
|
|
2229
|
-
function _toPropertyKey(
|
|
2230
|
-
function _toPrimitive(
|
|
2231
|
+
function _toPropertyKey(t) { var i = _toPrimitive(t, "string"); return "symbol" == _typeof(i) ? i : String(i); }
|
|
2232
|
+
function _toPrimitive(t, r) { if ("object" != _typeof(t) || !t) return t; var e = t[Symbol.toPrimitive]; if (void 0 !== e) { var i = e.call(t, r || "default"); if ("object" != _typeof(i)) return i; throw new TypeError("@@toPrimitive must return a primitive value."); } return ("string" === r ? String : Number)(t); }
|
|
2231
2233
|
function _inherits(subClass, superClass) { if (typeof superClass !== "function" && superClass !== null) { throw new TypeError("Super expression must either be null or a function"); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, writable: true, configurable: true } }); Object.defineProperty(subClass, "prototype", { writable: false }); if (superClass) _setPrototypeOf(subClass, superClass); }
|
|
2232
2234
|
function _setPrototypeOf(o, p) { _setPrototypeOf = Object.setPrototypeOf ? Object.setPrototypeOf.bind() : function _setPrototypeOf(o, p) { o.__proto__ = p; return o; }; return _setPrototypeOf(o, p); }
|
|
2233
2235
|
function _createSuper(Derived) { var hasNativeReflectConstruct = _isNativeReflectConstruct(); return function _createSuperInternal() { var Super = _getPrototypeOf(Derived), result; if (hasNativeReflectConstruct) { var NewTarget = _getPrototypeOf(this).constructor; result = Reflect.construct(Super, arguments, NewTarget); } else { result = Super.apply(this, arguments); } return _possibleConstructorReturn(this, result); }; }
|
|
@@ -2359,8 +2361,8 @@ function _typeof(o) { "@babel/helpers - typeof"; return _typeof = "function" ==
|
|
|
2359
2361
|
function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
|
|
2360
2362
|
function _defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, _toPropertyKey(descriptor.key), descriptor); } }
|
|
2361
2363
|
function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); Object.defineProperty(Constructor, "prototype", { writable: false }); return Constructor; }
|
|
2362
|
-
function _toPropertyKey(
|
|
2363
|
-
function _toPrimitive(
|
|
2364
|
+
function _toPropertyKey(t) { var i = _toPrimitive(t, "string"); return "symbol" == _typeof(i) ? i : String(i); }
|
|
2365
|
+
function _toPrimitive(t, r) { if ("object" != _typeof(t) || !t) return t; var e = t[Symbol.toPrimitive]; if (void 0 !== e) { var i = e.call(t, r || "default"); if ("object" != _typeof(i)) return i; throw new TypeError("@@toPrimitive must return a primitive value."); } return ("string" === r ? String : Number)(t); }
|
|
2364
2366
|
Object.defineProperty(exports, "__esModule", ({
|
|
2365
2367
|
value: true
|
|
2366
2368
|
}));
|
|
@@ -2590,12 +2592,13 @@ module.exports = function callBoundIntrinsic(name, allowMissing) {
|
|
|
2590
2592
|
|
|
2591
2593
|
var bind = __webpack_require__(/*! function-bind */ "../../node_modules/function-bind/index.js");
|
|
2592
2594
|
var GetIntrinsic = __webpack_require__(/*! get-intrinsic */ "../../node_modules/get-intrinsic/index.js");
|
|
2595
|
+
var setFunctionLength = __webpack_require__(/*! set-function-length */ "../../node_modules/set-function-length/index.js");
|
|
2593
2596
|
|
|
2597
|
+
var $TypeError = GetIntrinsic('%TypeError%');
|
|
2594
2598
|
var $apply = GetIntrinsic('%Function.prototype.apply%');
|
|
2595
2599
|
var $call = GetIntrinsic('%Function.prototype.call%');
|
|
2596
2600
|
var $reflectApply = GetIntrinsic('%Reflect.apply%', true) || bind.call($call, $apply);
|
|
2597
2601
|
|
|
2598
|
-
var $gOPD = GetIntrinsic('%Object.getOwnPropertyDescriptor%', true);
|
|
2599
2602
|
var $defineProperty = GetIntrinsic('%Object.defineProperty%', true);
|
|
2600
2603
|
var $max = GetIntrinsic('%Math.max%');
|
|
2601
2604
|
|
|
@@ -2609,19 +2612,15 @@ if ($defineProperty) {
|
|
|
2609
2612
|
}
|
|
2610
2613
|
|
|
2611
2614
|
module.exports = function callBind(originalFunction) {
|
|
2612
|
-
|
|
2613
|
-
|
|
2614
|
-
var desc = $gOPD(func, 'length');
|
|
2615
|
-
if (desc.configurable) {
|
|
2616
|
-
// original length, plus the receiver, minus any additional arguments (after the receiver)
|
|
2617
|
-
$defineProperty(
|
|
2618
|
-
func,
|
|
2619
|
-
'length',
|
|
2620
|
-
{ value: 1 + $max(0, originalFunction.length - (arguments.length - 1)) }
|
|
2621
|
-
);
|
|
2622
|
-
}
|
|
2615
|
+
if (typeof originalFunction !== 'function') {
|
|
2616
|
+
throw new $TypeError('a function is required');
|
|
2623
2617
|
}
|
|
2624
|
-
|
|
2618
|
+
var func = $reflectApply(bind, $call, arguments);
|
|
2619
|
+
return setFunctionLength(
|
|
2620
|
+
func,
|
|
2621
|
+
1 + $max(0, originalFunction.length - (arguments.length - 1)),
|
|
2622
|
+
true
|
|
2623
|
+
);
|
|
2625
2624
|
};
|
|
2626
2625
|
|
|
2627
2626
|
var applyBind = function applyBind() {
|
|
@@ -2635,6 +2634,85 @@ if ($defineProperty) {
|
|
|
2635
2634
|
}
|
|
2636
2635
|
|
|
2637
2636
|
|
|
2637
|
+
/***/ }),
|
|
2638
|
+
|
|
2639
|
+
/***/ "../../node_modules/define-data-property/index.js":
|
|
2640
|
+
/*!********************************************************!*\
|
|
2641
|
+
!*** ../../node_modules/define-data-property/index.js ***!
|
|
2642
|
+
\********************************************************/
|
|
2643
|
+
/***/ (function(module, __unused_webpack_exports, __webpack_require__) {
|
|
2644
|
+
|
|
2645
|
+
"use strict";
|
|
2646
|
+
|
|
2647
|
+
|
|
2648
|
+
var hasPropertyDescriptors = __webpack_require__(/*! has-property-descriptors */ "../../node_modules/has-property-descriptors/index.js")();
|
|
2649
|
+
|
|
2650
|
+
var GetIntrinsic = __webpack_require__(/*! get-intrinsic */ "../../node_modules/get-intrinsic/index.js");
|
|
2651
|
+
|
|
2652
|
+
var $defineProperty = hasPropertyDescriptors && GetIntrinsic('%Object.defineProperty%', true);
|
|
2653
|
+
if ($defineProperty) {
|
|
2654
|
+
try {
|
|
2655
|
+
$defineProperty({}, 'a', { value: 1 });
|
|
2656
|
+
} catch (e) {
|
|
2657
|
+
// IE 8 has a broken defineProperty
|
|
2658
|
+
$defineProperty = false;
|
|
2659
|
+
}
|
|
2660
|
+
}
|
|
2661
|
+
|
|
2662
|
+
var $SyntaxError = GetIntrinsic('%SyntaxError%');
|
|
2663
|
+
var $TypeError = GetIntrinsic('%TypeError%');
|
|
2664
|
+
|
|
2665
|
+
var gopd = __webpack_require__(/*! gopd */ "../../node_modules/gopd/index.js");
|
|
2666
|
+
|
|
2667
|
+
/** @type {(obj: Record<PropertyKey, unknown>, property: PropertyKey, value: unknown, nonEnumerable?: boolean | null, nonWritable?: boolean | null, nonConfigurable?: boolean | null, loose?: boolean) => void} */
|
|
2668
|
+
module.exports = function defineDataProperty(
|
|
2669
|
+
obj,
|
|
2670
|
+
property,
|
|
2671
|
+
value
|
|
2672
|
+
) {
|
|
2673
|
+
if (!obj || (typeof obj !== 'object' && typeof obj !== 'function')) {
|
|
2674
|
+
throw new $TypeError('`obj` must be an object or a function`');
|
|
2675
|
+
}
|
|
2676
|
+
if (typeof property !== 'string' && typeof property !== 'symbol') {
|
|
2677
|
+
throw new $TypeError('`property` must be a string or a symbol`');
|
|
2678
|
+
}
|
|
2679
|
+
if (arguments.length > 3 && typeof arguments[3] !== 'boolean' && arguments[3] !== null) {
|
|
2680
|
+
throw new $TypeError('`nonEnumerable`, if provided, must be a boolean or null');
|
|
2681
|
+
}
|
|
2682
|
+
if (arguments.length > 4 && typeof arguments[4] !== 'boolean' && arguments[4] !== null) {
|
|
2683
|
+
throw new $TypeError('`nonWritable`, if provided, must be a boolean or null');
|
|
2684
|
+
}
|
|
2685
|
+
if (arguments.length > 5 && typeof arguments[5] !== 'boolean' && arguments[5] !== null) {
|
|
2686
|
+
throw new $TypeError('`nonConfigurable`, if provided, must be a boolean or null');
|
|
2687
|
+
}
|
|
2688
|
+
if (arguments.length > 6 && typeof arguments[6] !== 'boolean') {
|
|
2689
|
+
throw new $TypeError('`loose`, if provided, must be a boolean');
|
|
2690
|
+
}
|
|
2691
|
+
|
|
2692
|
+
var nonEnumerable = arguments.length > 3 ? arguments[3] : null;
|
|
2693
|
+
var nonWritable = arguments.length > 4 ? arguments[4] : null;
|
|
2694
|
+
var nonConfigurable = arguments.length > 5 ? arguments[5] : null;
|
|
2695
|
+
var loose = arguments.length > 6 ? arguments[6] : false;
|
|
2696
|
+
|
|
2697
|
+
/* @type {false | TypedPropertyDescriptor<unknown>} */
|
|
2698
|
+
var desc = !!gopd && gopd(obj, property);
|
|
2699
|
+
|
|
2700
|
+
if ($defineProperty) {
|
|
2701
|
+
$defineProperty(obj, property, {
|
|
2702
|
+
configurable: nonConfigurable === null && desc ? desc.configurable : !nonConfigurable,
|
|
2703
|
+
enumerable: nonEnumerable === null && desc ? desc.enumerable : !nonEnumerable,
|
|
2704
|
+
value: value,
|
|
2705
|
+
writable: nonWritable === null && desc ? desc.writable : !nonWritable
|
|
2706
|
+
});
|
|
2707
|
+
} else if (loose || (!nonEnumerable && !nonWritable && !nonConfigurable)) {
|
|
2708
|
+
// must fall back to [[Set]], and was not explicitly asked to make non-enumerable, non-writable, or non-configurable
|
|
2709
|
+
obj[property] = value; // eslint-disable-line no-param-reassign
|
|
2710
|
+
} else {
|
|
2711
|
+
throw new $SyntaxError('This environment does not support defining a property as non-configurable, non-writable, or non-enumerable.');
|
|
2712
|
+
}
|
|
2713
|
+
};
|
|
2714
|
+
|
|
2715
|
+
|
|
2638
2716
|
/***/ }),
|
|
2639
2717
|
|
|
2640
2718
|
/***/ "../../node_modules/events/events.js":
|
|
@@ -3157,43 +3235,75 @@ function eventTargetAgnosticAddListener(emitter, name, listener, flags) {
|
|
|
3157
3235
|
/* eslint no-invalid-this: 1 */
|
|
3158
3236
|
|
|
3159
3237
|
var ERROR_MESSAGE = 'Function.prototype.bind called on incompatible ';
|
|
3160
|
-
var slice = Array.prototype.slice;
|
|
3161
3238
|
var toStr = Object.prototype.toString;
|
|
3239
|
+
var max = Math.max;
|
|
3162
3240
|
var funcType = '[object Function]';
|
|
3163
3241
|
|
|
3242
|
+
var concatty = function concatty(a, b) {
|
|
3243
|
+
var arr = [];
|
|
3244
|
+
|
|
3245
|
+
for (var i = 0; i < a.length; i += 1) {
|
|
3246
|
+
arr[i] = a[i];
|
|
3247
|
+
}
|
|
3248
|
+
for (var j = 0; j < b.length; j += 1) {
|
|
3249
|
+
arr[j + a.length] = b[j];
|
|
3250
|
+
}
|
|
3251
|
+
|
|
3252
|
+
return arr;
|
|
3253
|
+
};
|
|
3254
|
+
|
|
3255
|
+
var slicy = function slicy(arrLike, offset) {
|
|
3256
|
+
var arr = [];
|
|
3257
|
+
for (var i = offset || 0, j = 0; i < arrLike.length; i += 1, j += 1) {
|
|
3258
|
+
arr[j] = arrLike[i];
|
|
3259
|
+
}
|
|
3260
|
+
return arr;
|
|
3261
|
+
};
|
|
3262
|
+
|
|
3263
|
+
var joiny = function (arr, joiner) {
|
|
3264
|
+
var str = '';
|
|
3265
|
+
for (var i = 0; i < arr.length; i += 1) {
|
|
3266
|
+
str += arr[i];
|
|
3267
|
+
if (i + 1 < arr.length) {
|
|
3268
|
+
str += joiner;
|
|
3269
|
+
}
|
|
3270
|
+
}
|
|
3271
|
+
return str;
|
|
3272
|
+
};
|
|
3273
|
+
|
|
3164
3274
|
module.exports = function bind(that) {
|
|
3165
3275
|
var target = this;
|
|
3166
|
-
if (typeof target !== 'function' || toStr.
|
|
3276
|
+
if (typeof target !== 'function' || toStr.apply(target) !== funcType) {
|
|
3167
3277
|
throw new TypeError(ERROR_MESSAGE + target);
|
|
3168
3278
|
}
|
|
3169
|
-
var args =
|
|
3279
|
+
var args = slicy(arguments, 1);
|
|
3170
3280
|
|
|
3171
3281
|
var bound;
|
|
3172
3282
|
var binder = function () {
|
|
3173
3283
|
if (this instanceof bound) {
|
|
3174
3284
|
var result = target.apply(
|
|
3175
3285
|
this,
|
|
3176
|
-
args
|
|
3286
|
+
concatty(args, arguments)
|
|
3177
3287
|
);
|
|
3178
3288
|
if (Object(result) === result) {
|
|
3179
3289
|
return result;
|
|
3180
3290
|
}
|
|
3181
3291
|
return this;
|
|
3182
|
-
} else {
|
|
3183
|
-
return target.apply(
|
|
3184
|
-
that,
|
|
3185
|
-
args.concat(slice.call(arguments))
|
|
3186
|
-
);
|
|
3187
3292
|
}
|
|
3293
|
+
return target.apply(
|
|
3294
|
+
that,
|
|
3295
|
+
concatty(args, arguments)
|
|
3296
|
+
);
|
|
3297
|
+
|
|
3188
3298
|
};
|
|
3189
3299
|
|
|
3190
|
-
var boundLength =
|
|
3300
|
+
var boundLength = max(0, target.length - args.length);
|
|
3191
3301
|
var boundArgs = [];
|
|
3192
3302
|
for (var i = 0; i < boundLength; i++) {
|
|
3193
|
-
boundArgs
|
|
3303
|
+
boundArgs[i] = '$' + i;
|
|
3194
3304
|
}
|
|
3195
3305
|
|
|
3196
|
-
bound = Function('binder', 'return function (' + boundArgs
|
|
3306
|
+
bound = Function('binder', 'return function (' + joiny(boundArgs, ',') + '){ return binder.apply(this,arguments); }')(binder);
|
|
3197
3307
|
|
|
3198
3308
|
if (target.prototype) {
|
|
3199
3309
|
var Empty = function Empty() {};
|
|
@@ -3447,7 +3557,7 @@ var LEGACY_ALIASES = {
|
|
|
3447
3557
|
};
|
|
3448
3558
|
|
|
3449
3559
|
var bind = __webpack_require__(/*! function-bind */ "../../node_modules/function-bind/index.js");
|
|
3450
|
-
var hasOwn = __webpack_require__(/*!
|
|
3560
|
+
var hasOwn = __webpack_require__(/*! hasown */ "../../node_modules/hasown/index.js");
|
|
3451
3561
|
var $concat = bind.call(Function.call, Array.prototype.concat);
|
|
3452
3562
|
var $spliceApply = bind.call(Function.apply, Array.prototype.splice);
|
|
3453
3563
|
var $replace = bind.call(Function.call, String.prototype.replace);
|
|
@@ -3584,6 +3694,77 @@ module.exports = function GetIntrinsic(name, allowMissing) {
|
|
|
3584
3694
|
};
|
|
3585
3695
|
|
|
3586
3696
|
|
|
3697
|
+
/***/ }),
|
|
3698
|
+
|
|
3699
|
+
/***/ "../../node_modules/gopd/index.js":
|
|
3700
|
+
/*!****************************************!*\
|
|
3701
|
+
!*** ../../node_modules/gopd/index.js ***!
|
|
3702
|
+
\****************************************/
|
|
3703
|
+
/***/ (function(module, __unused_webpack_exports, __webpack_require__) {
|
|
3704
|
+
|
|
3705
|
+
"use strict";
|
|
3706
|
+
|
|
3707
|
+
|
|
3708
|
+
var GetIntrinsic = __webpack_require__(/*! get-intrinsic */ "../../node_modules/get-intrinsic/index.js");
|
|
3709
|
+
|
|
3710
|
+
var $gOPD = GetIntrinsic('%Object.getOwnPropertyDescriptor%', true);
|
|
3711
|
+
|
|
3712
|
+
if ($gOPD) {
|
|
3713
|
+
try {
|
|
3714
|
+
$gOPD([], 'length');
|
|
3715
|
+
} catch (e) {
|
|
3716
|
+
// IE 8 has a broken gOPD
|
|
3717
|
+
$gOPD = null;
|
|
3718
|
+
}
|
|
3719
|
+
}
|
|
3720
|
+
|
|
3721
|
+
module.exports = $gOPD;
|
|
3722
|
+
|
|
3723
|
+
|
|
3724
|
+
/***/ }),
|
|
3725
|
+
|
|
3726
|
+
/***/ "../../node_modules/has-property-descriptors/index.js":
|
|
3727
|
+
/*!************************************************************!*\
|
|
3728
|
+
!*** ../../node_modules/has-property-descriptors/index.js ***!
|
|
3729
|
+
\************************************************************/
|
|
3730
|
+
/***/ (function(module, __unused_webpack_exports, __webpack_require__) {
|
|
3731
|
+
|
|
3732
|
+
"use strict";
|
|
3733
|
+
|
|
3734
|
+
|
|
3735
|
+
var GetIntrinsic = __webpack_require__(/*! get-intrinsic */ "../../node_modules/get-intrinsic/index.js");
|
|
3736
|
+
|
|
3737
|
+
var $defineProperty = GetIntrinsic('%Object.defineProperty%', true);
|
|
3738
|
+
|
|
3739
|
+
var hasPropertyDescriptors = function hasPropertyDescriptors() {
|
|
3740
|
+
if ($defineProperty) {
|
|
3741
|
+
try {
|
|
3742
|
+
$defineProperty({}, 'a', { value: 1 });
|
|
3743
|
+
return true;
|
|
3744
|
+
} catch (e) {
|
|
3745
|
+
// IE 8 has a broken defineProperty
|
|
3746
|
+
return false;
|
|
3747
|
+
}
|
|
3748
|
+
}
|
|
3749
|
+
return false;
|
|
3750
|
+
};
|
|
3751
|
+
|
|
3752
|
+
hasPropertyDescriptors.hasArrayLengthDefineBug = function hasArrayLengthDefineBug() {
|
|
3753
|
+
// node v0.6 has a bug where array lengths can be Set but not Defined
|
|
3754
|
+
if (!hasPropertyDescriptors()) {
|
|
3755
|
+
return null;
|
|
3756
|
+
}
|
|
3757
|
+
try {
|
|
3758
|
+
return $defineProperty([], 'length', { value: 1 }).length !== 1;
|
|
3759
|
+
} catch (e) {
|
|
3760
|
+
// In Firefox 4-22, defining length on an array throws an exception.
|
|
3761
|
+
return true;
|
|
3762
|
+
}
|
|
3763
|
+
};
|
|
3764
|
+
|
|
3765
|
+
module.exports = hasPropertyDescriptors;
|
|
3766
|
+
|
|
3767
|
+
|
|
3587
3768
|
/***/ }),
|
|
3588
3769
|
|
|
3589
3770
|
/***/ "../../node_modules/has-proto/index.js":
|
|
@@ -3685,18 +3866,21 @@ module.exports = function hasSymbols() {
|
|
|
3685
3866
|
|
|
3686
3867
|
/***/ }),
|
|
3687
3868
|
|
|
3688
|
-
/***/ "../../node_modules/
|
|
3689
|
-
|
|
3690
|
-
!*** ../../node_modules/
|
|
3691
|
-
|
|
3869
|
+
/***/ "../../node_modules/hasown/index.js":
|
|
3870
|
+
/*!******************************************!*\
|
|
3871
|
+
!*** ../../node_modules/hasown/index.js ***!
|
|
3872
|
+
\******************************************/
|
|
3692
3873
|
/***/ (function(module, __unused_webpack_exports, __webpack_require__) {
|
|
3693
3874
|
|
|
3694
3875
|
"use strict";
|
|
3695
3876
|
|
|
3696
3877
|
|
|
3878
|
+
var call = Function.prototype.call;
|
|
3879
|
+
var $hasOwn = Object.prototype.hasOwnProperty;
|
|
3697
3880
|
var bind = __webpack_require__(/*! function-bind */ "../../node_modules/function-bind/index.js");
|
|
3698
3881
|
|
|
3699
|
-
|
|
3882
|
+
/** @type {(o: {}, p: PropertyKey) => p is keyof o} */
|
|
3883
|
+
module.exports = bind.call(call, $hasOwn);
|
|
3700
3884
|
|
|
3701
3885
|
|
|
3702
3886
|
/***/ }),
|
|
@@ -3948,6 +4132,14 @@ module.exports = function inspect_(obj, options, depth, seen) {
|
|
|
3948
4132
|
if (isString(obj)) {
|
|
3949
4133
|
return markBoxed(inspect(String(obj)));
|
|
3950
4134
|
}
|
|
4135
|
+
// note: in IE 8, sometimes `global !== window` but both are the prototypes of each other
|
|
4136
|
+
/* eslint-env browser */
|
|
4137
|
+
if (typeof window !== 'undefined' && obj === window) {
|
|
4138
|
+
return '{ [object Window] }';
|
|
4139
|
+
}
|
|
4140
|
+
if (obj === __webpack_require__.g) {
|
|
4141
|
+
return '{ [object globalThis] }';
|
|
4142
|
+
}
|
|
3951
4143
|
if (!isDate(obj) && !isRegExp(obj)) {
|
|
3952
4144
|
var ys = arrObjKeys(obj, inspect);
|
|
3953
4145
|
var isPlainObject = gPO ? gPO(obj) === Object.prototype : obj instanceof Object || obj.constructor === Object;
|
|
@@ -5150,6 +5342,58 @@ module.exports = {
|
|
|
5150
5342
|
};
|
|
5151
5343
|
|
|
5152
5344
|
|
|
5345
|
+
/***/ }),
|
|
5346
|
+
|
|
5347
|
+
/***/ "../../node_modules/set-function-length/index.js":
|
|
5348
|
+
/*!*******************************************************!*\
|
|
5349
|
+
!*** ../../node_modules/set-function-length/index.js ***!
|
|
5350
|
+
\*******************************************************/
|
|
5351
|
+
/***/ (function(module, __unused_webpack_exports, __webpack_require__) {
|
|
5352
|
+
|
|
5353
|
+
"use strict";
|
|
5354
|
+
|
|
5355
|
+
|
|
5356
|
+
var GetIntrinsic = __webpack_require__(/*! get-intrinsic */ "../../node_modules/get-intrinsic/index.js");
|
|
5357
|
+
var define = __webpack_require__(/*! define-data-property */ "../../node_modules/define-data-property/index.js");
|
|
5358
|
+
var hasDescriptors = __webpack_require__(/*! has-property-descriptors */ "../../node_modules/has-property-descriptors/index.js")();
|
|
5359
|
+
var gOPD = __webpack_require__(/*! gopd */ "../../node_modules/gopd/index.js");
|
|
5360
|
+
|
|
5361
|
+
var $TypeError = GetIntrinsic('%TypeError%');
|
|
5362
|
+
var $floor = GetIntrinsic('%Math.floor%');
|
|
5363
|
+
|
|
5364
|
+
module.exports = function setFunctionLength(fn, length) {
|
|
5365
|
+
if (typeof fn !== 'function') {
|
|
5366
|
+
throw new $TypeError('`fn` is not a function');
|
|
5367
|
+
}
|
|
5368
|
+
if (typeof length !== 'number' || length < 0 || length > 0xFFFFFFFF || $floor(length) !== length) {
|
|
5369
|
+
throw new $TypeError('`length` must be a positive 32-bit integer');
|
|
5370
|
+
}
|
|
5371
|
+
|
|
5372
|
+
var loose = arguments.length > 2 && !!arguments[2];
|
|
5373
|
+
|
|
5374
|
+
var functionLengthIsConfigurable = true;
|
|
5375
|
+
var functionLengthIsWritable = true;
|
|
5376
|
+
if ('length' in fn && gOPD) {
|
|
5377
|
+
var desc = gOPD(fn, 'length');
|
|
5378
|
+
if (desc && !desc.configurable) {
|
|
5379
|
+
functionLengthIsConfigurable = false;
|
|
5380
|
+
}
|
|
5381
|
+
if (desc && !desc.writable) {
|
|
5382
|
+
functionLengthIsWritable = false;
|
|
5383
|
+
}
|
|
5384
|
+
}
|
|
5385
|
+
|
|
5386
|
+
if (functionLengthIsConfigurable || functionLengthIsWritable || !loose) {
|
|
5387
|
+
if (hasDescriptors) {
|
|
5388
|
+
define(fn, 'length', length, true, true);
|
|
5389
|
+
} else {
|
|
5390
|
+
define(fn, 'length', length);
|
|
5391
|
+
}
|
|
5392
|
+
}
|
|
5393
|
+
return fn;
|
|
5394
|
+
};
|
|
5395
|
+
|
|
5396
|
+
|
|
5153
5397
|
/***/ }),
|
|
5154
5398
|
|
|
5155
5399
|
/***/ "../../node_modules/side-channel/index.js":
|
|
@@ -5379,8 +5623,8 @@ function _arrayLikeToArray(arr, len) { if (len == null || len > arr.length) len
|
|
|
5379
5623
|
function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
|
|
5380
5624
|
function _defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, _toPropertyKey(descriptor.key), descriptor); } }
|
|
5381
5625
|
function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); Object.defineProperty(Constructor, "prototype", { writable: false }); return Constructor; }
|
|
5382
|
-
function _toPropertyKey(
|
|
5383
|
-
function _toPrimitive(
|
|
5626
|
+
function _toPropertyKey(t) { var i = _toPrimitive(t, "string"); return "symbol" == _typeof(i) ? i : String(i); }
|
|
5627
|
+
function _toPrimitive(t, r) { if ("object" != _typeof(t) || !t) return t; var e = t[Symbol.toPrimitive]; if (void 0 !== e) { var i = e.call(t, r || "default"); if ("object" != _typeof(i)) return i; throw new TypeError("@@toPrimitive must return a primitive value."); } return ("string" === r ? String : Number)(t); }
|
|
5384
5628
|
Object.defineProperty(exports, "__esModule", ({
|
|
5385
5629
|
value: true
|
|
5386
5630
|
}));
|
|
@@ -5910,8 +6154,8 @@ function _arrayLikeToArray(arr, len) { if (len == null || len > arr.length) len
|
|
|
5910
6154
|
function ownKeys(e, r) { var t = Object.keys(e); if (Object.getOwnPropertySymbols) { var o = Object.getOwnPropertySymbols(e); r && (o = o.filter(function (r) { return Object.getOwnPropertyDescriptor(e, r).enumerable; })), t.push.apply(t, o); } return t; }
|
|
5911
6155
|
function _objectSpread(e) { for (var r = 1; r < arguments.length; r++) { var t = null != arguments[r] ? arguments[r] : {}; r % 2 ? ownKeys(Object(t), !0).forEach(function (r) { _defineProperty(e, r, t[r]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(e, Object.getOwnPropertyDescriptors(t)) : ownKeys(Object(t)).forEach(function (r) { Object.defineProperty(e, r, Object.getOwnPropertyDescriptor(t, r)); }); } return e; }
|
|
5912
6156
|
function _defineProperty(obj, key, value) { key = _toPropertyKey(key); if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }
|
|
5913
|
-
function _toPropertyKey(
|
|
5914
|
-
function _toPrimitive(
|
|
6157
|
+
function _toPropertyKey(t) { var i = _toPrimitive(t, "string"); return "symbol" == _typeof(i) ? i : String(i); }
|
|
6158
|
+
function _toPrimitive(t, r) { if ("object" != _typeof(t) || !t) return t; var e = t[Symbol.toPrimitive]; if (void 0 !== e) { var i = e.call(t, r || "default"); if ("object" != _typeof(i)) return i; throw new TypeError("@@toPrimitive must return a primitive value."); } return ("string" === r ? String : Number)(t); }
|
|
5915
6159
|
Object.defineProperty(exports, "__esModule", ({
|
|
5916
6160
|
value: true
|
|
5917
6161
|
}));
|
|
@@ -6076,6 +6320,19 @@ exports.copyFnProperties = copyFnProperties;
|
|
|
6076
6320
|
/******/ }
|
|
6077
6321
|
/******/
|
|
6078
6322
|
/************************************************************************/
|
|
6323
|
+
/******/ /* webpack/runtime/global */
|
|
6324
|
+
/******/ !function() {
|
|
6325
|
+
/******/ __webpack_require__.g = (function() {
|
|
6326
|
+
/******/ if (typeof globalThis === 'object') return globalThis;
|
|
6327
|
+
/******/ try {
|
|
6328
|
+
/******/ return this || new Function('return this')();
|
|
6329
|
+
/******/ } catch (e) {
|
|
6330
|
+
/******/ if (typeof window === 'object') return window;
|
|
6331
|
+
/******/ }
|
|
6332
|
+
/******/ })();
|
|
6333
|
+
/******/ }();
|
|
6334
|
+
/******/
|
|
6335
|
+
/************************************************************************/
|
|
6079
6336
|
/******/
|
|
6080
6337
|
/******/ // startup
|
|
6081
6338
|
/******/ // Load entry module and return exports
|