@feathersjs/client 4.5.11 → 4.5.12

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/dist/feathers.js CHANGED
@@ -12,7 +12,7 @@ return /******/ (function() { // webpackBootstrap
12
12
  /******/ var __webpack_modules__ = ({
13
13
 
14
14
  /***/ "../../node_modules/debug/src/browser.js":
15
- /*!***********************************************!*
15
+ /*!***********************************************!*\
16
16
  !*** ../../node_modules/debug/src/browser.js ***!
17
17
  \***********************************************/
18
18
  /***/ (function(module, exports, __webpack_require__) {
@@ -202,7 +202,7 @@ formatters.j = function (v) {
202
202
  /***/ }),
203
203
 
204
204
  /***/ "../../node_modules/debug/src/common.js":
205
- /*!**********************************************!*
205
+ /*!**********************************************!*\
206
206
  !*** ../../node_modules/debug/src/common.js ***!
207
207
  \**********************************************/
208
208
  /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
@@ -213,7 +213,7 @@ function _nonIterableSpread() { throw new TypeError("Invalid attempt to spread n
213
213
 
214
214
  function _unsupportedIterableToArray(o, minLen) { if (!o) return; if (typeof o === "string") return _arrayLikeToArray(o, minLen); var n = Object.prototype.toString.call(o).slice(8, -1); if (n === "Object" && o.constructor) n = o.constructor.name; if (n === "Map" || n === "Set") return Array.from(o); if (n === "Arguments" || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)) return _arrayLikeToArray(o, minLen); }
215
215
 
216
- function _iterableToArray(iter) { if (typeof Symbol !== "undefined" && Symbol.iterator in Object(iter)) return Array.from(iter); }
216
+ function _iterableToArray(iter) { if (typeof Symbol !== "undefined" && iter[Symbol.iterator] != null || iter["@@iterator"] != null) return Array.from(iter); }
217
217
 
218
218
  function _arrayWithoutHoles(arr) { if (Array.isArray(arr)) return _arrayLikeToArray(arr); }
219
219
 
@@ -250,7 +250,7 @@ function setup(env) {
250
250
  createDebug.formatters = {};
251
251
  /**
252
252
  * Selects a color for a debug namespace
253
- * @param {String} namespace The namespace string for the for the debug instance to be colored
253
+ * @param {String} namespace The namespace string for the debug instance to be colored
254
254
  * @return {Number|String} An ANSI color code for the given namespace
255
255
  * @api private
256
256
  */
@@ -278,6 +278,8 @@ function setup(env) {
278
278
  function createDebug(namespace) {
279
279
  var prevTime;
280
280
  var enableOverride = null;
281
+ var namespacesCache;
282
+ var enabledCache;
281
283
 
282
284
  function debug() {
283
285
  for (var _len = arguments.length, args = new Array(_len), _key = 0; _key < _len; _key++) {
@@ -341,7 +343,16 @@ function setup(env) {
341
343
  enumerable: true,
342
344
  configurable: false,
343
345
  get: function get() {
344
- return enableOverride === null ? createDebug.enabled(namespace) : enableOverride;
346
+ if (enableOverride !== null) {
347
+ return enableOverride;
348
+ }
349
+
350
+ if (namespacesCache !== createDebug.namespaces) {
351
+ namespacesCache = createDebug.namespaces;
352
+ enabledCache = createDebug.enabled(namespace);
353
+ }
354
+
355
+ return enabledCache;
345
356
  },
346
357
  set: function set(v) {
347
358
  enableOverride = v;
@@ -371,6 +382,7 @@ function setup(env) {
371
382
 
372
383
  function enable(namespaces) {
373
384
  createDebug.save(namespaces);
385
+ createDebug.namespaces = namespaces;
374
386
  createDebug.names = [];
375
387
  createDebug.skips = [];
376
388
  var i;
@@ -485,7 +497,7 @@ module.exports = setup;
485
497
  /***/ }),
486
498
 
487
499
  /***/ "../authentication-client/lib/core.js":
488
- /*!********************************************!*
500
+ /*!********************************************!*\
489
501
  !*** ../authentication-client/lib/core.js ***!
490
502
  \********************************************/
491
503
  /***/ (function(__unused_webpack_module, exports, __webpack_require__) {
@@ -497,7 +509,7 @@ function _classCallCheck(instance, Constructor) { if (!(instance instanceof Cons
497
509
 
498
510
  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, descriptor.key, descriptor); } }
499
511
 
500
- function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); return Constructor; }
512
+ function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); Object.defineProperty(Constructor, "prototype", { writable: false }); return Constructor; }
501
513
 
502
514
  function _slicedToArray(arr, i) { return _arrayWithHoles(arr) || _iterableToArrayLimit(arr, i) || _unsupportedIterableToArray(arr, i) || _nonIterableRest(); }
503
515
 
@@ -507,7 +519,7 @@ function _unsupportedIterableToArray(o, minLen) { if (!o) return; if (typeof o =
507
519
 
508
520
  function _arrayLikeToArray(arr, len) { if (len == null || len > arr.length) len = arr.length; for (var i = 0, arr2 = new Array(len); i < len; i++) { arr2[i] = arr[i]; } return arr2; }
509
521
 
510
- function _iterableToArrayLimit(arr, i) { if (typeof Symbol === "undefined" || !(Symbol.iterator in Object(arr))) return; var _arr = []; var _n = true; var _d = false; var _e = undefined; try { for (var _i = arr[Symbol.iterator](), _s; !(_n = (_s = _i.next()).done); _n = true) { _arr.push(_s.value); if (i && _arr.length === i) break; } } catch (err) { _d = true; _e = err; } finally { try { if (!_n && _i["return"] != null) _i["return"](); } finally { if (_d) throw _e; } } return _arr; }
522
+ function _iterableToArrayLimit(arr, i) { var _i = arr == null ? null : typeof Symbol !== "undefined" && arr[Symbol.iterator] || arr["@@iterator"]; if (_i == null) return; var _arr = []; var _n = true; var _d = false; var _s, _e; try { for (_i = _i.call(arr); !(_n = (_s = _i.next()).done); _n = true) { _arr.push(_s.value); if (i && _arr.length === i) break; } } catch (err) { _d = true; _e = err; } finally { try { if (!_n && _i["return"] != null) _i["return"](); } finally { if (_d) throw _e; } } return _arr; }
511
523
 
512
524
  function _arrayWithHoles(arr) { if (Array.isArray(arr)) return arr; }
513
525
 
@@ -551,6 +563,16 @@ var AuthenticationClient = /*#__PURE__*/function () {
551
563
  }
552
564
 
553
565
  _createClass(AuthenticationClient, [{
566
+ key: "service",
567
+ get: function get() {
568
+ return this.app.service(this.options.path);
569
+ }
570
+ }, {
571
+ key: "storage",
572
+ get: function get() {
573
+ return this.app.get('storage');
574
+ }
575
+ }, {
554
576
  key: "handleSocket",
555
577
  value: function handleSocket(socket) {
556
578
  var _this = this;
@@ -715,16 +737,6 @@ var AuthenticationClient = /*#__PURE__*/function () {
715
737
  return _this6.handleError(error, 'logout');
716
738
  });
717
739
  }
718
- }, {
719
- key: "service",
720
- get: function get() {
721
- return this.app.service(this.options.path);
722
- }
723
- }, {
724
- key: "storage",
725
- get: function get() {
726
- return this.app.get('storage');
727
- }
728
740
  }]);
729
741
 
730
742
  return AuthenticationClient;
@@ -735,7 +747,7 @@ exports.AuthenticationClient = AuthenticationClient;
735
747
  /***/ }),
736
748
 
737
749
  /***/ "../authentication-client/lib/hooks/authentication.js":
738
- /*!************************************************************!*
750
+ /*!************************************************************!*\
739
751
  !*** ../authentication-client/lib/hooks/authentication.js ***!
740
752
  \************************************************************/
741
753
  /***/ (function(__unused_webpack_module, exports, __webpack_require__) {
@@ -758,7 +770,7 @@ var authentication = function authentication() {
758
770
  method = context.method,
759
771
  service = context.app.authentication;
760
772
 
761
- if (commons_1.stripSlashes(service.options.path) === path && method === 'create') {
773
+ if ((0, commons_1.stripSlashes)(service.options.path) === path && method === 'create') {
762
774
  return context;
763
775
  }
764
776
 
@@ -777,7 +789,7 @@ exports.authentication = authentication;
777
789
  /***/ }),
778
790
 
779
791
  /***/ "../authentication-client/lib/hooks/index.js":
780
- /*!***************************************************!*
792
+ /*!***************************************************!*\
781
793
  !*** ../authentication-client/lib/hooks/index.js ***!
782
794
  \***************************************************/
783
795
  /***/ (function(__unused_webpack_module, exports, __webpack_require__) {
@@ -811,7 +823,7 @@ Object.defineProperty(exports, "populateHeader", ({
811
823
  /***/ }),
812
824
 
813
825
  /***/ "../authentication-client/lib/hooks/populate-header.js":
814
- /*!*************************************************************!*
826
+ /*!*************************************************************!*\
815
827
  !*** ../authentication-client/lib/hooks/populate-header.js ***!
816
828
  \*************************************************************/
817
829
  /***/ (function(__unused_webpack_module, exports) {
@@ -849,7 +861,7 @@ exports.populateHeader = populateHeader;
849
861
  /***/ }),
850
862
 
851
863
  /***/ "../authentication-client/lib/index.js":
852
- /*!*********************************************!*
864
+ /*!*********************************************!*\
853
865
  !*** ../authentication-client/lib/index.js ***!
854
866
  \*********************************************/
855
867
  /***/ (function(module, exports, __webpack_require__) {
@@ -927,7 +939,7 @@ var getDefaultStorage = function getDefaultStorage() {
927
939
  };
928
940
 
929
941
  exports.getDefaultStorage = getDefaultStorage;
930
- exports.defaultStorage = exports.getDefaultStorage();
942
+ exports.defaultStorage = (0, exports.getDefaultStorage)();
931
943
  exports.defaults = {
932
944
  header: 'Authorization',
933
945
  scheme: 'Bearer',
@@ -959,7 +971,7 @@ var init = function init() {
959
971
  };
960
972
  };
961
973
 
962
- exports.default = init;
974
+ exports["default"] = init;
963
975
 
964
976
  if (true) {
965
977
  module.exports = Object.assign(init, module.exports);
@@ -968,7 +980,7 @@ if (true) {
968
980
  /***/ }),
969
981
 
970
982
  /***/ "../authentication-client/lib/storage.js":
971
- /*!***********************************************!*
983
+ /*!***********************************************!*\
972
984
  !*** ../authentication-client/lib/storage.js ***!
973
985
  \***********************************************/
974
986
  /***/ (function(__unused_webpack_module, exports) {
@@ -980,7 +992,7 @@ function _classCallCheck(instance, Constructor) { if (!(instance instanceof Cons
980
992
 
981
993
  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, descriptor.key, descriptor); } }
982
994
 
983
- function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); return Constructor; }
995
+ function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); Object.defineProperty(Constructor, "prototype", { writable: false }); return Constructor; }
984
996
 
985
997
  Object.defineProperty(exports, "__esModule", ({
986
998
  value: true
@@ -1050,7 +1062,7 @@ exports.StorageWrapper = StorageWrapper;
1050
1062
  /***/ }),
1051
1063
 
1052
1064
  /***/ "./src/index.js":
1053
- /*!**********************!*
1065
+ /*!**********************!*\
1054
1066
  !*** ./src/index.js ***!
1055
1067
  \**********************/
1056
1068
  /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
@@ -1079,7 +1091,7 @@ module.exports = feathers;
1079
1091
  /***/ }),
1080
1092
 
1081
1093
  /***/ "../commons/lib/hooks.js":
1082
- /*!*******************************!*
1094
+ /*!*******************************!*\
1083
1095
  !*** ../commons/lib/hooks.js ***!
1084
1096
  \*******************************/
1085
1097
  /***/ (function(__unused_webpack_module, exports, __webpack_require__) {
@@ -1087,7 +1099,7 @@ module.exports = feathers;
1087
1099
  "use strict";
1088
1100
 
1089
1101
 
1090
- function _typeof(obj) { "@babel/helpers - typeof"; if (typeof Symbol === "function" && typeof Symbol.iterator === "symbol") { _typeof = function _typeof(obj) { return typeof obj; }; } else { _typeof = function _typeof(obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; } return _typeof(obj); }
1102
+ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (obj) { return typeof obj; } : function (obj) { return obj && "function" == typeof Symbol && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }, _typeof(obj); }
1091
1103
 
1092
1104
  Object.defineProperty(exports, "__esModule", ({
1093
1105
  value: true
@@ -1099,7 +1111,7 @@ var utils_1 = __webpack_require__(/*! ./utils */ "../commons/lib/utils.js");
1099
1111
  var _utils_1$_ = utils_1._,
1100
1112
  each = _utils_1$_.each,
1101
1113
  pick = _utils_1$_.pick;
1102
- exports.ACTIVATE_HOOKS = utils_1.createSymbol('__feathersActivateHooks');
1114
+ exports.ACTIVATE_HOOKS = (0, utils_1.createSymbol)('__feathersActivateHooks');
1103
1115
 
1104
1116
  function createHookObject(method) {
1105
1117
  var data = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : {};
@@ -1312,7 +1324,7 @@ exports.enableHooks = enableHooks;
1312
1324
  /***/ }),
1313
1325
 
1314
1326
  /***/ "../commons/lib/index.js":
1315
- /*!*******************************!*
1327
+ /*!*******************************!*\
1316
1328
  !*** ../commons/lib/index.js ***!
1317
1329
  \*******************************/
1318
1330
  /***/ (function(__unused_webpack_module, exports, __webpack_require__) {
@@ -1374,7 +1386,7 @@ exports.hooks = hookUtils;
1374
1386
  /***/ }),
1375
1387
 
1376
1388
  /***/ "../commons/lib/utils.js":
1377
- /*!*******************************!*
1389
+ /*!*******************************!*\
1378
1390
  !*** ../commons/lib/utils.js ***!
1379
1391
  \*******************************/
1380
1392
  /***/ (function(__unused_webpack_module, exports) {
@@ -1384,7 +1396,7 @@ exports.hooks = hookUtils;
1384
1396
 
1385
1397
  function _defineProperty(obj, key, value) { if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }
1386
1398
 
1387
- function _typeof(obj) { "@babel/helpers - typeof"; if (typeof Symbol === "function" && typeof Symbol.iterator === "symbol") { _typeof = function _typeof(obj) { return typeof obj; }; } else { _typeof = function _typeof(obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; } return _typeof(obj); }
1399
+ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (obj) { return typeof obj; } : function (obj) { return obj && "function" == typeof Symbol && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }, _typeof(obj); }
1388
1400
 
1389
1401
  function _slicedToArray(arr, i) { return _arrayWithHoles(arr) || _iterableToArrayLimit(arr, i) || _unsupportedIterableToArray(arr, i) || _nonIterableRest(); }
1390
1402
 
@@ -1394,7 +1406,7 @@ function _unsupportedIterableToArray(o, minLen) { if (!o) return; if (typeof o =
1394
1406
 
1395
1407
  function _arrayLikeToArray(arr, len) { if (len == null || len > arr.length) len = arr.length; for (var i = 0, arr2 = new Array(len); i < len; i++) { arr2[i] = arr[i]; } return arr2; }
1396
1408
 
1397
- function _iterableToArrayLimit(arr, i) { if (typeof Symbol === "undefined" || !(Symbol.iterator in Object(arr))) return; var _arr = []; var _n = true; var _d = false; var _e = undefined; try { for (var _i = arr[Symbol.iterator](), _s; !(_n = (_s = _i.next()).done); _n = true) { _arr.push(_s.value); if (i && _arr.length === i) break; } } catch (err) { _d = true; _e = err; } finally { try { if (!_n && _i["return"] != null) _i["return"](); } finally { if (_d) throw _e; } } return _arr; }
1409
+ function _iterableToArrayLimit(arr, i) { var _i = arr == null ? null : typeof Symbol !== "undefined" && arr[Symbol.iterator] || arr["@@iterator"]; if (_i == null) return; var _arr = []; var _n = true; var _d = false; var _s, _e; try { for (_i = _i.call(arr); !(_n = (_s = _i.next()).done); _n = true) { _arr.push(_s.value); if (i && _arr.length === i) break; } } catch (err) { _d = true; _e = err; } finally { try { if (!_n && _i["return"] != null) _i["return"](); } finally { if (_d) throw _e; } } return _arr; }
1398
1410
 
1399
1411
  function _arrayWithHoles(arr) { if (Array.isArray(arr)) return arr; }
1400
1412
 
@@ -1544,12 +1556,12 @@ exports.createSymbol = createSymbol;
1544
1556
  /***/ }),
1545
1557
 
1546
1558
  /***/ "../errors/lib/index.js":
1547
- /*!******************************!*
1559
+ /*!******************************!*\
1548
1560
  !*** ../errors/lib/index.js ***!
1549
1561
  \******************************/
1550
1562
  /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
1551
1563
 
1552
- function _typeof(obj) { "@babel/helpers - typeof"; if (typeof Symbol === "function" && typeof Symbol.iterator === "symbol") { _typeof = function _typeof(obj) { return typeof obj; }; } else { _typeof = function _typeof(obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; } return _typeof(obj); }
1564
+ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (obj) { return typeof obj; } : function (obj) { return obj && "function" == typeof Symbol && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }, _typeof(obj); }
1553
1565
 
1554
1566
  var debug = __webpack_require__(/*! debug */ "../../node_modules/debug/src/browser.js")('@feathersjs/errors');
1555
1567
 
@@ -1793,7 +1805,7 @@ module.exports = Object.assign({
1793
1805
  /***/ }),
1794
1806
 
1795
1807
  /***/ "../feathers/lib/application.js":
1796
- /*!**************************************!*
1808
+ /*!**************************************!*\
1797
1809
  !*** ../feathers/lib/application.js ***!
1798
1810
  \**************************************/
1799
1811
  /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
@@ -1940,7 +1952,7 @@ module.exports = application;
1940
1952
  /***/ }),
1941
1953
 
1942
1954
  /***/ "../feathers/lib/events.js":
1943
- /*!*********************************!*
1955
+ /*!*********************************!*\
1944
1956
  !*** ../feathers/lib/events.js ***!
1945
1957
  \*********************************/
1946
1958
  /***/ (function(module, exports, __webpack_require__) {
@@ -2032,7 +2044,7 @@ module.exports = function () {
2032
2044
  /***/ }),
2033
2045
 
2034
2046
  /***/ "../feathers/lib/hooks/base.js":
2035
- /*!*************************************!*
2047
+ /*!*************************************!*\
2036
2048
  !*** ../feathers/lib/hooks/base.js ***!
2037
2049
  \*************************************/
2038
2050
  /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
@@ -2077,7 +2089,7 @@ module.exports = [assignArguments, validate];
2077
2089
  /***/ }),
2078
2090
 
2079
2091
  /***/ "../feathers/lib/hooks/index.js":
2080
- /*!**************************************!*
2092
+ /*!**************************************!*\
2081
2093
  !*** ../feathers/lib/hooks/index.js ***!
2082
2094
  \**************************************/
2083
2095
  /***/ (function(module, exports, __webpack_require__) {
@@ -2088,7 +2100,7 @@ function _nonIterableSpread() { throw new TypeError("Invalid attempt to spread n
2088
2100
 
2089
2101
  function _unsupportedIterableToArray(o, minLen) { if (!o) return; if (typeof o === "string") return _arrayLikeToArray(o, minLen); var n = Object.prototype.toString.call(o).slice(8, -1); if (n === "Object" && o.constructor) n = o.constructor.name; if (n === "Map" || n === "Set") return Array.from(o); if (n === "Arguments" || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)) return _arrayLikeToArray(o, minLen); }
2090
2102
 
2091
- function _iterableToArray(iter) { if (typeof Symbol !== "undefined" && Symbol.iterator in Object(iter)) return Array.from(iter); }
2103
+ function _iterableToArray(iter) { if (typeof Symbol !== "undefined" && iter[Symbol.iterator] != null || iter["@@iterator"] != null) return Array.from(iter); }
2092
2104
 
2093
2105
  function _arrayWithoutHoles(arr) { if (Array.isArray(arr)) return _arrayLikeToArray(arr); }
2094
2106
 
@@ -2288,7 +2300,7 @@ module.exports.activateHooks = function activateHooks(args) {
2288
2300
  /***/ }),
2289
2301
 
2290
2302
  /***/ "../feathers/lib/index.js":
2291
- /*!********************************!*
2303
+ /*!********************************!*\
2292
2304
  !*** ../feathers/lib/index.js ***!
2293
2305
  \********************************/
2294
2306
  /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
@@ -2320,22 +2332,22 @@ createApplication.ACTIVATE_HOOKS = ACTIVATE_HOOKS;
2320
2332
  createApplication.activateHooks = activateHooks;
2321
2333
  module.exports = createApplication; // For better ES module (TypeScript) compatibility
2322
2334
 
2323
- module.exports.default = createApplication;
2335
+ module.exports["default"] = createApplication;
2324
2336
 
2325
2337
  /***/ }),
2326
2338
 
2327
2339
  /***/ "../feathers/lib/version.js":
2328
- /*!**********************************!*
2340
+ /*!**********************************!*\
2329
2341
  !*** ../feathers/lib/version.js ***!
2330
2342
  \**********************************/
2331
2343
  /***/ (function(module) {
2332
2344
 
2333
- module.exports = '4.5.11';
2345
+ module.exports = '4.5.12';
2334
2346
 
2335
2347
  /***/ }),
2336
2348
 
2337
2349
  /***/ "../primus-client/lib/index.js":
2338
- /*!*************************************!*
2350
+ /*!*************************************!*\
2339
2351
  !*** ../primus-client/lib/index.js ***!
2340
2352
  \*************************************/
2341
2353
  /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
@@ -2370,35 +2382,35 @@ function primusClient(connection, options) {
2370
2382
  }
2371
2383
 
2372
2384
  module.exports = primusClient;
2373
- module.exports.default = primusClient;
2385
+ module.exports["default"] = primusClient;
2374
2386
 
2375
2387
  /***/ }),
2376
2388
 
2377
2389
  /***/ "../rest-client/lib/angular-http-client.js":
2378
- /*!*************************************************!*
2390
+ /*!*************************************************!*\
2379
2391
  !*** ../rest-client/lib/angular-http-client.js ***!
2380
2392
  \*************************************************/
2381
2393
  /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
2382
2394
 
2383
- function _typeof(obj) { "@babel/helpers - typeof"; if (typeof Symbol === "function" && typeof Symbol.iterator === "symbol") { _typeof = function _typeof(obj) { return typeof obj; }; } else { _typeof = function _typeof(obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; } return _typeof(obj); }
2395
+ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (obj) { return typeof obj; } : function (obj) { return obj && "function" == typeof Symbol && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }, _typeof(obj); }
2384
2396
 
2385
2397
  function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
2386
2398
 
2387
2399
  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, descriptor.key, descriptor); } }
2388
2400
 
2389
- function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); return Constructor; }
2401
+ function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); Object.defineProperty(Constructor, "prototype", { writable: false }); return Constructor; }
2390
2402
 
2391
- 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 } }); if (superClass) _setPrototypeOf(subClass, superClass); }
2403
+ 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); }
2392
2404
 
2393
2405
  function _setPrototypeOf(o, p) { _setPrototypeOf = Object.setPrototypeOf || function _setPrototypeOf(o, p) { o.__proto__ = p; return o; }; return _setPrototypeOf(o, p); }
2394
2406
 
2395
2407
  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); }; }
2396
2408
 
2397
- function _possibleConstructorReturn(self, call) { if (call && (_typeof(call) === "object" || typeof call === "function")) { return call; } return _assertThisInitialized(self); }
2409
+ 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); }
2398
2410
 
2399
2411
  function _assertThisInitialized(self) { if (self === void 0) { throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); } return self; }
2400
2412
 
2401
- function _isNativeReflectConstruct() { if (typeof Reflect === "undefined" || !Reflect.construct) return false; if (Reflect.construct.sham) return false; if (typeof Proxy === "function") return true; try { Date.prototype.toString.call(Reflect.construct(Date, [], function () {})); return true; } catch (e) { return false; } }
2413
+ function _isNativeReflectConstruct() { if (typeof Reflect === "undefined" || !Reflect.construct) return false; if (Reflect.construct.sham) return false; if (typeof Proxy === "function") return true; try { Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function () {})); return true; } catch (e) { return false; } }
2402
2414
 
2403
2415
  function _getPrototypeOf(o) { _getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf : function _getPrototypeOf(o) { return o.__proto__ || Object.getPrototypeOf(o); }; return _getPrototypeOf(o); }
2404
2416
 
@@ -2459,30 +2471,30 @@ module.exports = AngularHttpService;
2459
2471
  /***/ }),
2460
2472
 
2461
2473
  /***/ "../rest-client/lib/angular.js":
2462
- /*!*************************************!*
2474
+ /*!*************************************!*\
2463
2475
  !*** ../rest-client/lib/angular.js ***!
2464
2476
  \*************************************/
2465
2477
  /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
2466
2478
 
2467
- function _typeof(obj) { "@babel/helpers - typeof"; if (typeof Symbol === "function" && typeof Symbol.iterator === "symbol") { _typeof = function _typeof(obj) { return typeof obj; }; } else { _typeof = function _typeof(obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; } return _typeof(obj); }
2479
+ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (obj) { return typeof obj; } : function (obj) { return obj && "function" == typeof Symbol && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }, _typeof(obj); }
2468
2480
 
2469
2481
  function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
2470
2482
 
2471
2483
  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, descriptor.key, descriptor); } }
2472
2484
 
2473
- function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); return Constructor; }
2485
+ function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); Object.defineProperty(Constructor, "prototype", { writable: false }); return Constructor; }
2474
2486
 
2475
- 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 } }); if (superClass) _setPrototypeOf(subClass, superClass); }
2487
+ 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); }
2476
2488
 
2477
2489
  function _setPrototypeOf(o, p) { _setPrototypeOf = Object.setPrototypeOf || function _setPrototypeOf(o, p) { o.__proto__ = p; return o; }; return _setPrototypeOf(o, p); }
2478
2490
 
2479
2491
  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); }; }
2480
2492
 
2481
- function _possibleConstructorReturn(self, call) { if (call && (_typeof(call) === "object" || typeof call === "function")) { return call; } return _assertThisInitialized(self); }
2493
+ 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); }
2482
2494
 
2483
2495
  function _assertThisInitialized(self) { if (self === void 0) { throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); } return self; }
2484
2496
 
2485
- function _isNativeReflectConstruct() { if (typeof Reflect === "undefined" || !Reflect.construct) return false; if (Reflect.construct.sham) return false; if (typeof Proxy === "function") return true; try { Date.prototype.toString.call(Reflect.construct(Date, [], function () {})); return true; } catch (e) { return false; } }
2497
+ function _isNativeReflectConstruct() { if (typeof Reflect === "undefined" || !Reflect.construct) return false; if (Reflect.construct.sham) return false; if (typeof Proxy === "function") return true; try { Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function () {})); return true; } catch (e) { return false; } }
2486
2498
 
2487
2499
  function _getPrototypeOf(o) { _getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf : function _getPrototypeOf(o) { return o.__proto__ || Object.getPrototypeOf(o); }; return _getPrototypeOf(o); }
2488
2500
 
@@ -2540,30 +2552,30 @@ module.exports = AngularService;
2540
2552
  /***/ }),
2541
2553
 
2542
2554
  /***/ "../rest-client/lib/axios.js":
2543
- /*!***********************************!*
2555
+ /*!***********************************!*\
2544
2556
  !*** ../rest-client/lib/axios.js ***!
2545
2557
  \***********************************/
2546
2558
  /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
2547
2559
 
2548
- function _typeof(obj) { "@babel/helpers - typeof"; if (typeof Symbol === "function" && typeof Symbol.iterator === "symbol") { _typeof = function _typeof(obj) { return typeof obj; }; } else { _typeof = function _typeof(obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; } return _typeof(obj); }
2560
+ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (obj) { return typeof obj; } : function (obj) { return obj && "function" == typeof Symbol && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }, _typeof(obj); }
2549
2561
 
2550
2562
  function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
2551
2563
 
2552
2564
  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, descriptor.key, descriptor); } }
2553
2565
 
2554
- function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); return Constructor; }
2566
+ function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); Object.defineProperty(Constructor, "prototype", { writable: false }); return Constructor; }
2555
2567
 
2556
- 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 } }); if (superClass) _setPrototypeOf(subClass, superClass); }
2568
+ 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); }
2557
2569
 
2558
2570
  function _setPrototypeOf(o, p) { _setPrototypeOf = Object.setPrototypeOf || function _setPrototypeOf(o, p) { o.__proto__ = p; return o; }; return _setPrototypeOf(o, p); }
2559
2571
 
2560
2572
  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); }; }
2561
2573
 
2562
- function _possibleConstructorReturn(self, call) { if (call && (_typeof(call) === "object" || typeof call === "function")) { return call; } return _assertThisInitialized(self); }
2574
+ 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); }
2563
2575
 
2564
2576
  function _assertThisInitialized(self) { if (self === void 0) { throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); } return self; }
2565
2577
 
2566
- function _isNativeReflectConstruct() { if (typeof Reflect === "undefined" || !Reflect.construct) return false; if (Reflect.construct.sham) return false; if (typeof Proxy === "function") return true; try { Date.prototype.toString.call(Reflect.construct(Date, [], function () {})); return true; } catch (e) { return false; } }
2578
+ function _isNativeReflectConstruct() { if (typeof Reflect === "undefined" || !Reflect.construct) return false; if (Reflect.construct.sham) return false; if (typeof Proxy === "function") return true; try { Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function () {})); return true; } catch (e) { return false; } }
2567
2579
 
2568
2580
  function _getPrototypeOf(o) { _getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf : function _getPrototypeOf(o) { return o.__proto__ || Object.getPrototypeOf(o); }; return _getPrototypeOf(o); }
2569
2581
 
@@ -2608,7 +2620,7 @@ module.exports = AxiosService;
2608
2620
  /***/ }),
2609
2621
 
2610
2622
  /***/ "../rest-client/lib/base.js":
2611
- /*!**********************************!*
2623
+ /*!**********************************!*\
2612
2624
  !*** ../rest-client/lib/base.js ***!
2613
2625
  \**********************************/
2614
2626
  /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
@@ -2617,7 +2629,7 @@ function _classCallCheck(instance, Constructor) { if (!(instance instanceof Cons
2617
2629
 
2618
2630
  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, descriptor.key, descriptor); } }
2619
2631
 
2620
- function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); return Constructor; }
2632
+ function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); Object.defineProperty(Constructor, "prototype", { writable: false }); return Constructor; }
2621
2633
 
2622
2634
  var qs = __webpack_require__(/*! qs */ "../../node_modules/qs/lib/index.js");
2623
2635
 
@@ -2772,30 +2784,30 @@ module.exports = Base;
2772
2784
  /***/ }),
2773
2785
 
2774
2786
  /***/ "../rest-client/lib/fetch.js":
2775
- /*!***********************************!*
2787
+ /*!***********************************!*\
2776
2788
  !*** ../rest-client/lib/fetch.js ***!
2777
2789
  \***********************************/
2778
2790
  /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
2779
2791
 
2780
- function _typeof(obj) { "@babel/helpers - typeof"; if (typeof Symbol === "function" && typeof Symbol.iterator === "symbol") { _typeof = function _typeof(obj) { return typeof obj; }; } else { _typeof = function _typeof(obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; } return _typeof(obj); }
2792
+ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (obj) { return typeof obj; } : function (obj) { return obj && "function" == typeof Symbol && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }, _typeof(obj); }
2781
2793
 
2782
2794
  function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
2783
2795
 
2784
2796
  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, descriptor.key, descriptor); } }
2785
2797
 
2786
- function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); return Constructor; }
2798
+ function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); Object.defineProperty(Constructor, "prototype", { writable: false }); return Constructor; }
2787
2799
 
2788
- 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 } }); if (superClass) _setPrototypeOf(subClass, superClass); }
2800
+ 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); }
2789
2801
 
2790
2802
  function _setPrototypeOf(o, p) { _setPrototypeOf = Object.setPrototypeOf || function _setPrototypeOf(o, p) { o.__proto__ = p; return o; }; return _setPrototypeOf(o, p); }
2791
2803
 
2792
2804
  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); }; }
2793
2805
 
2794
- function _possibleConstructorReturn(self, call) { if (call && (_typeof(call) === "object" || typeof call === "function")) { return call; } return _assertThisInitialized(self); }
2806
+ 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); }
2795
2807
 
2796
2808
  function _assertThisInitialized(self) { if (self === void 0) { throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); } return self; }
2797
2809
 
2798
- function _isNativeReflectConstruct() { if (typeof Reflect === "undefined" || !Reflect.construct) return false; if (Reflect.construct.sham) return false; if (typeof Proxy === "function") return true; try { Date.prototype.toString.call(Reflect.construct(Date, [], function () {})); return true; } catch (e) { return false; } }
2810
+ function _isNativeReflectConstruct() { if (typeof Reflect === "undefined" || !Reflect.construct) return false; if (Reflect.construct.sham) return false; if (typeof Proxy === "function") return true; try { Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function () {})); return true; } catch (e) { return false; } }
2799
2811
 
2800
2812
  function _getPrototypeOf(o) { _getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf : function _getPrototypeOf(o) { return o.__proto__ || Object.getPrototypeOf(o); }; return _getPrototypeOf(o); }
2801
2813
 
@@ -2858,7 +2870,7 @@ module.exports = FetchService;
2858
2870
  /***/ }),
2859
2871
 
2860
2872
  /***/ "../rest-client/lib/index.js":
2861
- /*!***********************************!*
2873
+ /*!***********************************!*\
2862
2874
  !*** ../rest-client/lib/index.js ***!
2863
2875
  \***********************************/
2864
2876
  /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
@@ -2943,35 +2955,35 @@ module.exports = Object.assign(restClient, {
2943
2955
  AngularClient: AngularClient,
2944
2956
  AngularHttpClient: AngularHttpClient
2945
2957
  });
2946
- module.exports.default = restClient;
2958
+ module.exports["default"] = restClient;
2947
2959
 
2948
2960
  /***/ }),
2949
2961
 
2950
2962
  /***/ "../rest-client/lib/jquery.js":
2951
- /*!************************************!*
2963
+ /*!************************************!*\
2952
2964
  !*** ../rest-client/lib/jquery.js ***!
2953
2965
  \************************************/
2954
2966
  /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
2955
2967
 
2956
- function _typeof(obj) { "@babel/helpers - typeof"; if (typeof Symbol === "function" && typeof Symbol.iterator === "symbol") { _typeof = function _typeof(obj) { return typeof obj; }; } else { _typeof = function _typeof(obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; } return _typeof(obj); }
2968
+ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (obj) { return typeof obj; } : function (obj) { return obj && "function" == typeof Symbol && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }, _typeof(obj); }
2957
2969
 
2958
2970
  function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
2959
2971
 
2960
2972
  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, descriptor.key, descriptor); } }
2961
2973
 
2962
- function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); return Constructor; }
2974
+ function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); Object.defineProperty(Constructor, "prototype", { writable: false }); return Constructor; }
2963
2975
 
2964
- 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 } }); if (superClass) _setPrototypeOf(subClass, superClass); }
2976
+ 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); }
2965
2977
 
2966
2978
  function _setPrototypeOf(o, p) { _setPrototypeOf = Object.setPrototypeOf || function _setPrototypeOf(o, p) { o.__proto__ = p; return o; }; return _setPrototypeOf(o, p); }
2967
2979
 
2968
2980
  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); }; }
2969
2981
 
2970
- function _possibleConstructorReturn(self, call) { if (call && (_typeof(call) === "object" || typeof call === "function")) { return call; } return _assertThisInitialized(self); }
2982
+ 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); }
2971
2983
 
2972
2984
  function _assertThisInitialized(self) { if (self === void 0) { throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); } return self; }
2973
2985
 
2974
- function _isNativeReflectConstruct() { if (typeof Reflect === "undefined" || !Reflect.construct) return false; if (Reflect.construct.sham) return false; if (typeof Proxy === "function") return true; try { Date.prototype.toString.call(Reflect.construct(Date, [], function () {})); return true; } catch (e) { return false; } }
2986
+ function _isNativeReflectConstruct() { if (typeof Reflect === "undefined" || !Reflect.construct) return false; if (Reflect.construct.sham) return false; if (typeof Proxy === "function") return true; try { Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function () {})); return true; } catch (e) { return false; } }
2975
2987
 
2976
2988
  function _getPrototypeOf(o) { _getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf : function _getPrototypeOf(o) { return o.__proto__ || Object.getPrototypeOf(o); }; return _getPrototypeOf(o); }
2977
2989
 
@@ -3034,30 +3046,30 @@ module.exports = JQueryService;
3034
3046
  /***/ }),
3035
3047
 
3036
3048
  /***/ "../rest-client/lib/request.js":
3037
- /*!*************************************!*
3049
+ /*!*************************************!*\
3038
3050
  !*** ../rest-client/lib/request.js ***!
3039
3051
  \*************************************/
3040
3052
  /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
3041
3053
 
3042
- function _typeof(obj) { "@babel/helpers - typeof"; if (typeof Symbol === "function" && typeof Symbol.iterator === "symbol") { _typeof = function _typeof(obj) { return typeof obj; }; } else { _typeof = function _typeof(obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; } return _typeof(obj); }
3054
+ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (obj) { return typeof obj; } : function (obj) { return obj && "function" == typeof Symbol && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }, _typeof(obj); }
3043
3055
 
3044
3056
  function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
3045
3057
 
3046
3058
  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, descriptor.key, descriptor); } }
3047
3059
 
3048
- function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); return Constructor; }
3060
+ function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); Object.defineProperty(Constructor, "prototype", { writable: false }); return Constructor; }
3049
3061
 
3050
- 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 } }); if (superClass) _setPrototypeOf(subClass, superClass); }
3062
+ 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); }
3051
3063
 
3052
3064
  function _setPrototypeOf(o, p) { _setPrototypeOf = Object.setPrototypeOf || function _setPrototypeOf(o, p) { o.__proto__ = p; return o; }; return _setPrototypeOf(o, p); }
3053
3065
 
3054
3066
  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); }; }
3055
3067
 
3056
- function _possibleConstructorReturn(self, call) { if (call && (_typeof(call) === "object" || typeof call === "function")) { return call; } return _assertThisInitialized(self); }
3068
+ 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); }
3057
3069
 
3058
3070
  function _assertThisInitialized(self) { if (self === void 0) { throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); } return self; }
3059
3071
 
3060
- function _isNativeReflectConstruct() { if (typeof Reflect === "undefined" || !Reflect.construct) return false; if (Reflect.construct.sham) return false; if (typeof Proxy === "function") return true; try { Date.prototype.toString.call(Reflect.construct(Date, [], function () {})); return true; } catch (e) { return false; } }
3072
+ function _isNativeReflectConstruct() { if (typeof Reflect === "undefined" || !Reflect.construct) return false; if (Reflect.construct.sham) return false; if (typeof Proxy === "function") return true; try { Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function () {})); return true; } catch (e) { return false; } }
3061
3073
 
3062
3074
  function _getPrototypeOf(o) { _getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf : function _getPrototypeOf(o) { return o.__proto__ || Object.getPrototypeOf(o); }; return _getPrototypeOf(o); }
3063
3075
 
@@ -3116,30 +3128,30 @@ module.exports = RequestService;
3116
3128
  /***/ }),
3117
3129
 
3118
3130
  /***/ "../rest-client/lib/superagent.js":
3119
- /*!****************************************!*
3131
+ /*!****************************************!*\
3120
3132
  !*** ../rest-client/lib/superagent.js ***!
3121
3133
  \****************************************/
3122
3134
  /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
3123
3135
 
3124
- function _typeof(obj) { "@babel/helpers - typeof"; if (typeof Symbol === "function" && typeof Symbol.iterator === "symbol") { _typeof = function _typeof(obj) { return typeof obj; }; } else { _typeof = function _typeof(obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; } return _typeof(obj); }
3136
+ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (obj) { return typeof obj; } : function (obj) { return obj && "function" == typeof Symbol && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }, _typeof(obj); }
3125
3137
 
3126
3138
  function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
3127
3139
 
3128
3140
  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, descriptor.key, descriptor); } }
3129
3141
 
3130
- function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); return Constructor; }
3142
+ function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); Object.defineProperty(Constructor, "prototype", { writable: false }); return Constructor; }
3131
3143
 
3132
- 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 } }); if (superClass) _setPrototypeOf(subClass, superClass); }
3144
+ 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); }
3133
3145
 
3134
3146
  function _setPrototypeOf(o, p) { _setPrototypeOf = Object.setPrototypeOf || function _setPrototypeOf(o, p) { o.__proto__ = p; return o; }; return _setPrototypeOf(o, p); }
3135
3147
 
3136
3148
  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); }; }
3137
3149
 
3138
- function _possibleConstructorReturn(self, call) { if (call && (_typeof(call) === "object" || typeof call === "function")) { return call; } return _assertThisInitialized(self); }
3150
+ 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); }
3139
3151
 
3140
3152
  function _assertThisInitialized(self) { if (self === void 0) { throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); } return self; }
3141
3153
 
3142
- function _isNativeReflectConstruct() { if (typeof Reflect === "undefined" || !Reflect.construct) return false; if (Reflect.construct.sham) return false; if (typeof Proxy === "function") return true; try { Date.prototype.toString.call(Reflect.construct(Date, [], function () {})); return true; } catch (e) { return false; } }
3154
+ function _isNativeReflectConstruct() { if (typeof Reflect === "undefined" || !Reflect.construct) return false; if (Reflect.construct.sham) return false; if (typeof Proxy === "function") return true; try { Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function () {})); return true; } catch (e) { return false; } }
3143
3155
 
3144
3156
  function _getPrototypeOf(o) { _getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf : function _getPrototypeOf(o) { return o.__proto__ || Object.getPrototypeOf(o); }; return _getPrototypeOf(o); }
3145
3157
 
@@ -3192,7 +3204,7 @@ module.exports = SuperagentService;
3192
3204
  /***/ }),
3193
3205
 
3194
3206
  /***/ "../socketio-client/lib/index.js":
3195
- /*!***************************************!*
3207
+ /*!***************************************!*\
3196
3208
  !*** ../socketio-client/lib/index.js ***!
3197
3209
  \***************************************/
3198
3210
  /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
@@ -3240,12 +3252,12 @@ function socketioClient(connection, options) {
3240
3252
  }
3241
3253
 
3242
3254
  module.exports = socketioClient;
3243
- module.exports.default = socketioClient;
3255
+ module.exports["default"] = socketioClient;
3244
3256
 
3245
3257
  /***/ }),
3246
3258
 
3247
3259
  /***/ "../transport-commons/client.js":
3248
- /*!**************************************!*
3260
+ /*!**************************************!*\
3249
3261
  !*** ../transport-commons/client.js ***!
3250
3262
  \**************************************/
3251
3263
  /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
@@ -3255,7 +3267,7 @@ module.exports = __webpack_require__(/*! ./lib/client */ "../transport-commons/l
3255
3267
  /***/ }),
3256
3268
 
3257
3269
  /***/ "../transport-commons/lib/client.js":
3258
- /*!******************************************!*
3270
+ /*!******************************************!*\
3259
3271
  !*** ../transport-commons/lib/client.js ***!
3260
3272
  \******************************************/
3261
3273
  /***/ (function(__unused_webpack_module, exports, __webpack_require__) {
@@ -3267,7 +3279,7 @@ function _classCallCheck(instance, Constructor) { if (!(instance instanceof Cons
3267
3279
 
3268
3280
  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, descriptor.key, descriptor); } }
3269
3281
 
3270
- function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); return Constructor; }
3282
+ function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); Object.defineProperty(Constructor, "prototype", { writable: false }); return Constructor; }
3271
3283
 
3272
3284
  var __importDefault = this && this.__importDefault || function (mod) {
3273
3285
  return mod && mod.__esModule ? mod : {
@@ -3284,7 +3296,7 @@ var debug_1 = __importDefault(__webpack_require__(/*! debug */ "../../node_modul
3284
3296
 
3285
3297
  var errors_1 = __webpack_require__(/*! @feathersjs/errors */ "../errors/lib/index.js");
3286
3298
 
3287
- var debug = debug_1.default('@feathersjs/transport-commons/client');
3299
+ var debug = (0, debug_1.default)('@feathersjs/transport-commons/client');
3288
3300
  var namespacedEmitterMethods = ['addListener', 'emit', 'listenerCount', 'listeners', 'on', 'once', 'prependListener', 'prependOnceListener', 'removeAllListeners', 'removeListener'];
3289
3301
  var otherEmitterMethods = ['eventNames', 'getMaxListeners', 'setMaxListeners'];
3290
3302
 
@@ -3356,7 +3368,7 @@ var Service = /*#__PURE__*/function () {
3356
3368
  }, _this.timeout);
3357
3369
  args.unshift(method, _this.path);
3358
3370
  args.push(function (error, data) {
3359
- error = errors_1.convert(error);
3371
+ error = (0, errors_1.convert)(error);
3360
3372
  clearTimeout(timeoutId);
3361
3373
  return error ? reject(error) : resolve(data);
3362
3374
  });
@@ -3432,10 +3444,94 @@ var Service = /*#__PURE__*/function () {
3432
3444
 
3433
3445
  exports.Service = Service;
3434
3446
 
3447
+ /***/ }),
3448
+
3449
+ /***/ "../../node_modules/call-bind/callBound.js":
3450
+ /*!*************************************************!*\
3451
+ !*** ../../node_modules/call-bind/callBound.js ***!
3452
+ \*************************************************/
3453
+ /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
3454
+
3455
+ "use strict";
3456
+
3457
+
3458
+ var GetIntrinsic = __webpack_require__(/*! get-intrinsic */ "../../node_modules/get-intrinsic/index.js");
3459
+
3460
+ var callBind = __webpack_require__(/*! ./ */ "../../node_modules/call-bind/index.js");
3461
+
3462
+ var $indexOf = callBind(GetIntrinsic('String.prototype.indexOf'));
3463
+
3464
+ module.exports = function callBoundIntrinsic(name, allowMissing) {
3465
+ var intrinsic = GetIntrinsic(name, !!allowMissing);
3466
+ if (typeof intrinsic === 'function' && $indexOf(name, '.prototype.') > -1) {
3467
+ return callBind(intrinsic);
3468
+ }
3469
+ return intrinsic;
3470
+ };
3471
+
3472
+
3473
+ /***/ }),
3474
+
3475
+ /***/ "../../node_modules/call-bind/index.js":
3476
+ /*!*********************************************!*\
3477
+ !*** ../../node_modules/call-bind/index.js ***!
3478
+ \*********************************************/
3479
+ /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
3480
+
3481
+ "use strict";
3482
+
3483
+
3484
+ var bind = __webpack_require__(/*! function-bind */ "../../node_modules/function-bind/index.js");
3485
+ var GetIntrinsic = __webpack_require__(/*! get-intrinsic */ "../../node_modules/get-intrinsic/index.js");
3486
+
3487
+ var $apply = GetIntrinsic('%Function.prototype.apply%');
3488
+ var $call = GetIntrinsic('%Function.prototype.call%');
3489
+ var $reflectApply = GetIntrinsic('%Reflect.apply%', true) || bind.call($call, $apply);
3490
+
3491
+ var $gOPD = GetIntrinsic('%Object.getOwnPropertyDescriptor%', true);
3492
+ var $defineProperty = GetIntrinsic('%Object.defineProperty%', true);
3493
+ var $max = GetIntrinsic('%Math.max%');
3494
+
3495
+ if ($defineProperty) {
3496
+ try {
3497
+ $defineProperty({}, 'a', { value: 1 });
3498
+ } catch (e) {
3499
+ // IE 8 has a broken defineProperty
3500
+ $defineProperty = null;
3501
+ }
3502
+ }
3503
+
3504
+ module.exports = function callBind(originalFunction) {
3505
+ var func = $reflectApply(bind, $call, arguments);
3506
+ if ($gOPD && $defineProperty) {
3507
+ var desc = $gOPD(func, 'length');
3508
+ if (desc.configurable) {
3509
+ // original length, plus the receiver, minus any additional arguments (after the receiver)
3510
+ $defineProperty(
3511
+ func,
3512
+ 'length',
3513
+ { value: 1 + $max(0, originalFunction.length - (arguments.length - 1)) }
3514
+ );
3515
+ }
3516
+ }
3517
+ return func;
3518
+ };
3519
+
3520
+ var applyBind = function applyBind() {
3521
+ return $reflectApply(bind, $apply, arguments);
3522
+ };
3523
+
3524
+ if ($defineProperty) {
3525
+ $defineProperty(module.exports, 'apply', { value: applyBind });
3526
+ } else {
3527
+ module.exports.apply = applyBind;
3528
+ }
3529
+
3530
+
3435
3531
  /***/ }),
3436
3532
 
3437
3533
  /***/ "../../node_modules/events/events.js":
3438
- /*!*******************************************!*
3534
+ /*!*******************************************!*\
3439
3535
  !*** ../../node_modules/events/events.js ***!
3440
3536
  \*******************************************/
3441
3537
  /***/ (function(module) {
@@ -3891,38 +3987,572 @@ function unwrapListeners(arr) {
3891
3987
 
3892
3988
  function once(emitter, name) {
3893
3989
  return new Promise(function (resolve, reject) {
3894
- function eventListener() {
3895
- if (errorListener !== undefined) {
3990
+ function errorListener(err) {
3991
+ emitter.removeListener(name, resolver);
3992
+ reject(err);
3993
+ }
3994
+
3995
+ function resolver() {
3996
+ if (typeof emitter.removeListener === 'function') {
3896
3997
  emitter.removeListener('error', errorListener);
3897
3998
  }
3898
3999
  resolve([].slice.call(arguments));
3899
4000
  };
3900
- var errorListener;
3901
-
3902
- // Adding an error listener is not optional because
3903
- // if an error is thrown on an event emitter we cannot
3904
- // guarantee that the actual event we are waiting will
3905
- // be fired. The result could be a silent way to create
3906
- // memory or file descriptor leaks, which is something
3907
- // we should avoid.
4001
+
4002
+ eventTargetAgnosticAddListener(emitter, name, resolver, { once: true });
3908
4003
  if (name !== 'error') {
3909
- errorListener = function errorListener(err) {
3910
- emitter.removeListener(name, eventListener);
3911
- reject(err);
3912
- };
4004
+ addErrorHandlerIfEventEmitter(emitter, errorListener, { once: true });
4005
+ }
4006
+ });
4007
+ }
4008
+
4009
+ function addErrorHandlerIfEventEmitter(emitter, handler, flags) {
4010
+ if (typeof emitter.on === 'function') {
4011
+ eventTargetAgnosticAddListener(emitter, 'error', handler, flags);
4012
+ }
4013
+ }
3913
4014
 
3914
- emitter.once('error', errorListener);
4015
+ function eventTargetAgnosticAddListener(emitter, name, listener, flags) {
4016
+ if (typeof emitter.on === 'function') {
4017
+ if (flags.once) {
4018
+ emitter.once(name, listener);
4019
+ } else {
4020
+ emitter.on(name, listener);
4021
+ }
4022
+ } else if (typeof emitter.addEventListener === 'function') {
4023
+ // EventTarget does not have `error` event semantics like Node
4024
+ // EventEmitters, we do not listen for `error` events here.
4025
+ emitter.addEventListener(name, function wrapListener(arg) {
4026
+ // IE does not have builtin `{ once: true }` support so we
4027
+ // have to do it manually.
4028
+ if (flags.once) {
4029
+ emitter.removeEventListener(name, wrapListener);
4030
+ }
4031
+ listener(arg);
4032
+ });
4033
+ } else {
4034
+ throw new TypeError('The "emitter" argument must be of type EventEmitter. Received type ' + typeof emitter);
4035
+ }
4036
+ }
4037
+
4038
+
4039
+ /***/ }),
4040
+
4041
+ /***/ "../../node_modules/function-bind/implementation.js":
4042
+ /*!**********************************************************!*\
4043
+ !*** ../../node_modules/function-bind/implementation.js ***!
4044
+ \**********************************************************/
4045
+ /***/ (function(module) {
4046
+
4047
+ "use strict";
4048
+
4049
+
4050
+ /* eslint no-invalid-this: 1 */
4051
+
4052
+ var ERROR_MESSAGE = 'Function.prototype.bind called on incompatible ';
4053
+ var slice = Array.prototype.slice;
4054
+ var toStr = Object.prototype.toString;
4055
+ var funcType = '[object Function]';
4056
+
4057
+ module.exports = function bind(that) {
4058
+ var target = this;
4059
+ if (typeof target !== 'function' || toStr.call(target) !== funcType) {
4060
+ throw new TypeError(ERROR_MESSAGE + target);
3915
4061
  }
4062
+ var args = slice.call(arguments, 1);
3916
4063
 
3917
- emitter.once(name, eventListener);
3918
- });
4064
+ var bound;
4065
+ var binder = function () {
4066
+ if (this instanceof bound) {
4067
+ var result = target.apply(
4068
+ this,
4069
+ args.concat(slice.call(arguments))
4070
+ );
4071
+ if (Object(result) === result) {
4072
+ return result;
4073
+ }
4074
+ return this;
4075
+ } else {
4076
+ return target.apply(
4077
+ that,
4078
+ args.concat(slice.call(arguments))
4079
+ );
4080
+ }
4081
+ };
4082
+
4083
+ var boundLength = Math.max(0, target.length - args.length);
4084
+ var boundArgs = [];
4085
+ for (var i = 0; i < boundLength; i++) {
4086
+ boundArgs.push('$' + i);
4087
+ }
4088
+
4089
+ bound = Function('binder', 'return function (' + boundArgs.join(',') + '){ return binder.apply(this,arguments); }')(binder);
4090
+
4091
+ if (target.prototype) {
4092
+ var Empty = function Empty() {};
4093
+ Empty.prototype = target.prototype;
4094
+ bound.prototype = new Empty();
4095
+ Empty.prototype = null;
4096
+ }
4097
+
4098
+ return bound;
4099
+ };
4100
+
4101
+
4102
+ /***/ }),
4103
+
4104
+ /***/ "../../node_modules/function-bind/index.js":
4105
+ /*!*************************************************!*\
4106
+ !*** ../../node_modules/function-bind/index.js ***!
4107
+ \*************************************************/
4108
+ /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
4109
+
4110
+ "use strict";
4111
+
4112
+
4113
+ var implementation = __webpack_require__(/*! ./implementation */ "../../node_modules/function-bind/implementation.js");
4114
+
4115
+ module.exports = Function.prototype.bind || implementation;
4116
+
4117
+
4118
+ /***/ }),
4119
+
4120
+ /***/ "../../node_modules/get-intrinsic/index.js":
4121
+ /*!*************************************************!*\
4122
+ !*** ../../node_modules/get-intrinsic/index.js ***!
4123
+ \*************************************************/
4124
+ /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
4125
+
4126
+ "use strict";
4127
+
4128
+
4129
+ var undefined;
4130
+
4131
+ var $SyntaxError = SyntaxError;
4132
+ var $Function = Function;
4133
+ var $TypeError = TypeError;
4134
+
4135
+ // eslint-disable-next-line consistent-return
4136
+ var getEvalledConstructor = function (expressionSyntax) {
4137
+ try {
4138
+ return $Function('"use strict"; return (' + expressionSyntax + ').constructor;')();
4139
+ } catch (e) {}
4140
+ };
4141
+
4142
+ var $gOPD = Object.getOwnPropertyDescriptor;
4143
+ if ($gOPD) {
4144
+ try {
4145
+ $gOPD({}, '');
4146
+ } catch (e) {
4147
+ $gOPD = null; // this is IE 8, which has a broken gOPD
4148
+ }
3919
4149
  }
3920
4150
 
4151
+ var throwTypeError = function () {
4152
+ throw new $TypeError();
4153
+ };
4154
+ var ThrowTypeError = $gOPD
4155
+ ? (function () {
4156
+ try {
4157
+ // eslint-disable-next-line no-unused-expressions, no-caller, no-restricted-properties
4158
+ arguments.callee; // IE 8 does not throw here
4159
+ return throwTypeError;
4160
+ } catch (calleeThrows) {
4161
+ try {
4162
+ // IE 8 throws on Object.getOwnPropertyDescriptor(arguments, '')
4163
+ return $gOPD(arguments, 'callee').get;
4164
+ } catch (gOPDthrows) {
4165
+ return throwTypeError;
4166
+ }
4167
+ }
4168
+ }())
4169
+ : throwTypeError;
4170
+
4171
+ var hasSymbols = __webpack_require__(/*! has-symbols */ "../../node_modules/has-symbols/index.js")();
4172
+
4173
+ var getProto = Object.getPrototypeOf || function (x) { return x.__proto__; }; // eslint-disable-line no-proto
4174
+
4175
+ var needsEval = {};
4176
+
4177
+ var TypedArray = typeof Uint8Array === 'undefined' ? undefined : getProto(Uint8Array);
4178
+
4179
+ var INTRINSICS = {
4180
+ '%AggregateError%': typeof AggregateError === 'undefined' ? undefined : AggregateError,
4181
+ '%Array%': Array,
4182
+ '%ArrayBuffer%': typeof ArrayBuffer === 'undefined' ? undefined : ArrayBuffer,
4183
+ '%ArrayIteratorPrototype%': hasSymbols ? getProto([][Symbol.iterator]()) : undefined,
4184
+ '%AsyncFromSyncIteratorPrototype%': undefined,
4185
+ '%AsyncFunction%': needsEval,
4186
+ '%AsyncGenerator%': needsEval,
4187
+ '%AsyncGeneratorFunction%': needsEval,
4188
+ '%AsyncIteratorPrototype%': needsEval,
4189
+ '%Atomics%': typeof Atomics === 'undefined' ? undefined : Atomics,
4190
+ '%BigInt%': typeof BigInt === 'undefined' ? undefined : BigInt,
4191
+ '%Boolean%': Boolean,
4192
+ '%DataView%': typeof DataView === 'undefined' ? undefined : DataView,
4193
+ '%Date%': Date,
4194
+ '%decodeURI%': decodeURI,
4195
+ '%decodeURIComponent%': decodeURIComponent,
4196
+ '%encodeURI%': encodeURI,
4197
+ '%encodeURIComponent%': encodeURIComponent,
4198
+ '%Error%': Error,
4199
+ '%eval%': eval, // eslint-disable-line no-eval
4200
+ '%EvalError%': EvalError,
4201
+ '%Float32Array%': typeof Float32Array === 'undefined' ? undefined : Float32Array,
4202
+ '%Float64Array%': typeof Float64Array === 'undefined' ? undefined : Float64Array,
4203
+ '%FinalizationRegistry%': typeof FinalizationRegistry === 'undefined' ? undefined : FinalizationRegistry,
4204
+ '%Function%': $Function,
4205
+ '%GeneratorFunction%': needsEval,
4206
+ '%Int8Array%': typeof Int8Array === 'undefined' ? undefined : Int8Array,
4207
+ '%Int16Array%': typeof Int16Array === 'undefined' ? undefined : Int16Array,
4208
+ '%Int32Array%': typeof Int32Array === 'undefined' ? undefined : Int32Array,
4209
+ '%isFinite%': isFinite,
4210
+ '%isNaN%': isNaN,
4211
+ '%IteratorPrototype%': hasSymbols ? getProto(getProto([][Symbol.iterator]())) : undefined,
4212
+ '%JSON%': typeof JSON === 'object' ? JSON : undefined,
4213
+ '%Map%': typeof Map === 'undefined' ? undefined : Map,
4214
+ '%MapIteratorPrototype%': typeof Map === 'undefined' || !hasSymbols ? undefined : getProto(new Map()[Symbol.iterator]()),
4215
+ '%Math%': Math,
4216
+ '%Number%': Number,
4217
+ '%Object%': Object,
4218
+ '%parseFloat%': parseFloat,
4219
+ '%parseInt%': parseInt,
4220
+ '%Promise%': typeof Promise === 'undefined' ? undefined : Promise,
4221
+ '%Proxy%': typeof Proxy === 'undefined' ? undefined : Proxy,
4222
+ '%RangeError%': RangeError,
4223
+ '%ReferenceError%': ReferenceError,
4224
+ '%Reflect%': typeof Reflect === 'undefined' ? undefined : Reflect,
4225
+ '%RegExp%': RegExp,
4226
+ '%Set%': typeof Set === 'undefined' ? undefined : Set,
4227
+ '%SetIteratorPrototype%': typeof Set === 'undefined' || !hasSymbols ? undefined : getProto(new Set()[Symbol.iterator]()),
4228
+ '%SharedArrayBuffer%': typeof SharedArrayBuffer === 'undefined' ? undefined : SharedArrayBuffer,
4229
+ '%String%': String,
4230
+ '%StringIteratorPrototype%': hasSymbols ? getProto(''[Symbol.iterator]()) : undefined,
4231
+ '%Symbol%': hasSymbols ? Symbol : undefined,
4232
+ '%SyntaxError%': $SyntaxError,
4233
+ '%ThrowTypeError%': ThrowTypeError,
4234
+ '%TypedArray%': TypedArray,
4235
+ '%TypeError%': $TypeError,
4236
+ '%Uint8Array%': typeof Uint8Array === 'undefined' ? undefined : Uint8Array,
4237
+ '%Uint8ClampedArray%': typeof Uint8ClampedArray === 'undefined' ? undefined : Uint8ClampedArray,
4238
+ '%Uint16Array%': typeof Uint16Array === 'undefined' ? undefined : Uint16Array,
4239
+ '%Uint32Array%': typeof Uint32Array === 'undefined' ? undefined : Uint32Array,
4240
+ '%URIError%': URIError,
4241
+ '%WeakMap%': typeof WeakMap === 'undefined' ? undefined : WeakMap,
4242
+ '%WeakRef%': typeof WeakRef === 'undefined' ? undefined : WeakRef,
4243
+ '%WeakSet%': typeof WeakSet === 'undefined' ? undefined : WeakSet
4244
+ };
4245
+
4246
+ var doEval = function doEval(name) {
4247
+ var value;
4248
+ if (name === '%AsyncFunction%') {
4249
+ value = getEvalledConstructor('async function () {}');
4250
+ } else if (name === '%GeneratorFunction%') {
4251
+ value = getEvalledConstructor('function* () {}');
4252
+ } else if (name === '%AsyncGeneratorFunction%') {
4253
+ value = getEvalledConstructor('async function* () {}');
4254
+ } else if (name === '%AsyncGenerator%') {
4255
+ var fn = doEval('%AsyncGeneratorFunction%');
4256
+ if (fn) {
4257
+ value = fn.prototype;
4258
+ }
4259
+ } else if (name === '%AsyncIteratorPrototype%') {
4260
+ var gen = doEval('%AsyncGenerator%');
4261
+ if (gen) {
4262
+ value = getProto(gen.prototype);
4263
+ }
4264
+ }
4265
+
4266
+ INTRINSICS[name] = value;
4267
+
4268
+ return value;
4269
+ };
4270
+
4271
+ var LEGACY_ALIASES = {
4272
+ '%ArrayBufferPrototype%': ['ArrayBuffer', 'prototype'],
4273
+ '%ArrayPrototype%': ['Array', 'prototype'],
4274
+ '%ArrayProto_entries%': ['Array', 'prototype', 'entries'],
4275
+ '%ArrayProto_forEach%': ['Array', 'prototype', 'forEach'],
4276
+ '%ArrayProto_keys%': ['Array', 'prototype', 'keys'],
4277
+ '%ArrayProto_values%': ['Array', 'prototype', 'values'],
4278
+ '%AsyncFunctionPrototype%': ['AsyncFunction', 'prototype'],
4279
+ '%AsyncGenerator%': ['AsyncGeneratorFunction', 'prototype'],
4280
+ '%AsyncGeneratorPrototype%': ['AsyncGeneratorFunction', 'prototype', 'prototype'],
4281
+ '%BooleanPrototype%': ['Boolean', 'prototype'],
4282
+ '%DataViewPrototype%': ['DataView', 'prototype'],
4283
+ '%DatePrototype%': ['Date', 'prototype'],
4284
+ '%ErrorPrototype%': ['Error', 'prototype'],
4285
+ '%EvalErrorPrototype%': ['EvalError', 'prototype'],
4286
+ '%Float32ArrayPrototype%': ['Float32Array', 'prototype'],
4287
+ '%Float64ArrayPrototype%': ['Float64Array', 'prototype'],
4288
+ '%FunctionPrototype%': ['Function', 'prototype'],
4289
+ '%Generator%': ['GeneratorFunction', 'prototype'],
4290
+ '%GeneratorPrototype%': ['GeneratorFunction', 'prototype', 'prototype'],
4291
+ '%Int8ArrayPrototype%': ['Int8Array', 'prototype'],
4292
+ '%Int16ArrayPrototype%': ['Int16Array', 'prototype'],
4293
+ '%Int32ArrayPrototype%': ['Int32Array', 'prototype'],
4294
+ '%JSONParse%': ['JSON', 'parse'],
4295
+ '%JSONStringify%': ['JSON', 'stringify'],
4296
+ '%MapPrototype%': ['Map', 'prototype'],
4297
+ '%NumberPrototype%': ['Number', 'prototype'],
4298
+ '%ObjectPrototype%': ['Object', 'prototype'],
4299
+ '%ObjProto_toString%': ['Object', 'prototype', 'toString'],
4300
+ '%ObjProto_valueOf%': ['Object', 'prototype', 'valueOf'],
4301
+ '%PromisePrototype%': ['Promise', 'prototype'],
4302
+ '%PromiseProto_then%': ['Promise', 'prototype', 'then'],
4303
+ '%Promise_all%': ['Promise', 'all'],
4304
+ '%Promise_reject%': ['Promise', 'reject'],
4305
+ '%Promise_resolve%': ['Promise', 'resolve'],
4306
+ '%RangeErrorPrototype%': ['RangeError', 'prototype'],
4307
+ '%ReferenceErrorPrototype%': ['ReferenceError', 'prototype'],
4308
+ '%RegExpPrototype%': ['RegExp', 'prototype'],
4309
+ '%SetPrototype%': ['Set', 'prototype'],
4310
+ '%SharedArrayBufferPrototype%': ['SharedArrayBuffer', 'prototype'],
4311
+ '%StringPrototype%': ['String', 'prototype'],
4312
+ '%SymbolPrototype%': ['Symbol', 'prototype'],
4313
+ '%SyntaxErrorPrototype%': ['SyntaxError', 'prototype'],
4314
+ '%TypedArrayPrototype%': ['TypedArray', 'prototype'],
4315
+ '%TypeErrorPrototype%': ['TypeError', 'prototype'],
4316
+ '%Uint8ArrayPrototype%': ['Uint8Array', 'prototype'],
4317
+ '%Uint8ClampedArrayPrototype%': ['Uint8ClampedArray', 'prototype'],
4318
+ '%Uint16ArrayPrototype%': ['Uint16Array', 'prototype'],
4319
+ '%Uint32ArrayPrototype%': ['Uint32Array', 'prototype'],
4320
+ '%URIErrorPrototype%': ['URIError', 'prototype'],
4321
+ '%WeakMapPrototype%': ['WeakMap', 'prototype'],
4322
+ '%WeakSetPrototype%': ['WeakSet', 'prototype']
4323
+ };
4324
+
4325
+ var bind = __webpack_require__(/*! function-bind */ "../../node_modules/function-bind/index.js");
4326
+ var hasOwn = __webpack_require__(/*! has */ "../../node_modules/has/src/index.js");
4327
+ var $concat = bind.call(Function.call, Array.prototype.concat);
4328
+ var $spliceApply = bind.call(Function.apply, Array.prototype.splice);
4329
+ var $replace = bind.call(Function.call, String.prototype.replace);
4330
+ var $strSlice = bind.call(Function.call, String.prototype.slice);
4331
+
4332
+ /* adapted from https://github.com/lodash/lodash/blob/4.17.15/dist/lodash.js#L6735-L6744 */
4333
+ var rePropName = /[^%.[\]]+|\[(?:(-?\d+(?:\.\d+)?)|(["'])((?:(?!\2)[^\\]|\\.)*?)\2)\]|(?=(?:\.|\[\])(?:\.|\[\]|%$))/g;
4334
+ var reEscapeChar = /\\(\\)?/g; /** Used to match backslashes in property paths. */
4335
+ var stringToPath = function stringToPath(string) {
4336
+ var first = $strSlice(string, 0, 1);
4337
+ var last = $strSlice(string, -1);
4338
+ if (first === '%' && last !== '%') {
4339
+ throw new $SyntaxError('invalid intrinsic syntax, expected closing `%`');
4340
+ } else if (last === '%' && first !== '%') {
4341
+ throw new $SyntaxError('invalid intrinsic syntax, expected opening `%`');
4342
+ }
4343
+ var result = [];
4344
+ $replace(string, rePropName, function (match, number, quote, subString) {
4345
+ result[result.length] = quote ? $replace(subString, reEscapeChar, '$1') : number || match;
4346
+ });
4347
+ return result;
4348
+ };
4349
+ /* end adaptation */
4350
+
4351
+ var getBaseIntrinsic = function getBaseIntrinsic(name, allowMissing) {
4352
+ var intrinsicName = name;
4353
+ var alias;
4354
+ if (hasOwn(LEGACY_ALIASES, intrinsicName)) {
4355
+ alias = LEGACY_ALIASES[intrinsicName];
4356
+ intrinsicName = '%' + alias[0] + '%';
4357
+ }
4358
+
4359
+ if (hasOwn(INTRINSICS, intrinsicName)) {
4360
+ var value = INTRINSICS[intrinsicName];
4361
+ if (value === needsEval) {
4362
+ value = doEval(intrinsicName);
4363
+ }
4364
+ if (typeof value === 'undefined' && !allowMissing) {
4365
+ throw new $TypeError('intrinsic ' + name + ' exists, but is not available. Please file an issue!');
4366
+ }
4367
+
4368
+ return {
4369
+ alias: alias,
4370
+ name: intrinsicName,
4371
+ value: value
4372
+ };
4373
+ }
4374
+
4375
+ throw new $SyntaxError('intrinsic ' + name + ' does not exist!');
4376
+ };
4377
+
4378
+ module.exports = function GetIntrinsic(name, allowMissing) {
4379
+ if (typeof name !== 'string' || name.length === 0) {
4380
+ throw new $TypeError('intrinsic name must be a non-empty string');
4381
+ }
4382
+ if (arguments.length > 1 && typeof allowMissing !== 'boolean') {
4383
+ throw new $TypeError('"allowMissing" argument must be a boolean');
4384
+ }
4385
+
4386
+ var parts = stringToPath(name);
4387
+ var intrinsicBaseName = parts.length > 0 ? parts[0] : '';
4388
+
4389
+ var intrinsic = getBaseIntrinsic('%' + intrinsicBaseName + '%', allowMissing);
4390
+ var intrinsicRealName = intrinsic.name;
4391
+ var value = intrinsic.value;
4392
+ var skipFurtherCaching = false;
4393
+
4394
+ var alias = intrinsic.alias;
4395
+ if (alias) {
4396
+ intrinsicBaseName = alias[0];
4397
+ $spliceApply(parts, $concat([0, 1], alias));
4398
+ }
4399
+
4400
+ for (var i = 1, isOwn = true; i < parts.length; i += 1) {
4401
+ var part = parts[i];
4402
+ var first = $strSlice(part, 0, 1);
4403
+ var last = $strSlice(part, -1);
4404
+ if (
4405
+ (
4406
+ (first === '"' || first === "'" || first === '`')
4407
+ || (last === '"' || last === "'" || last === '`')
4408
+ )
4409
+ && first !== last
4410
+ ) {
4411
+ throw new $SyntaxError('property names with quotes must have matching quotes');
4412
+ }
4413
+ if (part === 'constructor' || !isOwn) {
4414
+ skipFurtherCaching = true;
4415
+ }
4416
+
4417
+ intrinsicBaseName += '.' + part;
4418
+ intrinsicRealName = '%' + intrinsicBaseName + '%';
4419
+
4420
+ if (hasOwn(INTRINSICS, intrinsicRealName)) {
4421
+ value = INTRINSICS[intrinsicRealName];
4422
+ } else if (value != null) {
4423
+ if (!(part in value)) {
4424
+ if (!allowMissing) {
4425
+ throw new $TypeError('base intrinsic for ' + name + ' exists, but the property is not available.');
4426
+ }
4427
+ return void undefined;
4428
+ }
4429
+ if ($gOPD && (i + 1) >= parts.length) {
4430
+ var desc = $gOPD(value, part);
4431
+ isOwn = !!desc;
4432
+
4433
+ // By convention, when a data property is converted to an accessor
4434
+ // property to emulate a data property that does not suffer from
4435
+ // the override mistake, that accessor's getter is marked with
4436
+ // an `originalValue` property. Here, when we detect this, we
4437
+ // uphold the illusion by pretending to see that original data
4438
+ // property, i.e., returning the value rather than the getter
4439
+ // itself.
4440
+ if (isOwn && 'get' in desc && !('originalValue' in desc.get)) {
4441
+ value = desc.get;
4442
+ } else {
4443
+ value = value[part];
4444
+ }
4445
+ } else {
4446
+ isOwn = hasOwn(value, part);
4447
+ value = value[part];
4448
+ }
4449
+
4450
+ if (isOwn && !skipFurtherCaching) {
4451
+ INTRINSICS[intrinsicRealName] = value;
4452
+ }
4453
+ }
4454
+ }
4455
+ return value;
4456
+ };
4457
+
4458
+
4459
+ /***/ }),
4460
+
4461
+ /***/ "../../node_modules/has-symbols/index.js":
4462
+ /*!***********************************************!*\
4463
+ !*** ../../node_modules/has-symbols/index.js ***!
4464
+ \***********************************************/
4465
+ /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
4466
+
4467
+ "use strict";
4468
+
4469
+
4470
+ var origSymbol = typeof Symbol !== 'undefined' && Symbol;
4471
+ var hasSymbolSham = __webpack_require__(/*! ./shams */ "../../node_modules/has-symbols/shams.js");
4472
+
4473
+ module.exports = function hasNativeSymbols() {
4474
+ if (typeof origSymbol !== 'function') { return false; }
4475
+ if (typeof Symbol !== 'function') { return false; }
4476
+ if (typeof origSymbol('foo') !== 'symbol') { return false; }
4477
+ if (typeof Symbol('bar') !== 'symbol') { return false; }
4478
+
4479
+ return hasSymbolSham();
4480
+ };
4481
+
4482
+
4483
+ /***/ }),
4484
+
4485
+ /***/ "../../node_modules/has-symbols/shams.js":
4486
+ /*!***********************************************!*\
4487
+ !*** ../../node_modules/has-symbols/shams.js ***!
4488
+ \***********************************************/
4489
+ /***/ (function(module) {
4490
+
4491
+ "use strict";
4492
+
4493
+
4494
+ /* eslint complexity: [2, 18], max-statements: [2, 33] */
4495
+ module.exports = function hasSymbols() {
4496
+ if (typeof Symbol !== 'function' || typeof Object.getOwnPropertySymbols !== 'function') { return false; }
4497
+ if (typeof Symbol.iterator === 'symbol') { return true; }
4498
+
4499
+ var obj = {};
4500
+ var sym = Symbol('test');
4501
+ var symObj = Object(sym);
4502
+ if (typeof sym === 'string') { return false; }
4503
+
4504
+ if (Object.prototype.toString.call(sym) !== '[object Symbol]') { return false; }
4505
+ if (Object.prototype.toString.call(symObj) !== '[object Symbol]') { return false; }
4506
+
4507
+ // temp disabled per https://github.com/ljharb/object.assign/issues/17
4508
+ // if (sym instanceof Symbol) { return false; }
4509
+ // temp disabled per https://github.com/WebReflection/get-own-property-symbols/issues/4
4510
+ // if (!(symObj instanceof Symbol)) { return false; }
4511
+
4512
+ // if (typeof Symbol.prototype.toString !== 'function') { return false; }
4513
+ // if (String(sym) !== Symbol.prototype.toString.call(sym)) { return false; }
4514
+
4515
+ var symVal = 42;
4516
+ obj[sym] = symVal;
4517
+ for (sym in obj) { return false; } // eslint-disable-line no-restricted-syntax, no-unreachable-loop
4518
+ if (typeof Object.keys === 'function' && Object.keys(obj).length !== 0) { return false; }
4519
+
4520
+ if (typeof Object.getOwnPropertyNames === 'function' && Object.getOwnPropertyNames(obj).length !== 0) { return false; }
4521
+
4522
+ var syms = Object.getOwnPropertySymbols(obj);
4523
+ if (syms.length !== 1 || syms[0] !== sym) { return false; }
4524
+
4525
+ if (!Object.prototype.propertyIsEnumerable.call(obj, sym)) { return false; }
4526
+
4527
+ if (typeof Object.getOwnPropertyDescriptor === 'function') {
4528
+ var descriptor = Object.getOwnPropertyDescriptor(obj, sym);
4529
+ if (descriptor.value !== symVal || descriptor.enumerable !== true) { return false; }
4530
+ }
4531
+
4532
+ return true;
4533
+ };
4534
+
4535
+
4536
+ /***/ }),
4537
+
4538
+ /***/ "../../node_modules/has/src/index.js":
4539
+ /*!*******************************************!*\
4540
+ !*** ../../node_modules/has/src/index.js ***!
4541
+ \*******************************************/
4542
+ /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
4543
+
4544
+ "use strict";
4545
+
4546
+
4547
+ var bind = __webpack_require__(/*! function-bind */ "../../node_modules/function-bind/index.js");
4548
+
4549
+ module.exports = bind.call(Function.call, Object.prototype.hasOwnProperty);
4550
+
3921
4551
 
3922
4552
  /***/ }),
3923
4553
 
3924
4554
  /***/ "../../node_modules/ms/index.js":
3925
- /*!**************************************!*
4555
+ /*!**************************************!*\
3926
4556
  !*** ../../node_modules/ms/index.js ***!
3927
4557
  \**************************************/
3928
4558
  /***/ (function(module) {
@@ -4091,13 +4721,534 @@ function plural(ms, msAbs, n, name) {
4091
4721
  }
4092
4722
 
4093
4723
 
4724
+ /***/ }),
4725
+
4726
+ /***/ "../../node_modules/object-inspect/index.js":
4727
+ /*!**************************************************!*\
4728
+ !*** ../../node_modules/object-inspect/index.js ***!
4729
+ \**************************************************/
4730
+ /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
4731
+
4732
+ var hasMap = typeof Map === 'function' && Map.prototype;
4733
+ var mapSizeDescriptor = Object.getOwnPropertyDescriptor && hasMap ? Object.getOwnPropertyDescriptor(Map.prototype, 'size') : null;
4734
+ var mapSize = hasMap && mapSizeDescriptor && typeof mapSizeDescriptor.get === 'function' ? mapSizeDescriptor.get : null;
4735
+ var mapForEach = hasMap && Map.prototype.forEach;
4736
+ var hasSet = typeof Set === 'function' && Set.prototype;
4737
+ var setSizeDescriptor = Object.getOwnPropertyDescriptor && hasSet ? Object.getOwnPropertyDescriptor(Set.prototype, 'size') : null;
4738
+ var setSize = hasSet && setSizeDescriptor && typeof setSizeDescriptor.get === 'function' ? setSizeDescriptor.get : null;
4739
+ var setForEach = hasSet && Set.prototype.forEach;
4740
+ var hasWeakMap = typeof WeakMap === 'function' && WeakMap.prototype;
4741
+ var weakMapHas = hasWeakMap ? WeakMap.prototype.has : null;
4742
+ var hasWeakSet = typeof WeakSet === 'function' && WeakSet.prototype;
4743
+ var weakSetHas = hasWeakSet ? WeakSet.prototype.has : null;
4744
+ var hasWeakRef = typeof WeakRef === 'function' && WeakRef.prototype;
4745
+ var weakRefDeref = hasWeakRef ? WeakRef.prototype.deref : null;
4746
+ var booleanValueOf = Boolean.prototype.valueOf;
4747
+ var objectToString = Object.prototype.toString;
4748
+ var functionToString = Function.prototype.toString;
4749
+ var $match = String.prototype.match;
4750
+ var $slice = String.prototype.slice;
4751
+ var $replace = String.prototype.replace;
4752
+ var $toUpperCase = String.prototype.toUpperCase;
4753
+ var $toLowerCase = String.prototype.toLowerCase;
4754
+ var $test = RegExp.prototype.test;
4755
+ var $concat = Array.prototype.concat;
4756
+ var $join = Array.prototype.join;
4757
+ var $arrSlice = Array.prototype.slice;
4758
+ var $floor = Math.floor;
4759
+ var bigIntValueOf = typeof BigInt === 'function' ? BigInt.prototype.valueOf : null;
4760
+ var gOPS = Object.getOwnPropertySymbols;
4761
+ var symToString = typeof Symbol === 'function' && typeof Symbol.iterator === 'symbol' ? Symbol.prototype.toString : null;
4762
+ var hasShammedSymbols = typeof Symbol === 'function' && typeof Symbol.iterator === 'object';
4763
+ // ie, `has-tostringtag/shams
4764
+ var toStringTag = typeof Symbol === 'function' && Symbol.toStringTag && (typeof Symbol.toStringTag === hasShammedSymbols ? 'object' : 'symbol')
4765
+ ? Symbol.toStringTag
4766
+ : null;
4767
+ var isEnumerable = Object.prototype.propertyIsEnumerable;
4768
+
4769
+ var gPO = (typeof Reflect === 'function' ? Reflect.getPrototypeOf : Object.getPrototypeOf) || (
4770
+ [].__proto__ === Array.prototype // eslint-disable-line no-proto
4771
+ ? function (O) {
4772
+ return O.__proto__; // eslint-disable-line no-proto
4773
+ }
4774
+ : null
4775
+ );
4776
+
4777
+ function addNumericSeparator(num, str) {
4778
+ if (
4779
+ num === Infinity
4780
+ || num === -Infinity
4781
+ || num !== num
4782
+ || (num && num > -1000 && num < 1000)
4783
+ || $test.call(/e/, str)
4784
+ ) {
4785
+ return str;
4786
+ }
4787
+ var sepRegex = /[0-9](?=(?:[0-9]{3})+(?![0-9]))/g;
4788
+ if (typeof num === 'number') {
4789
+ var int = num < 0 ? -$floor(-num) : $floor(num); // trunc(num)
4790
+ if (int !== num) {
4791
+ var intStr = String(int);
4792
+ var dec = $slice.call(str, intStr.length + 1);
4793
+ return $replace.call(intStr, sepRegex, '$&_') + '.' + $replace.call($replace.call(dec, /([0-9]{3})/g, '$&_'), /_$/, '');
4794
+ }
4795
+ }
4796
+ return $replace.call(str, sepRegex, '$&_');
4797
+ }
4798
+
4799
+ var inspectCustom = (__webpack_require__(/*! ./util.inspect */ "?c95a").custom);
4800
+ var inspectSymbol = inspectCustom && isSymbol(inspectCustom) ? inspectCustom : null;
4801
+
4802
+ module.exports = function inspect_(obj, options, depth, seen) {
4803
+ var opts = options || {};
4804
+
4805
+ if (has(opts, 'quoteStyle') && (opts.quoteStyle !== 'single' && opts.quoteStyle !== 'double')) {
4806
+ throw new TypeError('option "quoteStyle" must be "single" or "double"');
4807
+ }
4808
+ if (
4809
+ has(opts, 'maxStringLength') && (typeof opts.maxStringLength === 'number'
4810
+ ? opts.maxStringLength < 0 && opts.maxStringLength !== Infinity
4811
+ : opts.maxStringLength !== null
4812
+ )
4813
+ ) {
4814
+ throw new TypeError('option "maxStringLength", if provided, must be a positive integer, Infinity, or `null`');
4815
+ }
4816
+ var customInspect = has(opts, 'customInspect') ? opts.customInspect : true;
4817
+ if (typeof customInspect !== 'boolean' && customInspect !== 'symbol') {
4818
+ throw new TypeError('option "customInspect", if provided, must be `true`, `false`, or `\'symbol\'`');
4819
+ }
4820
+
4821
+ if (
4822
+ has(opts, 'indent')
4823
+ && opts.indent !== null
4824
+ && opts.indent !== '\t'
4825
+ && !(parseInt(opts.indent, 10) === opts.indent && opts.indent > 0)
4826
+ ) {
4827
+ throw new TypeError('option "indent" must be "\\t", an integer > 0, or `null`');
4828
+ }
4829
+ if (has(opts, 'numericSeparator') && typeof opts.numericSeparator !== 'boolean') {
4830
+ throw new TypeError('option "numericSeparator", if provided, must be `true` or `false`');
4831
+ }
4832
+ var numericSeparator = opts.numericSeparator;
4833
+
4834
+ if (typeof obj === 'undefined') {
4835
+ return 'undefined';
4836
+ }
4837
+ if (obj === null) {
4838
+ return 'null';
4839
+ }
4840
+ if (typeof obj === 'boolean') {
4841
+ return obj ? 'true' : 'false';
4842
+ }
4843
+
4844
+ if (typeof obj === 'string') {
4845
+ return inspectString(obj, opts);
4846
+ }
4847
+ if (typeof obj === 'number') {
4848
+ if (obj === 0) {
4849
+ return Infinity / obj > 0 ? '0' : '-0';
4850
+ }
4851
+ var str = String(obj);
4852
+ return numericSeparator ? addNumericSeparator(obj, str) : str;
4853
+ }
4854
+ if (typeof obj === 'bigint') {
4855
+ var bigIntStr = String(obj) + 'n';
4856
+ return numericSeparator ? addNumericSeparator(obj, bigIntStr) : bigIntStr;
4857
+ }
4858
+
4859
+ var maxDepth = typeof opts.depth === 'undefined' ? 5 : opts.depth;
4860
+ if (typeof depth === 'undefined') { depth = 0; }
4861
+ if (depth >= maxDepth && maxDepth > 0 && typeof obj === 'object') {
4862
+ return isArray(obj) ? '[Array]' : '[Object]';
4863
+ }
4864
+
4865
+ var indent = getIndent(opts, depth);
4866
+
4867
+ if (typeof seen === 'undefined') {
4868
+ seen = [];
4869
+ } else if (indexOf(seen, obj) >= 0) {
4870
+ return '[Circular]';
4871
+ }
4872
+
4873
+ function inspect(value, from, noIndent) {
4874
+ if (from) {
4875
+ seen = $arrSlice.call(seen);
4876
+ seen.push(from);
4877
+ }
4878
+ if (noIndent) {
4879
+ var newOpts = {
4880
+ depth: opts.depth
4881
+ };
4882
+ if (has(opts, 'quoteStyle')) {
4883
+ newOpts.quoteStyle = opts.quoteStyle;
4884
+ }
4885
+ return inspect_(value, newOpts, depth + 1, seen);
4886
+ }
4887
+ return inspect_(value, opts, depth + 1, seen);
4888
+ }
4889
+
4890
+ if (typeof obj === 'function') {
4891
+ var name = nameOf(obj);
4892
+ var keys = arrObjKeys(obj, inspect);
4893
+ return '[Function' + (name ? ': ' + name : ' (anonymous)') + ']' + (keys.length > 0 ? ' { ' + $join.call(keys, ', ') + ' }' : '');
4894
+ }
4895
+ if (isSymbol(obj)) {
4896
+ var symString = hasShammedSymbols ? $replace.call(String(obj), /^(Symbol\(.*\))_[^)]*$/, '$1') : symToString.call(obj);
4897
+ return typeof obj === 'object' && !hasShammedSymbols ? markBoxed(symString) : symString;
4898
+ }
4899
+ if (isElement(obj)) {
4900
+ var s = '<' + $toLowerCase.call(String(obj.nodeName));
4901
+ var attrs = obj.attributes || [];
4902
+ for (var i = 0; i < attrs.length; i++) {
4903
+ s += ' ' + attrs[i].name + '=' + wrapQuotes(quote(attrs[i].value), 'double', opts);
4904
+ }
4905
+ s += '>';
4906
+ if (obj.childNodes && obj.childNodes.length) { s += '...'; }
4907
+ s += '</' + $toLowerCase.call(String(obj.nodeName)) + '>';
4908
+ return s;
4909
+ }
4910
+ if (isArray(obj)) {
4911
+ if (obj.length === 0) { return '[]'; }
4912
+ var xs = arrObjKeys(obj, inspect);
4913
+ if (indent && !singleLineValues(xs)) {
4914
+ return '[' + indentedJoin(xs, indent) + ']';
4915
+ }
4916
+ return '[ ' + $join.call(xs, ', ') + ' ]';
4917
+ }
4918
+ if (isError(obj)) {
4919
+ var parts = arrObjKeys(obj, inspect);
4920
+ if ('cause' in obj && !isEnumerable.call(obj, 'cause')) {
4921
+ return '{ [' + String(obj) + '] ' + $join.call($concat.call('[cause]: ' + inspect(obj.cause), parts), ', ') + ' }';
4922
+ }
4923
+ if (parts.length === 0) { return '[' + String(obj) + ']'; }
4924
+ return '{ [' + String(obj) + '] ' + $join.call(parts, ', ') + ' }';
4925
+ }
4926
+ if (typeof obj === 'object' && customInspect) {
4927
+ if (inspectSymbol && typeof obj[inspectSymbol] === 'function') {
4928
+ return obj[inspectSymbol]();
4929
+ } else if (customInspect !== 'symbol' && typeof obj.inspect === 'function') {
4930
+ return obj.inspect();
4931
+ }
4932
+ }
4933
+ if (isMap(obj)) {
4934
+ var mapParts = [];
4935
+ mapForEach.call(obj, function (value, key) {
4936
+ mapParts.push(inspect(key, obj, true) + ' => ' + inspect(value, obj));
4937
+ });
4938
+ return collectionOf('Map', mapSize.call(obj), mapParts, indent);
4939
+ }
4940
+ if (isSet(obj)) {
4941
+ var setParts = [];
4942
+ setForEach.call(obj, function (value) {
4943
+ setParts.push(inspect(value, obj));
4944
+ });
4945
+ return collectionOf('Set', setSize.call(obj), setParts, indent);
4946
+ }
4947
+ if (isWeakMap(obj)) {
4948
+ return weakCollectionOf('WeakMap');
4949
+ }
4950
+ if (isWeakSet(obj)) {
4951
+ return weakCollectionOf('WeakSet');
4952
+ }
4953
+ if (isWeakRef(obj)) {
4954
+ return weakCollectionOf('WeakRef');
4955
+ }
4956
+ if (isNumber(obj)) {
4957
+ return markBoxed(inspect(Number(obj)));
4958
+ }
4959
+ if (isBigInt(obj)) {
4960
+ return markBoxed(inspect(bigIntValueOf.call(obj)));
4961
+ }
4962
+ if (isBoolean(obj)) {
4963
+ return markBoxed(booleanValueOf.call(obj));
4964
+ }
4965
+ if (isString(obj)) {
4966
+ return markBoxed(inspect(String(obj)));
4967
+ }
4968
+ if (!isDate(obj) && !isRegExp(obj)) {
4969
+ var ys = arrObjKeys(obj, inspect);
4970
+ var isPlainObject = gPO ? gPO(obj) === Object.prototype : obj instanceof Object || obj.constructor === Object;
4971
+ var protoTag = obj instanceof Object ? '' : 'null prototype';
4972
+ var stringTag = !isPlainObject && toStringTag && Object(obj) === obj && toStringTag in obj ? $slice.call(toStr(obj), 8, -1) : protoTag ? 'Object' : '';
4973
+ var constructorTag = isPlainObject || typeof obj.constructor !== 'function' ? '' : obj.constructor.name ? obj.constructor.name + ' ' : '';
4974
+ var tag = constructorTag + (stringTag || protoTag ? '[' + $join.call($concat.call([], stringTag || [], protoTag || []), ': ') + '] ' : '');
4975
+ if (ys.length === 0) { return tag + '{}'; }
4976
+ if (indent) {
4977
+ return tag + '{' + indentedJoin(ys, indent) + '}';
4978
+ }
4979
+ return tag + '{ ' + $join.call(ys, ', ') + ' }';
4980
+ }
4981
+ return String(obj);
4982
+ };
4983
+
4984
+ function wrapQuotes(s, defaultStyle, opts) {
4985
+ var quoteChar = (opts.quoteStyle || defaultStyle) === 'double' ? '"' : "'";
4986
+ return quoteChar + s + quoteChar;
4987
+ }
4988
+
4989
+ function quote(s) {
4990
+ return $replace.call(String(s), /"/g, '&quot;');
4991
+ }
4992
+
4993
+ function isArray(obj) { return toStr(obj) === '[object Array]' && (!toStringTag || !(typeof obj === 'object' && toStringTag in obj)); }
4994
+ function isDate(obj) { return toStr(obj) === '[object Date]' && (!toStringTag || !(typeof obj === 'object' && toStringTag in obj)); }
4995
+ function isRegExp(obj) { return toStr(obj) === '[object RegExp]' && (!toStringTag || !(typeof obj === 'object' && toStringTag in obj)); }
4996
+ function isError(obj) { return toStr(obj) === '[object Error]' && (!toStringTag || !(typeof obj === 'object' && toStringTag in obj)); }
4997
+ function isString(obj) { return toStr(obj) === '[object String]' && (!toStringTag || !(typeof obj === 'object' && toStringTag in obj)); }
4998
+ function isNumber(obj) { return toStr(obj) === '[object Number]' && (!toStringTag || !(typeof obj === 'object' && toStringTag in obj)); }
4999
+ function isBoolean(obj) { return toStr(obj) === '[object Boolean]' && (!toStringTag || !(typeof obj === 'object' && toStringTag in obj)); }
5000
+
5001
+ // Symbol and BigInt do have Symbol.toStringTag by spec, so that can't be used to eliminate false positives
5002
+ function isSymbol(obj) {
5003
+ if (hasShammedSymbols) {
5004
+ return obj && typeof obj === 'object' && obj instanceof Symbol;
5005
+ }
5006
+ if (typeof obj === 'symbol') {
5007
+ return true;
5008
+ }
5009
+ if (!obj || typeof obj !== 'object' || !symToString) {
5010
+ return false;
5011
+ }
5012
+ try {
5013
+ symToString.call(obj);
5014
+ return true;
5015
+ } catch (e) {}
5016
+ return false;
5017
+ }
5018
+
5019
+ function isBigInt(obj) {
5020
+ if (!obj || typeof obj !== 'object' || !bigIntValueOf) {
5021
+ return false;
5022
+ }
5023
+ try {
5024
+ bigIntValueOf.call(obj);
5025
+ return true;
5026
+ } catch (e) {}
5027
+ return false;
5028
+ }
5029
+
5030
+ var hasOwn = Object.prototype.hasOwnProperty || function (key) { return key in this; };
5031
+ function has(obj, key) {
5032
+ return hasOwn.call(obj, key);
5033
+ }
5034
+
5035
+ function toStr(obj) {
5036
+ return objectToString.call(obj);
5037
+ }
5038
+
5039
+ function nameOf(f) {
5040
+ if (f.name) { return f.name; }
5041
+ var m = $match.call(functionToString.call(f), /^function\s*([\w$]+)/);
5042
+ if (m) { return m[1]; }
5043
+ return null;
5044
+ }
5045
+
5046
+ function indexOf(xs, x) {
5047
+ if (xs.indexOf) { return xs.indexOf(x); }
5048
+ for (var i = 0, l = xs.length; i < l; i++) {
5049
+ if (xs[i] === x) { return i; }
5050
+ }
5051
+ return -1;
5052
+ }
5053
+
5054
+ function isMap(x) {
5055
+ if (!mapSize || !x || typeof x !== 'object') {
5056
+ return false;
5057
+ }
5058
+ try {
5059
+ mapSize.call(x);
5060
+ try {
5061
+ setSize.call(x);
5062
+ } catch (s) {
5063
+ return true;
5064
+ }
5065
+ return x instanceof Map; // core-js workaround, pre-v2.5.0
5066
+ } catch (e) {}
5067
+ return false;
5068
+ }
5069
+
5070
+ function isWeakMap(x) {
5071
+ if (!weakMapHas || !x || typeof x !== 'object') {
5072
+ return false;
5073
+ }
5074
+ try {
5075
+ weakMapHas.call(x, weakMapHas);
5076
+ try {
5077
+ weakSetHas.call(x, weakSetHas);
5078
+ } catch (s) {
5079
+ return true;
5080
+ }
5081
+ return x instanceof WeakMap; // core-js workaround, pre-v2.5.0
5082
+ } catch (e) {}
5083
+ return false;
5084
+ }
5085
+
5086
+ function isWeakRef(x) {
5087
+ if (!weakRefDeref || !x || typeof x !== 'object') {
5088
+ return false;
5089
+ }
5090
+ try {
5091
+ weakRefDeref.call(x);
5092
+ return true;
5093
+ } catch (e) {}
5094
+ return false;
5095
+ }
5096
+
5097
+ function isSet(x) {
5098
+ if (!setSize || !x || typeof x !== 'object') {
5099
+ return false;
5100
+ }
5101
+ try {
5102
+ setSize.call(x);
5103
+ try {
5104
+ mapSize.call(x);
5105
+ } catch (m) {
5106
+ return true;
5107
+ }
5108
+ return x instanceof Set; // core-js workaround, pre-v2.5.0
5109
+ } catch (e) {}
5110
+ return false;
5111
+ }
5112
+
5113
+ function isWeakSet(x) {
5114
+ if (!weakSetHas || !x || typeof x !== 'object') {
5115
+ return false;
5116
+ }
5117
+ try {
5118
+ weakSetHas.call(x, weakSetHas);
5119
+ try {
5120
+ weakMapHas.call(x, weakMapHas);
5121
+ } catch (s) {
5122
+ return true;
5123
+ }
5124
+ return x instanceof WeakSet; // core-js workaround, pre-v2.5.0
5125
+ } catch (e) {}
5126
+ return false;
5127
+ }
5128
+
5129
+ function isElement(x) {
5130
+ if (!x || typeof x !== 'object') { return false; }
5131
+ if (typeof HTMLElement !== 'undefined' && x instanceof HTMLElement) {
5132
+ return true;
5133
+ }
5134
+ return typeof x.nodeName === 'string' && typeof x.getAttribute === 'function';
5135
+ }
5136
+
5137
+ function inspectString(str, opts) {
5138
+ if (str.length > opts.maxStringLength) {
5139
+ var remaining = str.length - opts.maxStringLength;
5140
+ var trailer = '... ' + remaining + ' more character' + (remaining > 1 ? 's' : '');
5141
+ return inspectString($slice.call(str, 0, opts.maxStringLength), opts) + trailer;
5142
+ }
5143
+ // eslint-disable-next-line no-control-regex
5144
+ var s = $replace.call($replace.call(str, /(['\\])/g, '\\$1'), /[\x00-\x1f]/g, lowbyte);
5145
+ return wrapQuotes(s, 'single', opts);
5146
+ }
5147
+
5148
+ function lowbyte(c) {
5149
+ var n = c.charCodeAt(0);
5150
+ var x = {
5151
+ 8: 'b',
5152
+ 9: 't',
5153
+ 10: 'n',
5154
+ 12: 'f',
5155
+ 13: 'r'
5156
+ }[n];
5157
+ if (x) { return '\\' + x; }
5158
+ return '\\x' + (n < 0x10 ? '0' : '') + $toUpperCase.call(n.toString(16));
5159
+ }
5160
+
5161
+ function markBoxed(str) {
5162
+ return 'Object(' + str + ')';
5163
+ }
5164
+
5165
+ function weakCollectionOf(type) {
5166
+ return type + ' { ? }';
5167
+ }
5168
+
5169
+ function collectionOf(type, size, entries, indent) {
5170
+ var joinedEntries = indent ? indentedJoin(entries, indent) : $join.call(entries, ', ');
5171
+ return type + ' (' + size + ') {' + joinedEntries + '}';
5172
+ }
5173
+
5174
+ function singleLineValues(xs) {
5175
+ for (var i = 0; i < xs.length; i++) {
5176
+ if (indexOf(xs[i], '\n') >= 0) {
5177
+ return false;
5178
+ }
5179
+ }
5180
+ return true;
5181
+ }
5182
+
5183
+ function getIndent(opts, depth) {
5184
+ var baseIndent;
5185
+ if (opts.indent === '\t') {
5186
+ baseIndent = '\t';
5187
+ } else if (typeof opts.indent === 'number' && opts.indent > 0) {
5188
+ baseIndent = $join.call(Array(opts.indent + 1), ' ');
5189
+ } else {
5190
+ return null;
5191
+ }
5192
+ return {
5193
+ base: baseIndent,
5194
+ prev: $join.call(Array(depth + 1), baseIndent)
5195
+ };
5196
+ }
5197
+
5198
+ function indentedJoin(xs, indent) {
5199
+ if (xs.length === 0) { return ''; }
5200
+ var lineJoiner = '\n' + indent.prev + indent.base;
5201
+ return lineJoiner + $join.call(xs, ',' + lineJoiner) + '\n' + indent.prev;
5202
+ }
5203
+
5204
+ function arrObjKeys(obj, inspect) {
5205
+ var isArr = isArray(obj);
5206
+ var xs = [];
5207
+ if (isArr) {
5208
+ xs.length = obj.length;
5209
+ for (var i = 0; i < obj.length; i++) {
5210
+ xs[i] = has(obj, i) ? inspect(obj[i], obj) : '';
5211
+ }
5212
+ }
5213
+ var syms = typeof gOPS === 'function' ? gOPS(obj) : [];
5214
+ var symMap;
5215
+ if (hasShammedSymbols) {
5216
+ symMap = {};
5217
+ for (var k = 0; k < syms.length; k++) {
5218
+ symMap['$' + syms[k]] = syms[k];
5219
+ }
5220
+ }
5221
+
5222
+ for (var key in obj) { // eslint-disable-line no-restricted-syntax
5223
+ if (!has(obj, key)) { continue; } // eslint-disable-line no-restricted-syntax, no-continue
5224
+ if (isArr && String(Number(key)) === key && key < obj.length) { continue; } // eslint-disable-line no-restricted-syntax, no-continue
5225
+ if (hasShammedSymbols && symMap['$' + key] instanceof Symbol) {
5226
+ // this is to prevent shammed Symbols, which are stored as strings, from being included in the string key section
5227
+ continue; // eslint-disable-line no-restricted-syntax, no-continue
5228
+ } else if ($test.call(/[^\w$]/, key)) {
5229
+ xs.push(inspect(key, obj) + ': ' + inspect(obj[key], obj));
5230
+ } else {
5231
+ xs.push(key + ': ' + inspect(obj[key], obj));
5232
+ }
5233
+ }
5234
+ if (typeof gOPS === 'function') {
5235
+ for (var j = 0; j < syms.length; j++) {
5236
+ if (isEnumerable.call(obj, syms[j])) {
5237
+ xs.push('[' + inspect(syms[j]) + ']: ' + inspect(obj[syms[j]], obj));
5238
+ }
5239
+ }
5240
+ }
5241
+ return xs;
5242
+ }
5243
+
5244
+
4094
5245
  /***/ }),
4095
5246
 
4096
5247
  /***/ "../../node_modules/qs/lib/formats.js":
4097
- /*!********************************************!*
5248
+ /*!********************************************!*\
4098
5249
  !*** ../../node_modules/qs/lib/formats.js ***!
4099
5250
  \********************************************/
4100
- /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
5251
+ /***/ (function(module) {
4101
5252
 
4102
5253
  "use strict";
4103
5254
 
@@ -4105,33 +5256,30 @@ function plural(ms, msAbs, n, name) {
4105
5256
  var replace = String.prototype.replace;
4106
5257
  var percentTwenties = /%20/g;
4107
5258
 
4108
- var util = __webpack_require__(/*! ./utils */ "../../node_modules/qs/lib/utils.js");
4109
-
4110
5259
  var Format = {
4111
5260
  RFC1738: 'RFC1738',
4112
5261
  RFC3986: 'RFC3986'
4113
5262
  };
4114
5263
 
4115
- module.exports = util.assign(
4116
- {
4117
- 'default': Format.RFC3986,
4118
- formatters: {
4119
- RFC1738: function (value) {
4120
- return replace.call(value, percentTwenties, '+');
4121
- },
4122
- RFC3986: function (value) {
4123
- return String(value);
4124
- }
5264
+ module.exports = {
5265
+ 'default': Format.RFC3986,
5266
+ formatters: {
5267
+ RFC1738: function (value) {
5268
+ return replace.call(value, percentTwenties, '+');
5269
+ },
5270
+ RFC3986: function (value) {
5271
+ return String(value);
4125
5272
  }
4126
5273
  },
4127
- Format
4128
- );
5274
+ RFC1738: Format.RFC1738,
5275
+ RFC3986: Format.RFC3986
5276
+ };
4129
5277
 
4130
5278
 
4131
5279
  /***/ }),
4132
5280
 
4133
5281
  /***/ "../../node_modules/qs/lib/index.js":
4134
- /*!******************************************!*
5282
+ /*!******************************************!*\
4135
5283
  !*** ../../node_modules/qs/lib/index.js ***!
4136
5284
  \******************************************/
4137
5285
  /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
@@ -4153,7 +5301,7 @@ module.exports = {
4153
5301
  /***/ }),
4154
5302
 
4155
5303
  /***/ "../../node_modules/qs/lib/parse.js":
4156
- /*!******************************************!*
5304
+ /*!******************************************!*\
4157
5305
  !*** ../../node_modules/qs/lib/parse.js ***!
4158
5306
  \******************************************/
4159
5307
  /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
@@ -4169,6 +5317,7 @@ var isArray = Array.isArray;
4169
5317
  var defaults = {
4170
5318
  allowDots: false,
4171
5319
  allowPrototypes: false,
5320
+ allowSparse: false,
4172
5321
  arrayLimit: 20,
4173
5322
  charset: 'utf-8',
4174
5323
  charsetSentinel: false,
@@ -4301,7 +5450,7 @@ var parseObject = function (chain, val, options, valuesParsed) {
4301
5450
  }
4302
5451
  }
4303
5452
 
4304
- leaf = obj; // eslint-disable-line no-param-reassign
5453
+ leaf = obj;
4305
5454
  }
4306
5455
 
4307
5456
  return leaf;
@@ -4378,6 +5527,7 @@ var normalizeParseOptions = function normalizeParseOptions(opts) {
4378
5527
  return {
4379
5528
  allowDots: typeof opts.allowDots === 'undefined' ? defaults.allowDots : !!opts.allowDots,
4380
5529
  allowPrototypes: typeof opts.allowPrototypes === 'boolean' ? opts.allowPrototypes : defaults.allowPrototypes,
5530
+ allowSparse: typeof opts.allowSparse === 'boolean' ? opts.allowSparse : defaults.allowSparse,
4381
5531
  arrayLimit: typeof opts.arrayLimit === 'number' ? opts.arrayLimit : defaults.arrayLimit,
4382
5532
  charset: charset,
4383
5533
  charsetSentinel: typeof opts.charsetSentinel === 'boolean' ? opts.charsetSentinel : defaults.charsetSentinel,
@@ -4414,6 +5564,10 @@ module.exports = function (str, opts) {
4414
5564
  obj = utils.merge(obj, newObj, options);
4415
5565
  }
4416
5566
 
5567
+ if (options.allowSparse === true) {
5568
+ return obj;
5569
+ }
5570
+
4417
5571
  return utils.compact(obj);
4418
5572
  };
4419
5573
 
@@ -4421,7 +5575,7 @@ module.exports = function (str, opts) {
4421
5575
  /***/ }),
4422
5576
 
4423
5577
  /***/ "../../node_modules/qs/lib/stringify.js":
4424
- /*!**********************************************!*
5578
+ /*!**********************************************!*\
4425
5579
  !*** ../../node_modules/qs/lib/stringify.js ***!
4426
5580
  \**********************************************/
4427
5581
  /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
@@ -4429,6 +5583,7 @@ module.exports = function (str, opts) {
4429
5583
  "use strict";
4430
5584
 
4431
5585
 
5586
+ var getSideChannel = __webpack_require__(/*! side-channel */ "../../node_modules/side-channel/index.js");
4432
5587
  var utils = __webpack_require__(/*! ./utils */ "../../node_modules/qs/lib/utils.js");
4433
5588
  var formats = __webpack_require__(/*! ./formats */ "../../node_modules/qs/lib/formats.js");
4434
5589
  var has = Object.prototype.hasOwnProperty;
@@ -4447,6 +5602,7 @@ var arrayPrefixGenerators = {
4447
5602
  };
4448
5603
 
4449
5604
  var isArray = Array.isArray;
5605
+ var split = String.prototype.split;
4450
5606
  var push = Array.prototype.push;
4451
5607
  var pushToArray = function (arr, valueOrArray) {
4452
5608
  push.apply(arr, isArray(valueOrArray) ? valueOrArray : [valueOrArray]);
@@ -4483,6 +5639,8 @@ var isNonNullishPrimitive = function isNonNullishPrimitive(v) {
4483
5639
  || typeof v === 'bigint';
4484
5640
  };
4485
5641
 
5642
+ var sentinel = {};
5643
+
4486
5644
  var stringify = function stringify(
4487
5645
  object,
4488
5646
  prefix,
@@ -4494,11 +5652,33 @@ var stringify = function stringify(
4494
5652
  sort,
4495
5653
  allowDots,
4496
5654
  serializeDate,
5655
+ format,
4497
5656
  formatter,
4498
5657
  encodeValuesOnly,
4499
- charset
5658
+ charset,
5659
+ sideChannel
4500
5660
  ) {
4501
5661
  var obj = object;
5662
+
5663
+ var tmpSc = sideChannel;
5664
+ var step = 0;
5665
+ var findFlag = false;
5666
+ while ((tmpSc = tmpSc.get(sentinel)) !== undefined && !findFlag) {
5667
+ // Where object last appeared in the ref tree
5668
+ var pos = tmpSc.get(object);
5669
+ step += 1;
5670
+ if (typeof pos !== 'undefined') {
5671
+ if (pos === step) {
5672
+ throw new RangeError('Cyclic object value');
5673
+ } else {
5674
+ findFlag = true; // Break while
5675
+ }
5676
+ }
5677
+ if (typeof tmpSc.get(sentinel) === 'undefined') {
5678
+ step = 0;
5679
+ }
5680
+ }
5681
+
4502
5682
  if (typeof filter === 'function') {
4503
5683
  obj = filter(prefix, obj);
4504
5684
  } else if (obj instanceof Date) {
@@ -4509,12 +5689,12 @@ var stringify = function stringify(
4509
5689
  return serializeDate(value);
4510
5690
  }
4511
5691
  return value;
4512
- }).join(',');
5692
+ });
4513
5693
  }
4514
5694
 
4515
5695
  if (obj === null) {
4516
5696
  if (strictNullHandling) {
4517
- return encoder && !encodeValuesOnly ? encoder(prefix, defaults.encoder, charset, 'key') : prefix;
5697
+ return encoder && !encodeValuesOnly ? encoder(prefix, defaults.encoder, charset, 'key', format) : prefix;
4518
5698
  }
4519
5699
 
4520
5700
  obj = '';
@@ -4522,8 +5702,16 @@ var stringify = function stringify(
4522
5702
 
4523
5703
  if (isNonNullishPrimitive(obj) || utils.isBuffer(obj)) {
4524
5704
  if (encoder) {
4525
- var keyValue = encodeValuesOnly ? prefix : encoder(prefix, defaults.encoder, charset, 'key');
4526
- return [formatter(keyValue) + '=' + formatter(encoder(obj, defaults.encoder, charset, 'value'))];
5705
+ var keyValue = encodeValuesOnly ? prefix : encoder(prefix, defaults.encoder, charset, 'key', format);
5706
+ if (generateArrayPrefix === 'comma' && encodeValuesOnly) {
5707
+ var valuesArray = split.call(String(obj), ',');
5708
+ var valuesJoined = '';
5709
+ for (var i = 0; i < valuesArray.length; ++i) {
5710
+ valuesJoined += (i === 0 ? '' : ',') + formatter(encoder(valuesArray[i], defaults.encoder, charset, 'value', format));
5711
+ }
5712
+ return [formatter(keyValue) + '=' + valuesJoined];
5713
+ }
5714
+ return [formatter(keyValue) + '=' + formatter(encoder(obj, defaults.encoder, charset, 'value', format))];
4527
5715
  }
4528
5716
  return [formatter(prefix) + '=' + formatter(String(obj))];
4529
5717
  }
@@ -4535,16 +5723,19 @@ var stringify = function stringify(
4535
5723
  }
4536
5724
 
4537
5725
  var objKeys;
4538
- if (isArray(filter)) {
5726
+ if (generateArrayPrefix === 'comma' && isArray(obj)) {
5727
+ // we need to join elements in
5728
+ objKeys = [{ value: obj.length > 0 ? obj.join(',') || null : undefined }];
5729
+ } else if (isArray(filter)) {
4539
5730
  objKeys = filter;
4540
5731
  } else {
4541
5732
  var keys = Object.keys(obj);
4542
5733
  objKeys = sort ? keys.sort(sort) : keys;
4543
5734
  }
4544
5735
 
4545
- for (var i = 0; i < objKeys.length; ++i) {
4546
- var key = objKeys[i];
4547
- var value = obj[key];
5736
+ for (var j = 0; j < objKeys.length; ++j) {
5737
+ var key = objKeys[j];
5738
+ var value = typeof key === 'object' && key.value !== undefined ? key.value : obj[key];
4548
5739
 
4549
5740
  if (skipNulls && value === null) {
4550
5741
  continue;
@@ -4554,6 +5745,9 @@ var stringify = function stringify(
4554
5745
  ? typeof generateArrayPrefix === 'function' ? generateArrayPrefix(prefix, key) : prefix
4555
5746
  : prefix + (allowDots ? '.' + key : '[' + key + ']');
4556
5747
 
5748
+ sideChannel.set(object, step);
5749
+ var valueSideChannel = getSideChannel();
5750
+ valueSideChannel.set(sentinel, sideChannel);
4557
5751
  pushToArray(values, stringify(
4558
5752
  value,
4559
5753
  keyPrefix,
@@ -4565,9 +5759,11 @@ var stringify = function stringify(
4565
5759
  sort,
4566
5760
  allowDots,
4567
5761
  serializeDate,
5762
+ format,
4568
5763
  formatter,
4569
5764
  encodeValuesOnly,
4570
- charset
5765
+ charset,
5766
+ valueSideChannel
4571
5767
  ));
4572
5768
  }
4573
5769
 
@@ -4612,6 +5808,7 @@ var normalizeStringifyOptions = function normalizeStringifyOptions(opts) {
4612
5808
  encoder: typeof opts.encoder === 'function' ? opts.encoder : defaults.encoder,
4613
5809
  encodeValuesOnly: typeof opts.encodeValuesOnly === 'boolean' ? opts.encodeValuesOnly : defaults.encodeValuesOnly,
4614
5810
  filter: filter,
5811
+ format: format,
4615
5812
  formatter: formatter,
4616
5813
  serializeDate: typeof opts.serializeDate === 'function' ? opts.serializeDate : defaults.serializeDate,
4617
5814
  skipNulls: typeof opts.skipNulls === 'boolean' ? opts.skipNulls : defaults.skipNulls,
@@ -4660,6 +5857,7 @@ module.exports = function (object, opts) {
4660
5857
  objKeys.sort(options.sort);
4661
5858
  }
4662
5859
 
5860
+ var sideChannel = getSideChannel();
4663
5861
  for (var i = 0; i < objKeys.length; ++i) {
4664
5862
  var key = objKeys[i];
4665
5863
 
@@ -4677,9 +5875,11 @@ module.exports = function (object, opts) {
4677
5875
  options.sort,
4678
5876
  options.allowDots,
4679
5877
  options.serializeDate,
5878
+ options.format,
4680
5879
  options.formatter,
4681
5880
  options.encodeValuesOnly,
4682
- options.charset
5881
+ options.charset,
5882
+ sideChannel
4683
5883
  ));
4684
5884
  }
4685
5885
 
@@ -4703,14 +5903,16 @@ module.exports = function (object, opts) {
4703
5903
  /***/ }),
4704
5904
 
4705
5905
  /***/ "../../node_modules/qs/lib/utils.js":
4706
- /*!******************************************!*
5906
+ /*!******************************************!*\
4707
5907
  !*** ../../node_modules/qs/lib/utils.js ***!
4708
5908
  \******************************************/
4709
- /***/ (function(module) {
5909
+ /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
4710
5910
 
4711
5911
  "use strict";
4712
5912
 
4713
5913
 
5914
+ var formats = __webpack_require__(/*! ./formats */ "../../node_modules/qs/lib/formats.js");
5915
+
4714
5916
  var has = Object.prototype.hasOwnProperty;
4715
5917
  var isArray = Array.isArray;
4716
5918
 
@@ -4831,7 +6033,7 @@ var decode = function (str, decoder, charset) {
4831
6033
  }
4832
6034
  };
4833
6035
 
4834
- var encode = function encode(str, defaultEncoder, charset) {
6036
+ var encode = function encode(str, defaultEncoder, charset, kind, format) {
4835
6037
  // This code was originally written by Brian White (mscdex) for the io.js core querystring library.
4836
6038
  // It has been adapted here for stricter adherence to RFC 3986
4837
6039
  if (str.length === 0) {
@@ -4863,6 +6065,7 @@ var encode = function encode(str, defaultEncoder, charset) {
4863
6065
  || (c >= 0x30 && c <= 0x39) // 0-9
4864
6066
  || (c >= 0x41 && c <= 0x5A) // a-z
4865
6067
  || (c >= 0x61 && c <= 0x7A) // A-Z
6068
+ || (format === formats.RFC1738 && (c === 0x28 || c === 0x29)) // ( )
4866
6069
  ) {
4867
6070
  out += string.charAt(i);
4868
6071
  continue;
@@ -4885,6 +6088,7 @@ var encode = function encode(str, defaultEncoder, charset) {
4885
6088
 
4886
6089
  i += 1;
4887
6090
  c = 0x10000 + (((c & 0x3FF) << 10) | (string.charCodeAt(i) & 0x3FF));
6091
+ /* eslint operator-linebreak: [2, "before"] */
4888
6092
  out += hexTable[0xF0 | (c >> 18)]
4889
6093
  + hexTable[0x80 | ((c >> 12) & 0x3F)]
4890
6094
  + hexTable[0x80 | ((c >> 6) & 0x3F)]
@@ -4959,10 +6163,145 @@ module.exports = {
4959
6163
  };
4960
6164
 
4961
6165
 
6166
+ /***/ }),
6167
+
6168
+ /***/ "../../node_modules/side-channel/index.js":
6169
+ /*!************************************************!*\
6170
+ !*** ../../node_modules/side-channel/index.js ***!
6171
+ \************************************************/
6172
+ /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
6173
+
6174
+ "use strict";
6175
+
6176
+
6177
+ var GetIntrinsic = __webpack_require__(/*! get-intrinsic */ "../../node_modules/get-intrinsic/index.js");
6178
+ var callBound = __webpack_require__(/*! call-bind/callBound */ "../../node_modules/call-bind/callBound.js");
6179
+ var inspect = __webpack_require__(/*! object-inspect */ "../../node_modules/object-inspect/index.js");
6180
+
6181
+ var $TypeError = GetIntrinsic('%TypeError%');
6182
+ var $WeakMap = GetIntrinsic('%WeakMap%', true);
6183
+ var $Map = GetIntrinsic('%Map%', true);
6184
+
6185
+ var $weakMapGet = callBound('WeakMap.prototype.get', true);
6186
+ var $weakMapSet = callBound('WeakMap.prototype.set', true);
6187
+ var $weakMapHas = callBound('WeakMap.prototype.has', true);
6188
+ var $mapGet = callBound('Map.prototype.get', true);
6189
+ var $mapSet = callBound('Map.prototype.set', true);
6190
+ var $mapHas = callBound('Map.prototype.has', true);
6191
+
6192
+ /*
6193
+ * This function traverses the list returning the node corresponding to the
6194
+ * given key.
6195
+ *
6196
+ * That node is also moved to the head of the list, so that if it's accessed
6197
+ * again we don't need to traverse the whole list. By doing so, all the recently
6198
+ * used nodes can be accessed relatively quickly.
6199
+ */
6200
+ var listGetNode = function (list, key) { // eslint-disable-line consistent-return
6201
+ for (var prev = list, curr; (curr = prev.next) !== null; prev = curr) {
6202
+ if (curr.key === key) {
6203
+ prev.next = curr.next;
6204
+ curr.next = list.next;
6205
+ list.next = curr; // eslint-disable-line no-param-reassign
6206
+ return curr;
6207
+ }
6208
+ }
6209
+ };
6210
+
6211
+ var listGet = function (objects, key) {
6212
+ var node = listGetNode(objects, key);
6213
+ return node && node.value;
6214
+ };
6215
+ var listSet = function (objects, key, value) {
6216
+ var node = listGetNode(objects, key);
6217
+ if (node) {
6218
+ node.value = value;
6219
+ } else {
6220
+ // Prepend the new node to the beginning of the list
6221
+ objects.next = { // eslint-disable-line no-param-reassign
6222
+ key: key,
6223
+ next: objects.next,
6224
+ value: value
6225
+ };
6226
+ }
6227
+ };
6228
+ var listHas = function (objects, key) {
6229
+ return !!listGetNode(objects, key);
6230
+ };
6231
+
6232
+ module.exports = function getSideChannel() {
6233
+ var $wm;
6234
+ var $m;
6235
+ var $o;
6236
+ var channel = {
6237
+ assert: function (key) {
6238
+ if (!channel.has(key)) {
6239
+ throw new $TypeError('Side channel does not contain ' + inspect(key));
6240
+ }
6241
+ },
6242
+ get: function (key) { // eslint-disable-line consistent-return
6243
+ if ($WeakMap && key && (typeof key === 'object' || typeof key === 'function')) {
6244
+ if ($wm) {
6245
+ return $weakMapGet($wm, key);
6246
+ }
6247
+ } else if ($Map) {
6248
+ if ($m) {
6249
+ return $mapGet($m, key);
6250
+ }
6251
+ } else {
6252
+ if ($o) { // eslint-disable-line no-lonely-if
6253
+ return listGet($o, key);
6254
+ }
6255
+ }
6256
+ },
6257
+ has: function (key) {
6258
+ if ($WeakMap && key && (typeof key === 'object' || typeof key === 'function')) {
6259
+ if ($wm) {
6260
+ return $weakMapHas($wm, key);
6261
+ }
6262
+ } else if ($Map) {
6263
+ if ($m) {
6264
+ return $mapHas($m, key);
6265
+ }
6266
+ } else {
6267
+ if ($o) { // eslint-disable-line no-lonely-if
6268
+ return listHas($o, key);
6269
+ }
6270
+ }
6271
+ return false;
6272
+ },
6273
+ set: function (key, value) {
6274
+ if ($WeakMap && key && (typeof key === 'object' || typeof key === 'function')) {
6275
+ if (!$wm) {
6276
+ $wm = new $WeakMap();
6277
+ }
6278
+ $weakMapSet($wm, key, value);
6279
+ } else if ($Map) {
6280
+ if (!$m) {
6281
+ $m = new $Map();
6282
+ }
6283
+ $mapSet($m, key, value);
6284
+ } else {
6285
+ if (!$o) {
6286
+ /*
6287
+ * Initialize the linked list as an empty node, so that we don't have
6288
+ * to special-case handling of the first node: we can always refer to
6289
+ * it as (previous node).next, instead of something like (list).head
6290
+ */
6291
+ $o = { key: {}, next: null };
6292
+ }
6293
+ listSet($o, key, value);
6294
+ }
6295
+ }
6296
+ };
6297
+ return channel;
6298
+ };
6299
+
6300
+
4962
6301
  /***/ }),
4963
6302
 
4964
6303
  /***/ "../../node_modules/uberproto/lib/proto.js":
4965
- /*!*************************************************!*
6304
+ /*!*************************************************!*\
4966
6305
  !*** ../../node_modules/uberproto/lib/proto.js ***!
4967
6306
  \*************************************************/
4968
6307
  /***/ (function(module, exports) {
@@ -5108,6 +6447,16 @@ var __WEBPACK_AMD_DEFINE_FACTORY__, __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_
5108
6447
  }));
5109
6448
 
5110
6449
 
6450
+ /***/ }),
6451
+
6452
+ /***/ "?c95a":
6453
+ /*!********************************!*\
6454
+ !*** ./util.inspect (ignored) ***!
6455
+ \********************************/
6456
+ /***/ (function() {
6457
+
6458
+ /* (ignored) */
6459
+
5111
6460
  /***/ })
5112
6461
 
5113
6462
  /******/ });
@@ -5118,8 +6467,9 @@ var __WEBPACK_AMD_DEFINE_FACTORY__, __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_
5118
6467
  /******/ // The require function
5119
6468
  /******/ function __webpack_require__(moduleId) {
5120
6469
  /******/ // Check if module is in cache
5121
- /******/ if(__webpack_module_cache__[moduleId]) {
5122
- /******/ return __webpack_module_cache__[moduleId].exports;
6470
+ /******/ var cachedModule = __webpack_module_cache__[moduleId];
6471
+ /******/ if (cachedModule !== undefined) {
6472
+ /******/ return cachedModule.exports;
5123
6473
  /******/ }
5124
6474
  /******/ // Create a new module (and put it into the cache)
5125
6475
  /******/ var module = __webpack_module_cache__[moduleId] = {
@@ -5136,10 +6486,13 @@ var __WEBPACK_AMD_DEFINE_FACTORY__, __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_
5136
6486
  /******/ }
5137
6487
  /******/
5138
6488
  /************************************************************************/
5139
- /******/ // module exports must be returned from runtime so entry inlining is disabled
6489
+ /******/
5140
6490
  /******/ // startup
5141
6491
  /******/ // Load entry module and return exports
5142
- /******/ return __webpack_require__("./src/index.js");
6492
+ /******/ // This entry module is referenced by other modules so it can't be inlined
6493
+ /******/ var __webpack_exports__ = __webpack_require__("./src/index.js");
6494
+ /******/
6495
+ /******/ return __webpack_exports__;
5143
6496
  /******/ })()
5144
6497
  ;
5145
6498
  });