@intelligentgraphics/ig.gfx.packager 2.0.6 → 2.0.10

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/build/index.js CHANGED
@@ -1321,29 +1321,30 @@ async function iterateAsync(basePath, filePath, segments) {
1321
1321
  Object.defineProperty(exports, "__esModule", ({
1322
1322
  value: true
1323
1323
  }));
1324
- exports.__extends = __extends;
1325
- exports.__rest = __rest;
1326
- exports.__decorate = __decorate;
1327
- exports.__param = __param;
1328
- exports.__metadata = __metadata;
1324
+ exports.__assign = void 0;
1325
+ exports.__asyncDelegator = __asyncDelegator;
1326
+ exports.__asyncGenerator = __asyncGenerator;
1327
+ exports.__asyncValues = __asyncValues;
1328
+ exports.__await = __await;
1329
1329
  exports.__awaiter = __awaiter;
1330
- exports.__generator = __generator;
1330
+ exports.__classPrivateFieldGet = __classPrivateFieldGet;
1331
+ exports.__classPrivateFieldSet = __classPrivateFieldSet;
1332
+ exports.__createBinding = void 0;
1333
+ exports.__decorate = __decorate;
1331
1334
  exports.__exportStar = __exportStar;
1332
- exports.__values = __values;
1335
+ exports.__extends = __extends;
1336
+ exports.__generator = __generator;
1337
+ exports.__importDefault = __importDefault;
1338
+ exports.__importStar = __importStar;
1339
+ exports.__makeTemplateObject = __makeTemplateObject;
1340
+ exports.__metadata = __metadata;
1341
+ exports.__param = __param;
1333
1342
  exports.__read = __read;
1343
+ exports.__rest = __rest;
1334
1344
  exports.__spread = __spread;
1335
- exports.__spreadArrays = __spreadArrays;
1336
1345
  exports.__spreadArray = __spreadArray;
1337
- exports.__await = __await;
1338
- exports.__asyncGenerator = __asyncGenerator;
1339
- exports.__asyncDelegator = __asyncDelegator;
1340
- exports.__asyncValues = __asyncValues;
1341
- exports.__makeTemplateObject = __makeTemplateObject;
1342
- exports.__importStar = __importStar;
1343
- exports.__importDefault = __importDefault;
1344
- exports.__classPrivateFieldGet = __classPrivateFieldGet;
1345
- exports.__classPrivateFieldSet = __classPrivateFieldSet;
1346
- exports.__createBinding = exports.__assign = void 0;
1346
+ exports.__spreadArrays = __spreadArrays;
1347
+ exports.__values = __values;
1347
1348
 
1348
1349
  __webpack_require__(/*! core-js/modules/es.promise.js */ "../../node_modules/core-js/modules/es.promise.js");
1349
1350
 
@@ -1660,7 +1661,7 @@ function __spreadArray(to, from, pack) {
1660
1661
  ar[i] = from[i];
1661
1662
  }
1662
1663
  }
1663
- return to.concat(ar || from);
1664
+ return to.concat(ar || Array.prototype.slice.call(from));
1664
1665
  }
1665
1666
 
1666
1667
  function __await(v) {
@@ -1835,7 +1836,7 @@ class Command {
1835
1836
  }
1836
1837
 
1837
1838
  const options = this.params.createOptions();
1838
- const configValues = config_1.getConfigValues(this.params.name);
1839
+ const configValues = (0, config_1.getConfigValues)(this.params.name);
1839
1840
 
1840
1841
  for (const entry in configValues) {
1841
1842
  const option = options[entry];
@@ -1855,7 +1856,7 @@ class Command {
1855
1856
  configOptions[params.name + "." + key] = params.configuration[key];
1856
1857
  }
1857
1858
 
1858
- config_1.registerConfigOptions(configOptions);
1859
+ (0, config_1.registerConfigOptions)(configOptions);
1859
1860
  }
1860
1861
  }
1861
1862
 
@@ -1940,14 +1941,14 @@ const configOptions = new Map();
1940
1941
  let cached;
1941
1942
 
1942
1943
  const getConfigValue = name => {
1943
- const config = exports.readConfig();
1944
+ const config = (0, exports.readConfig)();
1944
1945
  return config[name];
1945
1946
  };
1946
1947
 
1947
1948
  exports.getConfigValue = getConfigValue;
1948
1949
 
1949
1950
  const getConfigValues = namespace => {
1950
- const config = exports.readConfig();
1951
+ const config = (0, exports.readConfig)();
1951
1952
 
1952
1953
  if (!namespace) {
1953
1954
  return config;
@@ -1969,7 +1970,7 @@ const setConfigValue = (key, value) => {
1969
1970
  throw new Error("Unkown config option");
1970
1971
  }
1971
1972
 
1972
- let config = exports.readConfig();
1973
+ let config = (0, exports.readConfig)();
1973
1974
 
1974
1975
  if (!config) {
1975
1976
  config = {};
@@ -1990,7 +1991,7 @@ const setConfigValue = (key, value) => {
1990
1991
  }
1991
1992
 
1992
1993
  config[key] = value;
1993
- exports.writeConfig(config);
1994
+ (0, exports.writeConfig)(config);
1994
1995
  console.log(`Set "${key}" to "${value}"`);
1995
1996
  return config;
1996
1997
  };
@@ -2139,7 +2140,7 @@ const findExecutable = (command, tryDirs) => {
2139
2140
  try {
2140
2141
  const commandPath = path.join(binPath, fileName);
2141
2142
  fs.readFileSync(commandPath);
2142
- return exports.escapePathArg(commandPath);
2143
+ return (0, exports.escapePathArg)(commandPath);
2143
2144
  } catch (err) {}
2144
2145
  }
2145
2146
 
@@ -2152,7 +2153,7 @@ const escapeArg = input => `"${input}"`;
2152
2153
 
2153
2154
  exports.escapeArg = escapeArg;
2154
2155
 
2155
- const escapePathArg = input => path.isAbsolute(input) ? exports.escapeArg(true_case_path_1.trueCasePathSync(input) || input) : exports.escapeArg(input);
2156
+ const escapePathArg = input => path.isAbsolute(input) ? (0, exports.escapeArg)((0, true_case_path_1.trueCasePathSync)(input) || input) : (0, exports.escapeArg)(input);
2156
2157
 
2157
2158
  exports.escapePathArg = escapePathArg;
2158
2159
 
@@ -2189,7 +2190,7 @@ const findFile = (fileName, basePath) => {
2189
2190
 
2190
2191
  while (currentPath !== undefined) {
2191
2192
  const filePath = path.join(currentPath, fileName);
2192
- const file = exports.readFile(filePath);
2193
+ const file = (0, exports.readFile)(filePath);
2193
2194
 
2194
2195
  if (file !== undefined) {
2195
2196
  return filePath;
@@ -2242,7 +2243,7 @@ const readJsonFile = filePath => {
2242
2243
  return cached;
2243
2244
  }
2244
2245
 
2245
- const file = exports.readFile(filePath);
2246
+ const file = (0, exports.readFile)(filePath);
2246
2247
 
2247
2248
  if (!file) {
2248
2249
  return undefined;
@@ -2258,11 +2259,11 @@ const readJsonFile = filePath => {
2258
2259
  exports.readJsonFile = readJsonFile;
2259
2260
 
2260
2261
  const updateJSONFile = (filePath, update) => {
2261
- const currentContent = exports.readJsonFile(filePath);
2262
+ const currentContent = (0, exports.readJsonFile)(filePath);
2262
2263
  const newContent = update(currentContent);
2263
2264
 
2264
2265
  if (newContent) {
2265
- exports.writeFile(filePath, newContent);
2266
+ (0, exports.writeFile)(filePath, newContent);
2266
2267
  }
2267
2268
 
2268
2269
  return newContent;
@@ -2372,7 +2373,7 @@ const getDir = async (cwd = process.cwd()) => {
2372
2373
  exports.getDir = getDir;
2373
2374
 
2374
2375
  const getLastTag = async (packageName, packageFolder) => {
2375
- const rootGitDir = await exports.getDir(packageFolder);
2376
+ const rootGitDir = await (0, exports.getDir)(packageFolder);
2376
2377
 
2377
2378
  try {
2378
2379
  const {
@@ -2426,18 +2427,12 @@ exports.PathUtil = PathUtil;
2426
2427
  const GitUtil = __webpack_require__(/*! ./gitUtil */ "../core/build/gitUtil.js");
2427
2428
 
2428
2429
  exports.GitUtil = GitUtil;
2429
-
2430
- tslib_1.__exportStar(__webpack_require__(/*! ./limiter */ "../core/build/limiter.js"), exports);
2431
-
2432
- tslib_1.__exportStar(__webpack_require__(/*! ./typedEmitter */ "../core/build/typedEmitter.js"), exports);
2433
-
2434
- tslib_1.__exportStar(__webpack_require__(/*! ./packageVersion */ "../core/build/packageVersion.js"), exports);
2435
-
2436
- tslib_1.__exportStar(__webpack_require__(/*! ./config */ "../core/build/config.js"), exports);
2437
-
2438
- tslib_1.__exportStar(__webpack_require__(/*! ./types/pjson */ "../core/build/types/pjson.js"), exports);
2439
-
2440
- tslib_1.__exportStar(__webpack_require__(/*! ./workers */ "../core/build/workers/index.js"), exports);
2430
+ (0, tslib_1.__exportStar)(__webpack_require__(/*! ./limiter */ "../core/build/limiter.js"), exports);
2431
+ (0, tslib_1.__exportStar)(__webpack_require__(/*! ./typedEmitter */ "../core/build/typedEmitter.js"), exports);
2432
+ (0, tslib_1.__exportStar)(__webpack_require__(/*! ./packageVersion */ "../core/build/packageVersion.js"), exports);
2433
+ (0, tslib_1.__exportStar)(__webpack_require__(/*! ./config */ "../core/build/config.js"), exports);
2434
+ (0, tslib_1.__exportStar)(__webpack_require__(/*! ./types/pjson */ "../core/build/types/pjson.js"), exports);
2435
+ (0, tslib_1.__exportStar)(__webpack_require__(/*! ./workers */ "../core/build/workers/index.js"), exports);
2441
2436
 
2442
2437
  var commandRegistry_1 = __webpack_require__(/*! ./commandRegistry */ "../core/build/commandRegistry.js");
2443
2438
 
@@ -2456,10 +2451,8 @@ Object.defineProperty(exports, "Command", ({
2456
2451
  return command_1.Command;
2457
2452
  }
2458
2453
  }));
2459
-
2460
- tslib_1.__exportStar(__webpack_require__(/*! ./toposort */ "../core/build/toposort.js"), exports);
2461
-
2462
- tslib_1.__exportStar(__webpack_require__(/*! ./findLargest */ "../core/build/findLargest.js"), exports);
2454
+ (0, tslib_1.__exportStar)(__webpack_require__(/*! ./toposort */ "../core/build/toposort.js"), exports);
2455
+ (0, tslib_1.__exportStar)(__webpack_require__(/*! ./findLargest */ "../core/build/findLargest.js"), exports);
2463
2456
 
2464
2457
  /***/ }),
2465
2458
 
@@ -2909,11 +2902,11 @@ const generateDescriptionName = (currentDescription, packageName) => {
2909
2902
  return match[1];
2910
2903
  }
2911
2904
 
2912
- const normalizedName = exports.removeOrg(packageName);
2905
+ const normalizedName = (0, exports.removeOrg)(packageName);
2913
2906
  const split = normalizedName.split(".");
2914
2907
  const namespaces = split.splice(0, split.length - 1);
2915
2908
  let name = split[0];
2916
- name = name.length <= 3 ? name.toUpperCase() : exports.upperCaseFirst(name);
2909
+ name = name.length <= 3 ? name.toUpperCase() : (0, exports.upperCaseFirst)(name);
2917
2910
  return namespaces.map(namespace => namespace.toUpperCase()).concat([name]).join(".");
2918
2911
  };
2919
2912
 
@@ -3092,7 +3085,7 @@ class WorkMaster extends typedEmitter_1.TypedEmitter {
3092
3085
 
3093
3086
  this.worker = new Proxy({}, {
3094
3087
  get: (_, property) => (...args) => new Promise((resolve, reject) => {
3095
- const messageId = stringUtil_1.generateId();
3088
+ const messageId = (0, stringUtil_1.generateId)();
3096
3089
  this.messageCbs.set(messageId, message => {
3097
3090
  this.messageCbs.delete(messageId);
3098
3091
 
@@ -3126,8 +3119,7 @@ class WorkMaster extends typedEmitter_1.TypedEmitter {
3126
3119
  }
3127
3120
 
3128
3121
  exports.WorkMaster = WorkMaster;
3129
-
3130
- tslib_1.__exportStar(__webpack_require__(/*! ./slave */ "../core/build/workers/slave.js"), exports);
3122
+ (0, tslib_1.__exportStar)(__webpack_require__(/*! ./slave */ "../core/build/workers/slave.js"), exports);
3131
3123
 
3132
3124
  /***/ }),
3133
3125
 
@@ -3249,15 +3241,16 @@ function _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { va
3249
3241
  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; }
3250
3242
 
3251
3243
  const buildFolders = async options => {
3252
- if (!options.directories || options.directories.length === 0) {
3253
- return console.log((0, _localization.translate)("messages.buildSkipEmpty"));
3254
- }
3255
-
3256
3244
  if (options.outDir !== undefined && options.clean) {
3257
3245
  rimraf.sync(options.outDir);
3258
3246
  }
3259
3247
 
3260
3248
  const folders = (0, _util.resolveArgs)(options.directories, options.cwd);
3249
+
3250
+ if (folders.length === 0) {
3251
+ return console.log((0, _localization.translate)("messages.buildSkipEmpty"));
3252
+ }
3253
+
3261
3254
  const sortedPackages = buildSortedPackageMap(folders);
3262
3255
  let index = 1;
3263
3256
 
@@ -3265,6 +3258,7 @@ const buildFolders = async options => {
3265
3258
  path: folderPath,
3266
3259
  data: packageData
3267
3260
  }] of sortedPackages) {
3261
+ ensureTsConfig(folderPath);
3268
3262
  const data = (0, _packages.loadDataFromFolder)(folderPath);
3269
3263
 
3270
3264
  const logStep = step => (0, _util.logPackageMessage)(data.Package, step, index, sortedPackages.size);
@@ -3299,6 +3293,28 @@ const buildFolders = async options => {
3299
3293
 
3300
3294
  exports.buildFolders = buildFolders;
3301
3295
 
3296
+ const ensureTsConfig = folderPath => {
3297
+ const tsconfigPath = path.join(folderPath, "tsconfig.json");
3298
+
3299
+ if (!fs.existsSync(tsconfigPath)) {
3300
+ const content = {};
3301
+ applyTsConfigOption(content);
3302
+ fs.writeFileSync(tsconfigPath, JSON.stringify(content, undefined, "\t"), "utf8");
3303
+ } else {
3304
+ const content = JSON.parse(fs.readFileSync(tsconfigPath, "utf8"));
3305
+ applyTsConfigOption(content);
3306
+ fs.writeFileSync(tsconfigPath, JSON.stringify(content, undefined, "\t"), "utf8");
3307
+ }
3308
+ };
3309
+
3310
+ const applyTsConfigOption = data => {
3311
+ var _data$compilerOptions;
3312
+
3313
+ data.compilerOptions = (_data$compilerOptions = data.compilerOptions) !== null && _data$compilerOptions !== void 0 ? _data$compilerOptions : {};
3314
+ data.compilerOptions.target = "es5";
3315
+ data.compilerOptions.lib = ["es5", "dom"];
3316
+ };
3317
+
3302
3318
  const buildSortedPackageMap = folders => {
3303
3319
  const packages = Array.from(folders).reduce((acc, folderPath) => {
3304
3320
  const data = _igTools.FileUtil.readJsonFile(path.join(folderPath, "package.json"));
@@ -3383,12 +3399,12 @@ function _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { va
3383
3399
  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; }
3384
3400
 
3385
3401
  const releaseFolders = async options => {
3386
- if (!options.directories || options.directories.length === 0) {
3402
+ const folders = (0, _util.resolveArgs)(options.directories, options.cwd);
3403
+
3404
+ if (folders.length === 0) {
3387
3405
  return console.log((0, _localization.translate)("messages.releaseSkipEmpty"));
3388
3406
  }
3389
3407
 
3390
- const folders = (0, _util.resolveArgs)(options.directories, options.cwd);
3391
-
3392
3408
  for (const folder of folders) {
3393
3409
  await releaseFolder(folder, options);
3394
3410
  }
@@ -3503,7 +3519,7 @@ const getVersionFile = folder => {
3503
3519
  }
3504
3520
  });
3505
3521
 
3506
- const createVersionFileWriter = (copyright = [currentYear], copyrightStuff) => (name, newVersion) => {
3522
+ const createVersionFileWriter = (copyright = [currentYear], copyrightStuff = "") => (name, newVersion) => {
3507
3523
  const result = `console.log("${newVersion.toDescriptionString(name)}. Copyright (C) ${createYearString(copyright)}${copyrightStuff}");`;
3508
3524
 
3509
3525
  _igTools.FileUtil.writeFile(filePath, result);
@@ -3732,6 +3748,12 @@ function _getRequireWildcardCache(nodeInterop) { if (typeof WeakMap !== "functio
3732
3748
 
3733
3749
  function _interopRequireWildcard(obj, nodeInterop) { if (!nodeInterop && obj && obj.__esModule) { return obj; } if (obj === null || typeof obj !== "object" && typeof obj !== "function") { return { default: obj }; } var cache = _getRequireWildcardCache(nodeInterop); if (cache && cache.has(obj)) { return cache.get(obj); } var newObj = {}; var hasPropertyDescriptor = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var key in obj) { if (key !== "default" && Object.prototype.hasOwnProperty.call(obj, key)) { var desc = hasPropertyDescriptor ? Object.getOwnPropertyDescriptor(obj, key) : null; if (desc && (desc.get || desc.set)) { Object.defineProperty(newObj, key, desc); } else { newObj[key] = obj[key]; } } } newObj.default = obj; if (cache) { cache.set(obj, newObj); } return newObj; }
3734
3750
 
3751
+ function ownKeys(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); if (enumerableOnly) { symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; }); } keys.push.apply(keys, symbols); } return keys; }
3752
+
3753
+ function _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i] != null ? arguments[i] : {}; if (i % 2) { ownKeys(Object(source), true).forEach(function (key) { _defineProperty(target, key, source[key]); }); } else if (Object.getOwnPropertyDescriptors) { Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)); } else { ownKeys(Object(source)).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } } return target; }
3754
+
3755
+ 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; }
3756
+
3735
3757
  const PLUGIN_ID = "0feba3a0-b6d1-11e6-9598-0800200c9a66";
3736
3758
  const PACKAGE_FILE = "_Package.json";
3737
3759
  const INDEX_FILE = "_Index.json";
@@ -3744,6 +3766,8 @@ var Mode;
3744
3766
  })(Mode || (Mode = {}));
3745
3767
 
3746
3768
  let validateSchema;
3769
+ const runtimeScripts = ["Interactor", "Core", "Mixed"];
3770
+ const notRuntimeScripts = ["Context", "Evaluator"];
3747
3771
 
3748
3772
  const executePackager = async options => {
3749
3773
  const logStep = step => (0, _util.logPackageMessage)(`${options.domain}.${options.subdomain}`, step);
@@ -3780,7 +3804,8 @@ const buildArchive = async ({
3780
3804
  coerceTypes: true,
3781
3805
  allErrors: true,
3782
3806
  removeAdditional: true,
3783
- useDefaults: "empty"
3807
+ useDefaults: "empty",
3808
+ validateSchema: "log"
3784
3809
  }).compile(data));
3785
3810
  }
3786
3811
 
@@ -3826,9 +3851,25 @@ const buildArchive = async ({
3826
3851
  primaryScriptDir = scriptDirectories[0];
3827
3852
  } catch (err) {
3828
3853
  throw new Error(`Expected scripts directory "${scriptDirectories[0]}" to exist`);
3829
- } // const indexFile = path.join(primaryScriptDir, INDEX_FILE);
3830
- // const index = FileUtil.readJsonFile<object>(indexFile);
3831
- // if (index === undefined) {
3854
+ }
3855
+
3856
+ const manifest = _igTools.FileUtil.readJsonFile(path.join(primaryScriptDir, PACKAGE_FILE));
3857
+
3858
+ if (manifest !== undefined) {
3859
+ if (manifest.RunTime && notRuntimeScripts.includes(manifest.Type)) {
3860
+ logStep("Setting script RunTime to false because of script type");
3861
+
3862
+ _igTools.FileUtil.writeFile(path.join(primaryScriptDir, PACKAGE_FILE), JSON.stringify(_objectSpread(_objectSpread({}, manifest), {}, {
3863
+ RunTime: false
3864
+ }), undefined, "\t") + "\n");
3865
+ } else if (!manifest.RunTime && runtimeScripts.includes(manifest.Type)) {
3866
+ logStep("Setting script RunTime to true because of script type");
3867
+
3868
+ _igTools.FileUtil.writeFile(path.join(primaryScriptDir, PACKAGE_FILE), JSON.stringify(_objectSpread(_objectSpread({}, manifest), {}, {
3869
+ RunTime: true
3870
+ }), undefined, "\t") + "\n");
3871
+ }
3872
+ } // if (index === undefined) {
3832
3873
  // throw new Error(
3833
3874
  // `Could not find an "${INDEX_FILE}" file in "${primaryScriptDir}"`,
3834
3875
  // );
@@ -3845,13 +3886,7 @@ const buildArchive = async ({
3845
3886
  const content = _igTools.FileUtil.readFile(path.join(primaryScriptDir, scriptFile));
3846
3887
 
3847
3888
  const data = JSON.parse(content);
3848
- const valid = validateSchema(data);
3849
-
3850
- if (!valid) {
3851
- console.log(`Ignoring animation "${scriptFile}", because it's not valid`);
3852
- continue;
3853
- }
3854
-
3889
+ validateSchema(data);
3855
3890
  animations.set(data.Id, JSON.stringify(data));
3856
3891
  }
3857
3892
 
@@ -4103,7 +4138,9 @@ const loadDataFromFolder = folder => {
4103
4138
 
4104
4139
  data = {
4105
4140
  Package: data.Package,
4106
- Scope: data.Scope || data.Package
4141
+ Scope: data.Scope || data.Package,
4142
+ RunTime: data.RunTime,
4143
+ Type: data.Type
4107
4144
  };
4108
4145
 
4109
4146
  if (packageJSON !== undefined) {
@@ -4141,17 +4178,39 @@ var glob = _interopRequireWildcard(__webpack_require__(/*! glob */ "glob"));
4141
4178
 
4142
4179
  var path = _interopRequireWildcard(__webpack_require__(/*! path */ "path"));
4143
4180
 
4181
+ var fs = _interopRequireWildcard(__webpack_require__(/*! fs */ "fs"));
4182
+
4144
4183
  function _getRequireWildcardCache(nodeInterop) { if (typeof WeakMap !== "function") return null; var cacheBabelInterop = new WeakMap(); var cacheNodeInterop = new WeakMap(); return (_getRequireWildcardCache = function (nodeInterop) { return nodeInterop ? cacheNodeInterop : cacheBabelInterop; })(nodeInterop); }
4145
4184
 
4146
4185
  function _interopRequireWildcard(obj, nodeInterop) { if (!nodeInterop && obj && obj.__esModule) { return obj; } if (obj === null || typeof obj !== "object" && typeof obj !== "function") { return { default: obj }; } var cache = _getRequireWildcardCache(nodeInterop); if (cache && cache.has(obj)) { return cache.get(obj); } var newObj = {}; var hasPropertyDescriptor = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var key in obj) { if (key !== "default" && Object.prototype.hasOwnProperty.call(obj, key)) { var desc = hasPropertyDescriptor ? Object.getOwnPropertyDescriptor(obj, key) : null; if (desc && (desc.get || desc.set)) { Object.defineProperty(newObj, key, desc); } else { newObj[key] = obj[key]; } } } newObj.default = obj; if (cache) { cache.set(obj, newObj); } return newObj; }
4147
4186
 
4187
+ function ownKeys(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); if (enumerableOnly) { symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; }); } keys.push.apply(keys, symbols); } return keys; }
4188
+
4189
+ function _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i] != null ? arguments[i] : {}; if (i % 2) { ownKeys(Object(source), true).forEach(function (key) { _defineProperty(target, key, source[key]); }); } else if (Object.getOwnPropertyDescriptors) { Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)); } else { ownKeys(Object(source)).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } } return target; }
4190
+
4191
+ 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; }
4192
+
4148
4193
  const build = async (folderPath, options) => {
4149
- const compilerOptions = {
4194
+ const {
4195
+ config
4196
+ } = ts.readConfigFile(path.join(folderPath, "tsconfig.json"), path => {
4197
+ try {
4198
+ return fs.readFileSync(path, "utf8");
4199
+ } catch {
4200
+ return undefined;
4201
+ }
4202
+ });
4203
+ config.compilerOptions.lib = ["es5", "dom"];
4204
+ const result = ts.convertCompilerOptionsFromJson(config.compilerOptions, folderPath);
4205
+
4206
+ const compilerOptions = _objectSpread(_objectSpread({}, result.options), {}, {
4150
4207
  removeComments: false,
4151
4208
  declaration: true,
4152
4209
  sourceMap: false,
4153
- outFile: options.outFile
4154
- };
4210
+ outFile: options.outFile,
4211
+ target: ts.ScriptTarget.ES5
4212
+ });
4213
+
4155
4214
  const host = ts.createCompilerHost(compilerOptions);
4156
4215
 
4157
4216
  host.getCurrentDirectory = () => folderPath;
@@ -4199,6 +4258,10 @@ ${data}`;
4199
4258
  const allDiagnostics = ts.getPreEmitDiagnostics(program).concat(emitResult.diagnostics);
4200
4259
 
4201
4260
  if (!emitResult.emitSkipped) {
4261
+ if (allDiagnostics.length > 0) {
4262
+ console.log(allDiagnostics.map(createErrorMessage).join("\n"));
4263
+ }
4264
+
4202
4265
  return;
4203
4266
  }
4204
4267
 
@@ -4235,7 +4298,7 @@ const createErrorMessage = diagnostic => {
4235
4298
  Object.defineProperty(exports, "__esModule", ({
4236
4299
  value: true
4237
4300
  }));
4238
- exports.parsePackageDomains = exports.resolveArgs = exports.resolveAliases = exports.logPackageMessage = void 0;
4301
+ exports.resolveArgs = exports.resolveAliases = exports.parsePackageDomains = exports.logPackageMessage = void 0;
4239
4302
 
4240
4303
  var path = _interopRequireWildcard(__webpack_require__(/*! path */ "path"));
4241
4304
 
@@ -4360,16 +4423,43 @@ exports.parsePackageDomains = parsePackageDomains;
4360
4423
 
4361
4424
  /***/ }),
4362
4425
 
4363
- /***/ "../../node_modules/core-js/internals/a-function.js":
4426
+ /***/ "../../node_modules/core-js/internals/a-callable.js":
4364
4427
  /*!**********************************************************!*\
4365
- !*** ../../node_modules/core-js/internals/a-function.js ***!
4428
+ !*** ../../node_modules/core-js/internals/a-callable.js ***!
4366
4429
  \**********************************************************/
4367
- /***/ ((module) => {
4430
+ /***/ ((module, __unused_webpack_exports, __webpack_require__) => {
4368
4431
 
4369
- module.exports = function (it) {
4370
- if (typeof it != 'function') {
4371
- throw TypeError(String(it) + ' is not a function');
4372
- } return it;
4432
+ var global = __webpack_require__(/*! ../internals/global */ "../../node_modules/core-js/internals/global.js");
4433
+ var isCallable = __webpack_require__(/*! ../internals/is-callable */ "../../node_modules/core-js/internals/is-callable.js");
4434
+ var tryToString = __webpack_require__(/*! ../internals/try-to-string */ "../../node_modules/core-js/internals/try-to-string.js");
4435
+
4436
+ var TypeError = global.TypeError;
4437
+
4438
+ // `Assert: IsCallable(argument) is true`
4439
+ module.exports = function (argument) {
4440
+ if (isCallable(argument)) return argument;
4441
+ throw TypeError(tryToString(argument) + ' is not a function');
4442
+ };
4443
+
4444
+
4445
+ /***/ }),
4446
+
4447
+ /***/ "../../node_modules/core-js/internals/a-constructor.js":
4448
+ /*!*************************************************************!*\
4449
+ !*** ../../node_modules/core-js/internals/a-constructor.js ***!
4450
+ \*************************************************************/
4451
+ /***/ ((module, __unused_webpack_exports, __webpack_require__) => {
4452
+
4453
+ var global = __webpack_require__(/*! ../internals/global */ "../../node_modules/core-js/internals/global.js");
4454
+ var isConstructor = __webpack_require__(/*! ../internals/is-constructor */ "../../node_modules/core-js/internals/is-constructor.js");
4455
+ var tryToString = __webpack_require__(/*! ../internals/try-to-string */ "../../node_modules/core-js/internals/try-to-string.js");
4456
+
4457
+ var TypeError = global.TypeError;
4458
+
4459
+ // `Assert: IsConstructor(argument) is true`
4460
+ module.exports = function (argument) {
4461
+ if (isConstructor(argument)) return argument;
4462
+ throw TypeError(tryToString(argument) + ' is not a constructor');
4373
4463
  };
4374
4464
 
4375
4465
 
@@ -4381,12 +4471,15 @@ module.exports = function (it) {
4381
4471
  \********************************************************************/
4382
4472
  /***/ ((module, __unused_webpack_exports, __webpack_require__) => {
4383
4473
 
4384
- var isObject = __webpack_require__(/*! ../internals/is-object */ "../../node_modules/core-js/internals/is-object.js");
4474
+ var global = __webpack_require__(/*! ../internals/global */ "../../node_modules/core-js/internals/global.js");
4475
+ var isCallable = __webpack_require__(/*! ../internals/is-callable */ "../../node_modules/core-js/internals/is-callable.js");
4385
4476
 
4386
- module.exports = function (it) {
4387
- if (!isObject(it) && it !== null) {
4388
- throw TypeError("Can't set " + String(it) + ' as a prototype');
4389
- } return it;
4477
+ var String = global.String;
4478
+ var TypeError = global.TypeError;
4479
+
4480
+ module.exports = function (argument) {
4481
+ if (typeof argument == 'object' || isCallable(argument)) return argument;
4482
+ throw TypeError("Can't set " + String(argument) + ' as a prototype');
4390
4483
  };
4391
4484
 
4392
4485
 
@@ -4396,12 +4489,16 @@ module.exports = function (it) {
4396
4489
  /*!***********************************************************!*\
4397
4490
  !*** ../../node_modules/core-js/internals/an-instance.js ***!
4398
4491
  \***********************************************************/
4399
- /***/ ((module) => {
4492
+ /***/ ((module, __unused_webpack_exports, __webpack_require__) => {
4493
+
4494
+ var global = __webpack_require__(/*! ../internals/global */ "../../node_modules/core-js/internals/global.js");
4495
+ var isPrototypeOf = __webpack_require__(/*! ../internals/object-is-prototype-of */ "../../node_modules/core-js/internals/object-is-prototype-of.js");
4496
+
4497
+ var TypeError = global.TypeError;
4400
4498
 
4401
- module.exports = function (it, Constructor, name) {
4402
- if (!(it instanceof Constructor)) {
4403
- throw TypeError('Incorrect ' + (name ? name + ' ' : '') + 'invocation');
4404
- } return it;
4499
+ module.exports = function (it, Prototype) {
4500
+ if (isPrototypeOf(Prototype, it)) return it;
4501
+ throw TypeError('Incorrect invocation');
4405
4502
  };
4406
4503
 
4407
4504
 
@@ -4413,12 +4510,16 @@ module.exports = function (it, Constructor, name) {
4413
4510
  \*********************************************************/
4414
4511
  /***/ ((module, __unused_webpack_exports, __webpack_require__) => {
4415
4512
 
4513
+ var global = __webpack_require__(/*! ../internals/global */ "../../node_modules/core-js/internals/global.js");
4416
4514
  var isObject = __webpack_require__(/*! ../internals/is-object */ "../../node_modules/core-js/internals/is-object.js");
4417
4515
 
4418
- module.exports = function (it) {
4419
- if (!isObject(it)) {
4420
- throw TypeError(String(it) + ' is not an object');
4421
- } return it;
4516
+ var String = global.String;
4517
+ var TypeError = global.TypeError;
4518
+
4519
+ // `Assert: Type(argument) is Object`
4520
+ module.exports = function (argument) {
4521
+ if (isObject(argument)) return argument;
4522
+ throw TypeError(String(argument) + ' is not an object');
4422
4523
  };
4423
4524
 
4424
4525
 
@@ -4431,14 +4532,14 @@ module.exports = function (it) {
4431
4532
  /***/ ((module, __unused_webpack_exports, __webpack_require__) => {
4432
4533
 
4433
4534
  var toIndexedObject = __webpack_require__(/*! ../internals/to-indexed-object */ "../../node_modules/core-js/internals/to-indexed-object.js");
4434
- var toLength = __webpack_require__(/*! ../internals/to-length */ "../../node_modules/core-js/internals/to-length.js");
4435
4535
  var toAbsoluteIndex = __webpack_require__(/*! ../internals/to-absolute-index */ "../../node_modules/core-js/internals/to-absolute-index.js");
4536
+ var lengthOfArrayLike = __webpack_require__(/*! ../internals/length-of-array-like */ "../../node_modules/core-js/internals/length-of-array-like.js");
4436
4537
 
4437
4538
  // `Array.prototype.{ indexOf, includes }` methods implementation
4438
4539
  var createMethod = function (IS_INCLUDES) {
4439
4540
  return function ($this, el, fromIndex) {
4440
4541
  var O = toIndexedObject($this);
4441
- var length = toLength(O.length);
4542
+ var length = lengthOfArrayLike(O);
4442
4543
  var index = toAbsoluteIndex(fromIndex, length);
4443
4544
  var value;
4444
4545
  // Array#includes uses SameValueZero equality algorithm
@@ -4464,6 +4565,19 @@ module.exports = {
4464
4565
  };
4465
4566
 
4466
4567
 
4568
+ /***/ }),
4569
+
4570
+ /***/ "../../node_modules/core-js/internals/array-slice.js":
4571
+ /*!***********************************************************!*\
4572
+ !*** ../../node_modules/core-js/internals/array-slice.js ***!
4573
+ \***********************************************************/
4574
+ /***/ ((module, __unused_webpack_exports, __webpack_require__) => {
4575
+
4576
+ var uncurryThis = __webpack_require__(/*! ../internals/function-uncurry-this */ "../../node_modules/core-js/internals/function-uncurry-this.js");
4577
+
4578
+ module.exports = uncurryThis([].slice);
4579
+
4580
+
4467
4581
  /***/ }),
4468
4582
 
4469
4583
  /***/ "../../node_modules/core-js/internals/check-correctness-of-iteration.js":
@@ -4518,12 +4632,15 @@ module.exports = function (exec, SKIP_CLOSING) {
4518
4632
  /*!***********************************************************!*\
4519
4633
  !*** ../../node_modules/core-js/internals/classof-raw.js ***!
4520
4634
  \***********************************************************/
4521
- /***/ ((module) => {
4635
+ /***/ ((module, __unused_webpack_exports, __webpack_require__) => {
4522
4636
 
4523
- var toString = {}.toString;
4637
+ var uncurryThis = __webpack_require__(/*! ../internals/function-uncurry-this */ "../../node_modules/core-js/internals/function-uncurry-this.js");
4638
+
4639
+ var toString = uncurryThis({}.toString);
4640
+ var stringSlice = uncurryThis(''.slice);
4524
4641
 
4525
4642
  module.exports = function (it) {
4526
- return toString.call(it).slice(8, -1);
4643
+ return stringSlice(toString(it), 8, -1);
4527
4644
  };
4528
4645
 
4529
4646
 
@@ -4535,11 +4652,15 @@ module.exports = function (it) {
4535
4652
  \*******************************************************/
4536
4653
  /***/ ((module, __unused_webpack_exports, __webpack_require__) => {
4537
4654
 
4655
+ var global = __webpack_require__(/*! ../internals/global */ "../../node_modules/core-js/internals/global.js");
4538
4656
  var TO_STRING_TAG_SUPPORT = __webpack_require__(/*! ../internals/to-string-tag-support */ "../../node_modules/core-js/internals/to-string-tag-support.js");
4657
+ var isCallable = __webpack_require__(/*! ../internals/is-callable */ "../../node_modules/core-js/internals/is-callable.js");
4539
4658
  var classofRaw = __webpack_require__(/*! ../internals/classof-raw */ "../../node_modules/core-js/internals/classof-raw.js");
4540
4659
  var wellKnownSymbol = __webpack_require__(/*! ../internals/well-known-symbol */ "../../node_modules/core-js/internals/well-known-symbol.js");
4541
4660
 
4542
4661
  var TO_STRING_TAG = wellKnownSymbol('toStringTag');
4662
+ var Object = global.Object;
4663
+
4543
4664
  // ES3 wrong here
4544
4665
  var CORRECT_ARGUMENTS = classofRaw(function () { return arguments; }()) == 'Arguments';
4545
4666
 
@@ -4559,7 +4680,7 @@ module.exports = TO_STRING_TAG_SUPPORT ? classofRaw : function (it) {
4559
4680
  // builtinTag case
4560
4681
  : CORRECT_ARGUMENTS ? classofRaw(O)
4561
4682
  // ES3 arguments fallback
4562
- : (result = classofRaw(O)) == 'Object' && typeof O.callee == 'function' ? 'Arguments' : result;
4683
+ : (result = classofRaw(O)) == 'Object' && isCallable(O.callee) ? 'Arguments' : result;
4563
4684
  };
4564
4685
 
4565
4686
 
@@ -4571,7 +4692,7 @@ module.exports = TO_STRING_TAG_SUPPORT ? classofRaw : function (it) {
4571
4692
  \***************************************************************************/
4572
4693
  /***/ ((module, __unused_webpack_exports, __webpack_require__) => {
4573
4694
 
4574
- var has = __webpack_require__(/*! ../internals/has */ "../../node_modules/core-js/internals/has.js");
4695
+ var hasOwn = __webpack_require__(/*! ../internals/has-own-property */ "../../node_modules/core-js/internals/has-own-property.js");
4575
4696
  var ownKeys = __webpack_require__(/*! ../internals/own-keys */ "../../node_modules/core-js/internals/own-keys.js");
4576
4697
  var getOwnPropertyDescriptorModule = __webpack_require__(/*! ../internals/object-get-own-property-descriptor */ "../../node_modules/core-js/internals/object-get-own-property-descriptor.js");
4577
4698
  var definePropertyModule = __webpack_require__(/*! ../internals/object-define-property */ "../../node_modules/core-js/internals/object-define-property.js");
@@ -4582,7 +4703,7 @@ module.exports = function (target, source) {
4582
4703
  var getOwnPropertyDescriptor = getOwnPropertyDescriptorModule.f;
4583
4704
  for (var i = 0; i < keys.length; i++) {
4584
4705
  var key = keys[i];
4585
- if (!has(target, key)) defineProperty(target, key, getOwnPropertyDescriptor(source, key));
4706
+ if (!hasOwn(target, key)) defineProperty(target, key, getOwnPropertyDescriptor(source, key));
4586
4707
  }
4587
4708
  };
4588
4709
 
@@ -4673,6 +4794,20 @@ module.exports = function (it) {
4673
4794
  module.exports = typeof window == 'object';
4674
4795
 
4675
4796
 
4797
+ /***/ }),
4798
+
4799
+ /***/ "../../node_modules/core-js/internals/engine-is-ios-pebble.js":
4800
+ /*!********************************************************************!*\
4801
+ !*** ../../node_modules/core-js/internals/engine-is-ios-pebble.js ***!
4802
+ \********************************************************************/
4803
+ /***/ ((module, __unused_webpack_exports, __webpack_require__) => {
4804
+
4805
+ var userAgent = __webpack_require__(/*! ../internals/engine-user-agent */ "../../node_modules/core-js/internals/engine-user-agent.js");
4806
+ var global = __webpack_require__(/*! ../internals/global */ "../../node_modules/core-js/internals/global.js");
4807
+
4808
+ module.exports = /ipad|iphone|ipod/i.test(userAgent) && global.Pebble !== undefined;
4809
+
4810
+
4676
4811
  /***/ }),
4677
4812
 
4678
4813
  /***/ "../../node_modules/core-js/internals/engine-is-ios.js":
@@ -4683,7 +4818,7 @@ module.exports = typeof window == 'object';
4683
4818
 
4684
4819
  var userAgent = __webpack_require__(/*! ../internals/engine-user-agent */ "../../node_modules/core-js/internals/engine-user-agent.js");
4685
4820
 
4686
- module.exports = /(?:iphone|ipod|ipad).*applewebkit/i.test(userAgent);
4821
+ module.exports = /(?:ipad|iphone|ipod).*applewebkit/i.test(userAgent);
4687
4822
 
4688
4823
 
4689
4824
  /***/ }),
@@ -4745,16 +4880,22 @@ var match, version;
4745
4880
 
4746
4881
  if (v8) {
4747
4882
  match = v8.split('.');
4748
- version = match[0] < 4 ? 1 : match[0] + match[1];
4749
- } else if (userAgent) {
4883
+ // in old Chrome, versions of V8 isn't V8 = Chrome / 10
4884
+ // but their correct versions are not interesting for us
4885
+ version = match[0] > 0 && match[0] < 4 ? 1 : +(match[0] + match[1]);
4886
+ }
4887
+
4888
+ // BrowserFS NodeJS `process` polyfill incorrectly set `.v8` to `0.0`
4889
+ // so check `userAgent` even if `.v8` exists, but 0
4890
+ if (!version && userAgent) {
4750
4891
  match = userAgent.match(/Edge\/(\d+)/);
4751
4892
  if (!match || match[1] >= 74) {
4752
4893
  match = userAgent.match(/Chrome\/(\d+)/);
4753
- if (match) version = match[1];
4894
+ if (match) version = +match[1];
4754
4895
  }
4755
4896
  }
4756
4897
 
4757
- module.exports = version && +version;
4898
+ module.exports = version;
4758
4899
 
4759
4900
 
4760
4901
  /***/ }),
@@ -4786,7 +4927,7 @@ module.exports = [
4786
4927
  /***/ ((module, __unused_webpack_exports, __webpack_require__) => {
4787
4928
 
4788
4929
  var global = __webpack_require__(/*! ../internals/global */ "../../node_modules/core-js/internals/global.js");
4789
- var getOwnPropertyDescriptor = __webpack_require__(/*! ../internals/object-get-own-property-descriptor */ "../../node_modules/core-js/internals/object-get-own-property-descriptor.js").f;
4930
+ var getOwnPropertyDescriptor = (__webpack_require__(/*! ../internals/object-get-own-property-descriptor */ "../../node_modules/core-js/internals/object-get-own-property-descriptor.js").f);
4790
4931
  var createNonEnumerableProperty = __webpack_require__(/*! ../internals/create-non-enumerable-property */ "../../node_modules/core-js/internals/create-non-enumerable-property.js");
4791
4932
  var redefine = __webpack_require__(/*! ../internals/redefine */ "../../node_modules/core-js/internals/redefine.js");
4792
4933
  var setGlobal = __webpack_require__(/*! ../internals/set-global */ "../../node_modules/core-js/internals/set-global.js");
@@ -4806,6 +4947,7 @@ var isForced = __webpack_require__(/*! ../internals/is-forced */ "../../node_mod
4806
4947
  options.sham - add a flag to not completely full polyfills
4807
4948
  options.enumerable - export as enumerable property
4808
4949
  options.noTargetGet - prevent calling a getter on target
4950
+ options.name - the .name of the function if it does not match the key
4809
4951
  */
4810
4952
  module.exports = function (options, source) {
4811
4953
  var TARGET = options.target;
@@ -4828,7 +4970,7 @@ module.exports = function (options, source) {
4828
4970
  FORCED = isForced(GLOBAL ? key : TARGET + (STATIC ? '.' : '#') + key, options.forced);
4829
4971
  // contained in target
4830
4972
  if (!FORCED && targetProperty !== undefined) {
4831
- if (typeof sourceProperty === typeof targetProperty) continue;
4973
+ if (typeof sourceProperty == typeof targetProperty) continue;
4832
4974
  copyConstructorProperties(sourceProperty, targetProperty);
4833
4975
  }
4834
4976
  // add a flag to not completely full polyfills
@@ -4858,6 +5000,25 @@ module.exports = function (exec) {
4858
5000
  };
4859
5001
 
4860
5002
 
5003
+ /***/ }),
5004
+
5005
+ /***/ "../../node_modules/core-js/internals/function-apply.js":
5006
+ /*!**************************************************************!*\
5007
+ !*** ../../node_modules/core-js/internals/function-apply.js ***!
5008
+ \**************************************************************/
5009
+ /***/ ((module) => {
5010
+
5011
+ var FunctionPrototype = Function.prototype;
5012
+ var apply = FunctionPrototype.apply;
5013
+ var bind = FunctionPrototype.bind;
5014
+ var call = FunctionPrototype.call;
5015
+
5016
+ // eslint-disable-next-line es/no-reflect -- safe
5017
+ module.exports = typeof Reflect == 'object' && Reflect.apply || (bind ? call.bind(apply) : function () {
5018
+ return call.apply(apply, arguments);
5019
+ });
5020
+
5021
+
4861
5022
  /***/ }),
4862
5023
 
4863
5024
  /***/ "../../node_modules/core-js/internals/function-bind-context.js":
@@ -4866,32 +5027,84 @@ module.exports = function (exec) {
4866
5027
  \*********************************************************************/
4867
5028
  /***/ ((module, __unused_webpack_exports, __webpack_require__) => {
4868
5029
 
4869
- var aFunction = __webpack_require__(/*! ../internals/a-function */ "../../node_modules/core-js/internals/a-function.js");
5030
+ var uncurryThis = __webpack_require__(/*! ../internals/function-uncurry-this */ "../../node_modules/core-js/internals/function-uncurry-this.js");
5031
+ var aCallable = __webpack_require__(/*! ../internals/a-callable */ "../../node_modules/core-js/internals/a-callable.js");
5032
+
5033
+ var bind = uncurryThis(uncurryThis.bind);
4870
5034
 
4871
5035
  // optional / simple context binding
4872
- module.exports = function (fn, that, length) {
4873
- aFunction(fn);
4874
- if (that === undefined) return fn;
4875
- switch (length) {
4876
- case 0: return function () {
4877
- return fn.call(that);
4878
- };
4879
- case 1: return function (a) {
4880
- return fn.call(that, a);
4881
- };
4882
- case 2: return function (a, b) {
4883
- return fn.call(that, a, b);
4884
- };
4885
- case 3: return function (a, b, c) {
4886
- return fn.call(that, a, b, c);
4887
- };
4888
- }
4889
- return function (/* ...args */) {
5036
+ module.exports = function (fn, that) {
5037
+ aCallable(fn);
5038
+ return that === undefined ? fn : bind ? bind(fn, that) : function (/* ...args */) {
4890
5039
  return fn.apply(that, arguments);
4891
5040
  };
4892
5041
  };
4893
5042
 
4894
5043
 
5044
+ /***/ }),
5045
+
5046
+ /***/ "../../node_modules/core-js/internals/function-call.js":
5047
+ /*!*************************************************************!*\
5048
+ !*** ../../node_modules/core-js/internals/function-call.js ***!
5049
+ \*************************************************************/
5050
+ /***/ ((module) => {
5051
+
5052
+ var call = Function.prototype.call;
5053
+
5054
+ module.exports = call.bind ? call.bind(call) : function () {
5055
+ return call.apply(call, arguments);
5056
+ };
5057
+
5058
+
5059
+ /***/ }),
5060
+
5061
+ /***/ "../../node_modules/core-js/internals/function-name.js":
5062
+ /*!*************************************************************!*\
5063
+ !*** ../../node_modules/core-js/internals/function-name.js ***!
5064
+ \*************************************************************/
5065
+ /***/ ((module, __unused_webpack_exports, __webpack_require__) => {
5066
+
5067
+ var DESCRIPTORS = __webpack_require__(/*! ../internals/descriptors */ "../../node_modules/core-js/internals/descriptors.js");
5068
+ var hasOwn = __webpack_require__(/*! ../internals/has-own-property */ "../../node_modules/core-js/internals/has-own-property.js");
5069
+
5070
+ var FunctionPrototype = Function.prototype;
5071
+ // eslint-disable-next-line es/no-object-getownpropertydescriptor -- safe
5072
+ var getDescriptor = DESCRIPTORS && Object.getOwnPropertyDescriptor;
5073
+
5074
+ var EXISTS = hasOwn(FunctionPrototype, 'name');
5075
+ // additional protection from minified / mangled / dropped function names
5076
+ var PROPER = EXISTS && (function something() { /* empty */ }).name === 'something';
5077
+ var CONFIGURABLE = EXISTS && (!DESCRIPTORS || (DESCRIPTORS && getDescriptor(FunctionPrototype, 'name').configurable));
5078
+
5079
+ module.exports = {
5080
+ EXISTS: EXISTS,
5081
+ PROPER: PROPER,
5082
+ CONFIGURABLE: CONFIGURABLE
5083
+ };
5084
+
5085
+
5086
+ /***/ }),
5087
+
5088
+ /***/ "../../node_modules/core-js/internals/function-uncurry-this.js":
5089
+ /*!*********************************************************************!*\
5090
+ !*** ../../node_modules/core-js/internals/function-uncurry-this.js ***!
5091
+ \*********************************************************************/
5092
+ /***/ ((module) => {
5093
+
5094
+ var FunctionPrototype = Function.prototype;
5095
+ var bind = FunctionPrototype.bind;
5096
+ var call = FunctionPrototype.call;
5097
+ var callBind = bind && bind.bind(call);
5098
+
5099
+ module.exports = bind ? function (fn) {
5100
+ return fn && callBind(call, fn);
5101
+ } : function (fn) {
5102
+ return fn && function () {
5103
+ return call.apply(fn, arguments);
5104
+ };
5105
+ };
5106
+
5107
+
4895
5108
  /***/ }),
4896
5109
 
4897
5110
  /***/ "../../node_modules/core-js/internals/get-built-in.js":
@@ -4901,9 +5114,10 @@ module.exports = function (fn, that, length) {
4901
5114
  /***/ ((module, __unused_webpack_exports, __webpack_require__) => {
4902
5115
 
4903
5116
  var global = __webpack_require__(/*! ../internals/global */ "../../node_modules/core-js/internals/global.js");
5117
+ var isCallable = __webpack_require__(/*! ../internals/is-callable */ "../../node_modules/core-js/internals/is-callable.js");
4904
5118
 
4905
- var aFunction = function (variable) {
4906
- return typeof variable == 'function' ? variable : undefined;
5119
+ var aFunction = function (argument) {
5120
+ return isCallable(argument) ? argument : undefined;
4907
5121
  };
4908
5122
 
4909
5123
  module.exports = function (namespace, method) {
@@ -4920,18 +5134,61 @@ module.exports = function (namespace, method) {
4920
5134
  /***/ ((module, __unused_webpack_exports, __webpack_require__) => {
4921
5135
 
4922
5136
  var classof = __webpack_require__(/*! ../internals/classof */ "../../node_modules/core-js/internals/classof.js");
5137
+ var getMethod = __webpack_require__(/*! ../internals/get-method */ "../../node_modules/core-js/internals/get-method.js");
4923
5138
  var Iterators = __webpack_require__(/*! ../internals/iterators */ "../../node_modules/core-js/internals/iterators.js");
4924
5139
  var wellKnownSymbol = __webpack_require__(/*! ../internals/well-known-symbol */ "../../node_modules/core-js/internals/well-known-symbol.js");
4925
5140
 
4926
5141
  var ITERATOR = wellKnownSymbol('iterator');
4927
5142
 
4928
5143
  module.exports = function (it) {
4929
- if (it != undefined) return it[ITERATOR]
4930
- || it['@@iterator']
5144
+ if (it != undefined) return getMethod(it, ITERATOR)
5145
+ || getMethod(it, '@@iterator')
4931
5146
  || Iterators[classof(it)];
4932
5147
  };
4933
5148
 
4934
5149
 
5150
+ /***/ }),
5151
+
5152
+ /***/ "../../node_modules/core-js/internals/get-iterator.js":
5153
+ /*!************************************************************!*\
5154
+ !*** ../../node_modules/core-js/internals/get-iterator.js ***!
5155
+ \************************************************************/
5156
+ /***/ ((module, __unused_webpack_exports, __webpack_require__) => {
5157
+
5158
+ var global = __webpack_require__(/*! ../internals/global */ "../../node_modules/core-js/internals/global.js");
5159
+ var call = __webpack_require__(/*! ../internals/function-call */ "../../node_modules/core-js/internals/function-call.js");
5160
+ var aCallable = __webpack_require__(/*! ../internals/a-callable */ "../../node_modules/core-js/internals/a-callable.js");
5161
+ var anObject = __webpack_require__(/*! ../internals/an-object */ "../../node_modules/core-js/internals/an-object.js");
5162
+ var tryToString = __webpack_require__(/*! ../internals/try-to-string */ "../../node_modules/core-js/internals/try-to-string.js");
5163
+ var getIteratorMethod = __webpack_require__(/*! ../internals/get-iterator-method */ "../../node_modules/core-js/internals/get-iterator-method.js");
5164
+
5165
+ var TypeError = global.TypeError;
5166
+
5167
+ module.exports = function (argument, usingIterator) {
5168
+ var iteratorMethod = arguments.length < 2 ? getIteratorMethod(argument) : usingIterator;
5169
+ if (aCallable(iteratorMethod)) return anObject(call(iteratorMethod, argument));
5170
+ throw TypeError(tryToString(argument) + ' is not iterable');
5171
+ };
5172
+
5173
+
5174
+ /***/ }),
5175
+
5176
+ /***/ "../../node_modules/core-js/internals/get-method.js":
5177
+ /*!**********************************************************!*\
5178
+ !*** ../../node_modules/core-js/internals/get-method.js ***!
5179
+ \**********************************************************/
5180
+ /***/ ((module, __unused_webpack_exports, __webpack_require__) => {
5181
+
5182
+ var aCallable = __webpack_require__(/*! ../internals/a-callable */ "../../node_modules/core-js/internals/a-callable.js");
5183
+
5184
+ // `GetMethod` abstract operation
5185
+ // https://tc39.es/ecma262/#sec-getmethod
5186
+ module.exports = function (V, P) {
5187
+ var func = V[P];
5188
+ return func == null ? undefined : aCallable(func);
5189
+ };
5190
+
5191
+
4935
5192
  /***/ }),
4936
5193
 
4937
5194
  /***/ "../../node_modules/core-js/internals/global.js":
@@ -4958,18 +5215,21 @@ module.exports =
4958
5215
 
4959
5216
  /***/ }),
4960
5217
 
4961
- /***/ "../../node_modules/core-js/internals/has.js":
4962
- /*!***************************************************!*\
4963
- !*** ../../node_modules/core-js/internals/has.js ***!
4964
- \***************************************************/
5218
+ /***/ "../../node_modules/core-js/internals/has-own-property.js":
5219
+ /*!****************************************************************!*\
5220
+ !*** ../../node_modules/core-js/internals/has-own-property.js ***!
5221
+ \****************************************************************/
4965
5222
  /***/ ((module, __unused_webpack_exports, __webpack_require__) => {
4966
5223
 
5224
+ var uncurryThis = __webpack_require__(/*! ../internals/function-uncurry-this */ "../../node_modules/core-js/internals/function-uncurry-this.js");
4967
5225
  var toObject = __webpack_require__(/*! ../internals/to-object */ "../../node_modules/core-js/internals/to-object.js");
4968
5226
 
4969
- var hasOwnProperty = {}.hasOwnProperty;
5227
+ var hasOwnProperty = uncurryThis({}.hasOwnProperty);
4970
5228
 
5229
+ // `HasOwnProperty` abstract operation
5230
+ // https://tc39.es/ecma262/#sec-hasownproperty
4971
5231
  module.exports = Object.hasOwn || function hasOwn(it, key) {
4972
- return hasOwnProperty.call(toObject(it), key);
5232
+ return hasOwnProperty(toObject(it), key);
4973
5233
  };
4974
5234
 
4975
5235
 
@@ -4997,7 +5257,7 @@ var global = __webpack_require__(/*! ../internals/global */ "../../node_modules/
4997
5257
  module.exports = function (a, b) {
4998
5258
  var console = global.console;
4999
5259
  if (console && console.error) {
5000
- arguments.length === 1 ? console.error(a) : console.error(a, b);
5260
+ arguments.length == 1 ? console.error(a) : console.error(a, b);
5001
5261
  }
5002
5262
  };
5003
5263
 
@@ -5044,10 +5304,13 @@ module.exports = !DESCRIPTORS && !fails(function () {
5044
5304
  \**************************************************************/
5045
5305
  /***/ ((module, __unused_webpack_exports, __webpack_require__) => {
5046
5306
 
5307
+ var global = __webpack_require__(/*! ../internals/global */ "../../node_modules/core-js/internals/global.js");
5308
+ var uncurryThis = __webpack_require__(/*! ../internals/function-uncurry-this */ "../../node_modules/core-js/internals/function-uncurry-this.js");
5047
5309
  var fails = __webpack_require__(/*! ../internals/fails */ "../../node_modules/core-js/internals/fails.js");
5048
5310
  var classof = __webpack_require__(/*! ../internals/classof-raw */ "../../node_modules/core-js/internals/classof-raw.js");
5049
5311
 
5050
- var split = ''.split;
5312
+ var Object = global.Object;
5313
+ var split = uncurryThis(''.split);
5051
5314
 
5052
5315
  // fallback for non-array-like ES3 and non-enumerable old V8 strings
5053
5316
  module.exports = fails(function () {
@@ -5055,7 +5318,7 @@ module.exports = fails(function () {
5055
5318
  // eslint-disable-next-line no-prototype-builtins -- safe
5056
5319
  return !Object('z').propertyIsEnumerable(0);
5057
5320
  }) ? function (it) {
5058
- return classof(it) == 'String' ? split.call(it, '') : Object(it);
5321
+ return classof(it) == 'String' ? split(it, '') : Object(it);
5059
5322
  } : Object;
5060
5323
 
5061
5324
 
@@ -5067,14 +5330,16 @@ module.exports = fails(function () {
5067
5330
  \**************************************************************/
5068
5331
  /***/ ((module, __unused_webpack_exports, __webpack_require__) => {
5069
5332
 
5333
+ var uncurryThis = __webpack_require__(/*! ../internals/function-uncurry-this */ "../../node_modules/core-js/internals/function-uncurry-this.js");
5334
+ var isCallable = __webpack_require__(/*! ../internals/is-callable */ "../../node_modules/core-js/internals/is-callable.js");
5070
5335
  var store = __webpack_require__(/*! ../internals/shared-store */ "../../node_modules/core-js/internals/shared-store.js");
5071
5336
 
5072
- var functionToString = Function.toString;
5337
+ var functionToString = uncurryThis(Function.toString);
5073
5338
 
5074
5339
  // this helper broken in `core-js@3.4.1-3.4.4`, so we can't use `shared` helper
5075
- if (typeof store.inspectSource != 'function') {
5340
+ if (!isCallable(store.inspectSource)) {
5076
5341
  store.inspectSource = function (it) {
5077
- return functionToString.call(it);
5342
+ return functionToString(it);
5078
5343
  };
5079
5344
  }
5080
5345
 
@@ -5091,14 +5356,16 @@ module.exports = store.inspectSource;
5091
5356
 
5092
5357
  var NATIVE_WEAK_MAP = __webpack_require__(/*! ../internals/native-weak-map */ "../../node_modules/core-js/internals/native-weak-map.js");
5093
5358
  var global = __webpack_require__(/*! ../internals/global */ "../../node_modules/core-js/internals/global.js");
5359
+ var uncurryThis = __webpack_require__(/*! ../internals/function-uncurry-this */ "../../node_modules/core-js/internals/function-uncurry-this.js");
5094
5360
  var isObject = __webpack_require__(/*! ../internals/is-object */ "../../node_modules/core-js/internals/is-object.js");
5095
5361
  var createNonEnumerableProperty = __webpack_require__(/*! ../internals/create-non-enumerable-property */ "../../node_modules/core-js/internals/create-non-enumerable-property.js");
5096
- var objectHas = __webpack_require__(/*! ../internals/has */ "../../node_modules/core-js/internals/has.js");
5362
+ var hasOwn = __webpack_require__(/*! ../internals/has-own-property */ "../../node_modules/core-js/internals/has-own-property.js");
5097
5363
  var shared = __webpack_require__(/*! ../internals/shared-store */ "../../node_modules/core-js/internals/shared-store.js");
5098
5364
  var sharedKey = __webpack_require__(/*! ../internals/shared-key */ "../../node_modules/core-js/internals/shared-key.js");
5099
5365
  var hiddenKeys = __webpack_require__(/*! ../internals/hidden-keys */ "../../node_modules/core-js/internals/hidden-keys.js");
5100
5366
 
5101
5367
  var OBJECT_ALREADY_INITIALIZED = 'Object already initialized';
5368
+ var TypeError = global.TypeError;
5102
5369
  var WeakMap = global.WeakMap;
5103
5370
  var set, get, has;
5104
5371
 
@@ -5117,35 +5384,35 @@ var getterFor = function (TYPE) {
5117
5384
 
5118
5385
  if (NATIVE_WEAK_MAP || shared.state) {
5119
5386
  var store = shared.state || (shared.state = new WeakMap());
5120
- var wmget = store.get;
5121
- var wmhas = store.has;
5122
- var wmset = store.set;
5387
+ var wmget = uncurryThis(store.get);
5388
+ var wmhas = uncurryThis(store.has);
5389
+ var wmset = uncurryThis(store.set);
5123
5390
  set = function (it, metadata) {
5124
- if (wmhas.call(store, it)) throw new TypeError(OBJECT_ALREADY_INITIALIZED);
5391
+ if (wmhas(store, it)) throw new TypeError(OBJECT_ALREADY_INITIALIZED);
5125
5392
  metadata.facade = it;
5126
- wmset.call(store, it, metadata);
5393
+ wmset(store, it, metadata);
5127
5394
  return metadata;
5128
5395
  };
5129
5396
  get = function (it) {
5130
- return wmget.call(store, it) || {};
5397
+ return wmget(store, it) || {};
5131
5398
  };
5132
5399
  has = function (it) {
5133
- return wmhas.call(store, it);
5400
+ return wmhas(store, it);
5134
5401
  };
5135
5402
  } else {
5136
5403
  var STATE = sharedKey('state');
5137
5404
  hiddenKeys[STATE] = true;
5138
5405
  set = function (it, metadata) {
5139
- if (objectHas(it, STATE)) throw new TypeError(OBJECT_ALREADY_INITIALIZED);
5406
+ if (hasOwn(it, STATE)) throw new TypeError(OBJECT_ALREADY_INITIALIZED);
5140
5407
  metadata.facade = it;
5141
5408
  createNonEnumerableProperty(it, STATE, metadata);
5142
5409
  return metadata;
5143
5410
  };
5144
5411
  get = function (it) {
5145
- return objectHas(it, STATE) ? it[STATE] : {};
5412
+ return hasOwn(it, STATE) ? it[STATE] : {};
5146
5413
  };
5147
5414
  has = function (it) {
5148
- return objectHas(it, STATE);
5415
+ return hasOwn(it, STATE);
5149
5416
  };
5150
5417
  }
5151
5418
 
@@ -5180,13 +5447,82 @@ module.exports = function (it) {
5180
5447
 
5181
5448
  /***/ }),
5182
5449
 
5183
- /***/ "../../node_modules/core-js/internals/is-forced.js":
5184
- /*!*********************************************************!*\
5185
- !*** ../../node_modules/core-js/internals/is-forced.js ***!
5186
- \*********************************************************/
5187
- /***/ ((module, __unused_webpack_exports, __webpack_require__) => {
5450
+ /***/ "../../node_modules/core-js/internals/is-callable.js":
5451
+ /*!***********************************************************!*\
5452
+ !*** ../../node_modules/core-js/internals/is-callable.js ***!
5453
+ \***********************************************************/
5454
+ /***/ ((module) => {
5188
5455
 
5189
- var fails = __webpack_require__(/*! ../internals/fails */ "../../node_modules/core-js/internals/fails.js");
5456
+ // `IsCallable` abstract operation
5457
+ // https://tc39.es/ecma262/#sec-iscallable
5458
+ module.exports = function (argument) {
5459
+ return typeof argument == 'function';
5460
+ };
5461
+
5462
+
5463
+ /***/ }),
5464
+
5465
+ /***/ "../../node_modules/core-js/internals/is-constructor.js":
5466
+ /*!**************************************************************!*\
5467
+ !*** ../../node_modules/core-js/internals/is-constructor.js ***!
5468
+ \**************************************************************/
5469
+ /***/ ((module, __unused_webpack_exports, __webpack_require__) => {
5470
+
5471
+ var uncurryThis = __webpack_require__(/*! ../internals/function-uncurry-this */ "../../node_modules/core-js/internals/function-uncurry-this.js");
5472
+ var fails = __webpack_require__(/*! ../internals/fails */ "../../node_modules/core-js/internals/fails.js");
5473
+ var isCallable = __webpack_require__(/*! ../internals/is-callable */ "../../node_modules/core-js/internals/is-callable.js");
5474
+ var classof = __webpack_require__(/*! ../internals/classof */ "../../node_modules/core-js/internals/classof.js");
5475
+ var getBuiltIn = __webpack_require__(/*! ../internals/get-built-in */ "../../node_modules/core-js/internals/get-built-in.js");
5476
+ var inspectSource = __webpack_require__(/*! ../internals/inspect-source */ "../../node_modules/core-js/internals/inspect-source.js");
5477
+
5478
+ var noop = function () { /* empty */ };
5479
+ var empty = [];
5480
+ var construct = getBuiltIn('Reflect', 'construct');
5481
+ var constructorRegExp = /^\s*(?:class|function)\b/;
5482
+ var exec = uncurryThis(constructorRegExp.exec);
5483
+ var INCORRECT_TO_STRING = !constructorRegExp.exec(noop);
5484
+
5485
+ var isConstructorModern = function (argument) {
5486
+ if (!isCallable(argument)) return false;
5487
+ try {
5488
+ construct(noop, empty, argument);
5489
+ return true;
5490
+ } catch (error) {
5491
+ return false;
5492
+ }
5493
+ };
5494
+
5495
+ var isConstructorLegacy = function (argument) {
5496
+ if (!isCallable(argument)) return false;
5497
+ switch (classof(argument)) {
5498
+ case 'AsyncFunction':
5499
+ case 'GeneratorFunction':
5500
+ case 'AsyncGeneratorFunction': return false;
5501
+ // we can't check .prototype since constructors produced by .bind haven't it
5502
+ } return INCORRECT_TO_STRING || !!exec(constructorRegExp, inspectSource(argument));
5503
+ };
5504
+
5505
+ // `IsConstructor` abstract operation
5506
+ // https://tc39.es/ecma262/#sec-isconstructor
5507
+ module.exports = !construct || fails(function () {
5508
+ var called;
5509
+ return isConstructorModern(isConstructorModern.call)
5510
+ || !isConstructorModern(Object)
5511
+ || !isConstructorModern(function () { called = true; })
5512
+ || called;
5513
+ }) ? isConstructorLegacy : isConstructorModern;
5514
+
5515
+
5516
+ /***/ }),
5517
+
5518
+ /***/ "../../node_modules/core-js/internals/is-forced.js":
5519
+ /*!*********************************************************!*\
5520
+ !*** ../../node_modules/core-js/internals/is-forced.js ***!
5521
+ \*********************************************************/
5522
+ /***/ ((module, __unused_webpack_exports, __webpack_require__) => {
5523
+
5524
+ var fails = __webpack_require__(/*! ../internals/fails */ "../../node_modules/core-js/internals/fails.js");
5525
+ var isCallable = __webpack_require__(/*! ../internals/is-callable */ "../../node_modules/core-js/internals/is-callable.js");
5190
5526
 
5191
5527
  var replacement = /#|\.prototype\./;
5192
5528
 
@@ -5194,7 +5530,7 @@ var isForced = function (feature, detection) {
5194
5530
  var value = data[normalize(feature)];
5195
5531
  return value == POLYFILL ? true
5196
5532
  : value == NATIVE ? false
5197
- : typeof detection == 'function' ? fails(detection)
5533
+ : isCallable(detection) ? fails(detection)
5198
5534
  : !!detection;
5199
5535
  };
5200
5536
 
@@ -5215,10 +5551,12 @@ module.exports = isForced;
5215
5551
  /*!*********************************************************!*\
5216
5552
  !*** ../../node_modules/core-js/internals/is-object.js ***!
5217
5553
  \*********************************************************/
5218
- /***/ ((module) => {
5554
+ /***/ ((module, __unused_webpack_exports, __webpack_require__) => {
5555
+
5556
+ var isCallable = __webpack_require__(/*! ../internals/is-callable */ "../../node_modules/core-js/internals/is-callable.js");
5219
5557
 
5220
5558
  module.exports = function (it) {
5221
- return typeof it === 'object' ? it !== null : typeof it === 'function';
5559
+ return typeof it == 'object' ? it !== null : isCallable(it);
5222
5560
  };
5223
5561
 
5224
5562
 
@@ -5241,14 +5579,19 @@ module.exports = false;
5241
5579
  \*********************************************************/
5242
5580
  /***/ ((module, __unused_webpack_exports, __webpack_require__) => {
5243
5581
 
5582
+ var global = __webpack_require__(/*! ../internals/global */ "../../node_modules/core-js/internals/global.js");
5244
5583
  var getBuiltIn = __webpack_require__(/*! ../internals/get-built-in */ "../../node_modules/core-js/internals/get-built-in.js");
5584
+ var isCallable = __webpack_require__(/*! ../internals/is-callable */ "../../node_modules/core-js/internals/is-callable.js");
5585
+ var isPrototypeOf = __webpack_require__(/*! ../internals/object-is-prototype-of */ "../../node_modules/core-js/internals/object-is-prototype-of.js");
5245
5586
  var USE_SYMBOL_AS_UID = __webpack_require__(/*! ../internals/use-symbol-as-uid */ "../../node_modules/core-js/internals/use-symbol-as-uid.js");
5246
5587
 
5588
+ var Object = global.Object;
5589
+
5247
5590
  module.exports = USE_SYMBOL_AS_UID ? function (it) {
5248
5591
  return typeof it == 'symbol';
5249
5592
  } : function (it) {
5250
5593
  var $Symbol = getBuiltIn('Symbol');
5251
- return typeof $Symbol == 'function' && Object(it) instanceof $Symbol;
5594
+ return isCallable($Symbol) && isPrototypeOf($Symbol.prototype, Object(it));
5252
5595
  };
5253
5596
 
5254
5597
 
@@ -5260,28 +5603,37 @@ module.exports = USE_SYMBOL_AS_UID ? function (it) {
5260
5603
  \*******************************************************/
5261
5604
  /***/ ((module, __unused_webpack_exports, __webpack_require__) => {
5262
5605
 
5606
+ var global = __webpack_require__(/*! ../internals/global */ "../../node_modules/core-js/internals/global.js");
5607
+ var bind = __webpack_require__(/*! ../internals/function-bind-context */ "../../node_modules/core-js/internals/function-bind-context.js");
5608
+ var call = __webpack_require__(/*! ../internals/function-call */ "../../node_modules/core-js/internals/function-call.js");
5263
5609
  var anObject = __webpack_require__(/*! ../internals/an-object */ "../../node_modules/core-js/internals/an-object.js");
5610
+ var tryToString = __webpack_require__(/*! ../internals/try-to-string */ "../../node_modules/core-js/internals/try-to-string.js");
5264
5611
  var isArrayIteratorMethod = __webpack_require__(/*! ../internals/is-array-iterator-method */ "../../node_modules/core-js/internals/is-array-iterator-method.js");
5265
- var toLength = __webpack_require__(/*! ../internals/to-length */ "../../node_modules/core-js/internals/to-length.js");
5266
- var bind = __webpack_require__(/*! ../internals/function-bind-context */ "../../node_modules/core-js/internals/function-bind-context.js");
5612
+ var lengthOfArrayLike = __webpack_require__(/*! ../internals/length-of-array-like */ "../../node_modules/core-js/internals/length-of-array-like.js");
5613
+ var isPrototypeOf = __webpack_require__(/*! ../internals/object-is-prototype-of */ "../../node_modules/core-js/internals/object-is-prototype-of.js");
5614
+ var getIterator = __webpack_require__(/*! ../internals/get-iterator */ "../../node_modules/core-js/internals/get-iterator.js");
5267
5615
  var getIteratorMethod = __webpack_require__(/*! ../internals/get-iterator-method */ "../../node_modules/core-js/internals/get-iterator-method.js");
5268
5616
  var iteratorClose = __webpack_require__(/*! ../internals/iterator-close */ "../../node_modules/core-js/internals/iterator-close.js");
5269
5617
 
5618
+ var TypeError = global.TypeError;
5619
+
5270
5620
  var Result = function (stopped, result) {
5271
5621
  this.stopped = stopped;
5272
5622
  this.result = result;
5273
5623
  };
5274
5624
 
5625
+ var ResultPrototype = Result.prototype;
5626
+
5275
5627
  module.exports = function (iterable, unboundFunction, options) {
5276
5628
  var that = options && options.that;
5277
5629
  var AS_ENTRIES = !!(options && options.AS_ENTRIES);
5278
5630
  var IS_ITERATOR = !!(options && options.IS_ITERATOR);
5279
5631
  var INTERRUPTED = !!(options && options.INTERRUPTED);
5280
- var fn = bind(unboundFunction, that, 1 + AS_ENTRIES + INTERRUPTED);
5632
+ var fn = bind(unboundFunction, that);
5281
5633
  var iterator, iterFn, index, length, result, next, step;
5282
5634
 
5283
5635
  var stop = function (condition) {
5284
- if (iterator) iteratorClose(iterator);
5636
+ if (iterator) iteratorClose(iterator, 'normal', condition);
5285
5637
  return new Result(true, condition);
5286
5638
  };
5287
5639
 
@@ -5296,26 +5648,25 @@ module.exports = function (iterable, unboundFunction, options) {
5296
5648
  iterator = iterable;
5297
5649
  } else {
5298
5650
  iterFn = getIteratorMethod(iterable);
5299
- if (typeof iterFn != 'function') throw TypeError('Target is not iterable');
5651
+ if (!iterFn) throw TypeError(tryToString(iterable) + ' is not iterable');
5300
5652
  // optimisation for array iterators
5301
5653
  if (isArrayIteratorMethod(iterFn)) {
5302
- for (index = 0, length = toLength(iterable.length); length > index; index++) {
5654
+ for (index = 0, length = lengthOfArrayLike(iterable); length > index; index++) {
5303
5655
  result = callFn(iterable[index]);
5304
- if (result && result instanceof Result) return result;
5656
+ if (result && isPrototypeOf(ResultPrototype, result)) return result;
5305
5657
  } return new Result(false);
5306
5658
  }
5307
- iterator = iterFn.call(iterable);
5659
+ iterator = getIterator(iterable, iterFn);
5308
5660
  }
5309
5661
 
5310
5662
  next = iterator.next;
5311
- while (!(step = next.call(iterator)).done) {
5663
+ while (!(step = call(next, iterator)).done) {
5312
5664
  try {
5313
5665
  result = callFn(step.value);
5314
5666
  } catch (error) {
5315
- iteratorClose(iterator);
5316
- throw error;
5667
+ iteratorClose(iterator, 'throw', error);
5317
5668
  }
5318
- if (typeof result == 'object' && result && result instanceof Result) return result;
5669
+ if (typeof result == 'object' && result && isPrototypeOf(ResultPrototype, result)) return result;
5319
5670
  } return new Result(false);
5320
5671
  };
5321
5672
 
@@ -5328,13 +5679,28 @@ module.exports = function (iterable, unboundFunction, options) {
5328
5679
  \**************************************************************/
5329
5680
  /***/ ((module, __unused_webpack_exports, __webpack_require__) => {
5330
5681
 
5682
+ var call = __webpack_require__(/*! ../internals/function-call */ "../../node_modules/core-js/internals/function-call.js");
5331
5683
  var anObject = __webpack_require__(/*! ../internals/an-object */ "../../node_modules/core-js/internals/an-object.js");
5684
+ var getMethod = __webpack_require__(/*! ../internals/get-method */ "../../node_modules/core-js/internals/get-method.js");
5332
5685
 
5333
- module.exports = function (iterator) {
5334
- var returnMethod = iterator['return'];
5335
- if (returnMethod !== undefined) {
5336
- return anObject(returnMethod.call(iterator)).value;
5686
+ module.exports = function (iterator, kind, value) {
5687
+ var innerResult, innerError;
5688
+ anObject(iterator);
5689
+ try {
5690
+ innerResult = getMethod(iterator, 'return');
5691
+ if (!innerResult) {
5692
+ if (kind === 'throw') throw value;
5693
+ return value;
5694
+ }
5695
+ innerResult = call(innerResult, iterator);
5696
+ } catch (error) {
5697
+ innerError = true;
5698
+ innerResult = error;
5337
5699
  }
5700
+ if (kind === 'throw') throw value;
5701
+ if (innerError) throw innerResult;
5702
+ anObject(innerResult);
5703
+ return value;
5338
5704
  };
5339
5705
 
5340
5706
 
@@ -5349,6 +5715,23 @@ module.exports = function (iterator) {
5349
5715
  module.exports = {};
5350
5716
 
5351
5717
 
5718
+ /***/ }),
5719
+
5720
+ /***/ "../../node_modules/core-js/internals/length-of-array-like.js":
5721
+ /*!********************************************************************!*\
5722
+ !*** ../../node_modules/core-js/internals/length-of-array-like.js ***!
5723
+ \********************************************************************/
5724
+ /***/ ((module, __unused_webpack_exports, __webpack_require__) => {
5725
+
5726
+ var toLength = __webpack_require__(/*! ../internals/to-length */ "../../node_modules/core-js/internals/to-length.js");
5727
+
5728
+ // `LengthOfArrayLike` abstract operation
5729
+ // https://tc39.es/ecma262/#sec-lengthofarraylike
5730
+ module.exports = function (obj) {
5731
+ return toLength(obj.length);
5732
+ };
5733
+
5734
+
5352
5735
  /***/ }),
5353
5736
 
5354
5737
  /***/ "../../node_modules/core-js/internals/microtask.js":
@@ -5358,9 +5741,11 @@ module.exports = {};
5358
5741
  /***/ ((module, __unused_webpack_exports, __webpack_require__) => {
5359
5742
 
5360
5743
  var global = __webpack_require__(/*! ../internals/global */ "../../node_modules/core-js/internals/global.js");
5361
- var getOwnPropertyDescriptor = __webpack_require__(/*! ../internals/object-get-own-property-descriptor */ "../../node_modules/core-js/internals/object-get-own-property-descriptor.js").f;
5362
- var macrotask = __webpack_require__(/*! ../internals/task */ "../../node_modules/core-js/internals/task.js").set;
5744
+ var bind = __webpack_require__(/*! ../internals/function-bind-context */ "../../node_modules/core-js/internals/function-bind-context.js");
5745
+ var getOwnPropertyDescriptor = (__webpack_require__(/*! ../internals/object-get-own-property-descriptor */ "../../node_modules/core-js/internals/object-get-own-property-descriptor.js").f);
5746
+ var macrotask = (__webpack_require__(/*! ../internals/task */ "../../node_modules/core-js/internals/task.js").set);
5363
5747
  var IS_IOS = __webpack_require__(/*! ../internals/engine-is-ios */ "../../node_modules/core-js/internals/engine-is-ios.js");
5748
+ var IS_IOS_PEBBLE = __webpack_require__(/*! ../internals/engine-is-ios-pebble */ "../../node_modules/core-js/internals/engine-is-ios-pebble.js");
5364
5749
  var IS_WEBOS_WEBKIT = __webpack_require__(/*! ../internals/engine-is-webos-webkit */ "../../node_modules/core-js/internals/engine-is-webos-webkit.js");
5365
5750
  var IS_NODE = __webpack_require__(/*! ../internals/engine-is-node */ "../../node_modules/core-js/internals/engine-is-node.js");
5366
5751
 
@@ -5403,14 +5788,14 @@ if (!queueMicrotask) {
5403
5788
  node.data = toggle = !toggle;
5404
5789
  };
5405
5790
  // environments with maybe non-completely correct, but existent Promise
5406
- } else if (Promise && Promise.resolve) {
5791
+ } else if (!IS_IOS_PEBBLE && Promise && Promise.resolve) {
5407
5792
  // Promise.resolve without an argument throws an error in LG WebOS 2
5408
5793
  promise = Promise.resolve(undefined);
5409
5794
  // workaround of WebKit ~ iOS Safari 10.1 bug
5410
5795
  promise.constructor = Promise;
5411
- then = promise.then;
5796
+ then = bind(promise.then, promise);
5412
5797
  notify = function () {
5413
- then.call(promise, flush);
5798
+ then(flush);
5414
5799
  };
5415
5800
  // Node.js without promises
5416
5801
  } else if (IS_NODE) {
@@ -5424,9 +5809,10 @@ if (!queueMicrotask) {
5424
5809
  // - onreadystatechange
5425
5810
  // - setTimeout
5426
5811
  } else {
5812
+ // strange IE + webpack dev server bug - use .bind(global)
5813
+ macrotask = bind(macrotask, global);
5427
5814
  notify = function () {
5428
- // strange IE + webpack dev server bug - use .call(global)
5429
- macrotask.call(global, flush);
5815
+ macrotask(flush);
5430
5816
  };
5431
5817
  }
5432
5818
  }
@@ -5486,11 +5872,12 @@ module.exports = !!Object.getOwnPropertySymbols && !fails(function () {
5486
5872
  /***/ ((module, __unused_webpack_exports, __webpack_require__) => {
5487
5873
 
5488
5874
  var global = __webpack_require__(/*! ../internals/global */ "../../node_modules/core-js/internals/global.js");
5875
+ var isCallable = __webpack_require__(/*! ../internals/is-callable */ "../../node_modules/core-js/internals/is-callable.js");
5489
5876
  var inspectSource = __webpack_require__(/*! ../internals/inspect-source */ "../../node_modules/core-js/internals/inspect-source.js");
5490
5877
 
5491
5878
  var WeakMap = global.WeakMap;
5492
5879
 
5493
- module.exports = typeof WeakMap === 'function' && /native code/.test(inspectSource(WeakMap));
5880
+ module.exports = isCallable(WeakMap) && /native code/.test(inspectSource(WeakMap));
5494
5881
 
5495
5882
 
5496
5883
  /***/ }),
@@ -5503,7 +5890,7 @@ module.exports = typeof WeakMap === 'function' && /native code/.test(inspectSour
5503
5890
 
5504
5891
  "use strict";
5505
5892
 
5506
- var aFunction = __webpack_require__(/*! ../internals/a-function */ "../../node_modules/core-js/internals/a-function.js");
5893
+ var aCallable = __webpack_require__(/*! ../internals/a-callable */ "../../node_modules/core-js/internals/a-callable.js");
5507
5894
 
5508
5895
  var PromiseCapability = function (C) {
5509
5896
  var resolve, reject;
@@ -5512,8 +5899,8 @@ var PromiseCapability = function (C) {
5512
5899
  resolve = $$resolve;
5513
5900
  reject = $$reject;
5514
5901
  });
5515
- this.resolve = aFunction(resolve);
5516
- this.reject = aFunction(reject);
5902
+ this.resolve = aCallable(resolve);
5903
+ this.reject = aCallable(reject);
5517
5904
  };
5518
5905
 
5519
5906
  // `NewPromiseCapability` abstract operation
@@ -5531,11 +5918,13 @@ module.exports.f = function (C) {
5531
5918
  \**********************************************************************/
5532
5919
  /***/ ((__unused_webpack_module, exports, __webpack_require__) => {
5533
5920
 
5921
+ var global = __webpack_require__(/*! ../internals/global */ "../../node_modules/core-js/internals/global.js");
5534
5922
  var DESCRIPTORS = __webpack_require__(/*! ../internals/descriptors */ "../../node_modules/core-js/internals/descriptors.js");
5535
5923
  var IE8_DOM_DEFINE = __webpack_require__(/*! ../internals/ie8-dom-define */ "../../node_modules/core-js/internals/ie8-dom-define.js");
5536
5924
  var anObject = __webpack_require__(/*! ../internals/an-object */ "../../node_modules/core-js/internals/an-object.js");
5537
5925
  var toPropertyKey = __webpack_require__(/*! ../internals/to-property-key */ "../../node_modules/core-js/internals/to-property-key.js");
5538
5926
 
5927
+ var TypeError = global.TypeError;
5539
5928
  // eslint-disable-next-line es/no-object-defineproperty -- safe
5540
5929
  var $defineProperty = Object.defineProperty;
5541
5930
 
@@ -5563,11 +5952,12 @@ exports.f = DESCRIPTORS ? $defineProperty : function defineProperty(O, P, Attrib
5563
5952
  /***/ ((__unused_webpack_module, exports, __webpack_require__) => {
5564
5953
 
5565
5954
  var DESCRIPTORS = __webpack_require__(/*! ../internals/descriptors */ "../../node_modules/core-js/internals/descriptors.js");
5955
+ var call = __webpack_require__(/*! ../internals/function-call */ "../../node_modules/core-js/internals/function-call.js");
5566
5956
  var propertyIsEnumerableModule = __webpack_require__(/*! ../internals/object-property-is-enumerable */ "../../node_modules/core-js/internals/object-property-is-enumerable.js");
5567
5957
  var createPropertyDescriptor = __webpack_require__(/*! ../internals/create-property-descriptor */ "../../node_modules/core-js/internals/create-property-descriptor.js");
5568
5958
  var toIndexedObject = __webpack_require__(/*! ../internals/to-indexed-object */ "../../node_modules/core-js/internals/to-indexed-object.js");
5569
5959
  var toPropertyKey = __webpack_require__(/*! ../internals/to-property-key */ "../../node_modules/core-js/internals/to-property-key.js");
5570
- var has = __webpack_require__(/*! ../internals/has */ "../../node_modules/core-js/internals/has.js");
5960
+ var hasOwn = __webpack_require__(/*! ../internals/has-own-property */ "../../node_modules/core-js/internals/has-own-property.js");
5571
5961
  var IE8_DOM_DEFINE = __webpack_require__(/*! ../internals/ie8-dom-define */ "../../node_modules/core-js/internals/ie8-dom-define.js");
5572
5962
 
5573
5963
  // eslint-disable-next-line es/no-object-getownpropertydescriptor -- safe
@@ -5581,7 +5971,7 @@ exports.f = DESCRIPTORS ? $getOwnPropertyDescriptor : function getOwnPropertyDes
5581
5971
  if (IE8_DOM_DEFINE) try {
5582
5972
  return $getOwnPropertyDescriptor(O, P);
5583
5973
  } catch (error) { /* empty */ }
5584
- if (has(O, P)) return createPropertyDescriptor(!propertyIsEnumerableModule.f.call(O, P), O[P]);
5974
+ if (hasOwn(O, P)) return createPropertyDescriptor(!call(propertyIsEnumerableModule.f, O, P), O[P]);
5585
5975
  };
5586
5976
 
5587
5977
 
@@ -5618,6 +6008,19 @@ exports.f = Object.getOwnPropertyNames || function getOwnPropertyNames(O) {
5618
6008
  exports.f = Object.getOwnPropertySymbols;
5619
6009
 
5620
6010
 
6011
+ /***/ }),
6012
+
6013
+ /***/ "../../node_modules/core-js/internals/object-is-prototype-of.js":
6014
+ /*!**********************************************************************!*\
6015
+ !*** ../../node_modules/core-js/internals/object-is-prototype-of.js ***!
6016
+ \**********************************************************************/
6017
+ /***/ ((module, __unused_webpack_exports, __webpack_require__) => {
6018
+
6019
+ var uncurryThis = __webpack_require__(/*! ../internals/function-uncurry-this */ "../../node_modules/core-js/internals/function-uncurry-this.js");
6020
+
6021
+ module.exports = uncurryThis({}.isPrototypeOf);
6022
+
6023
+
5621
6024
  /***/ }),
5622
6025
 
5623
6026
  /***/ "../../node_modules/core-js/internals/object-keys-internal.js":
@@ -5626,20 +6029,23 @@ exports.f = Object.getOwnPropertySymbols;
5626
6029
  \********************************************************************/
5627
6030
  /***/ ((module, __unused_webpack_exports, __webpack_require__) => {
5628
6031
 
5629
- var has = __webpack_require__(/*! ../internals/has */ "../../node_modules/core-js/internals/has.js");
6032
+ var uncurryThis = __webpack_require__(/*! ../internals/function-uncurry-this */ "../../node_modules/core-js/internals/function-uncurry-this.js");
6033
+ var hasOwn = __webpack_require__(/*! ../internals/has-own-property */ "../../node_modules/core-js/internals/has-own-property.js");
5630
6034
  var toIndexedObject = __webpack_require__(/*! ../internals/to-indexed-object */ "../../node_modules/core-js/internals/to-indexed-object.js");
5631
- var indexOf = __webpack_require__(/*! ../internals/array-includes */ "../../node_modules/core-js/internals/array-includes.js").indexOf;
6035
+ var indexOf = (__webpack_require__(/*! ../internals/array-includes */ "../../node_modules/core-js/internals/array-includes.js").indexOf);
5632
6036
  var hiddenKeys = __webpack_require__(/*! ../internals/hidden-keys */ "../../node_modules/core-js/internals/hidden-keys.js");
5633
6037
 
6038
+ var push = uncurryThis([].push);
6039
+
5634
6040
  module.exports = function (object, names) {
5635
6041
  var O = toIndexedObject(object);
5636
6042
  var i = 0;
5637
6043
  var result = [];
5638
6044
  var key;
5639
- for (key in O) !has(hiddenKeys, key) && has(O, key) && result.push(key);
6045
+ for (key in O) !hasOwn(hiddenKeys, key) && hasOwn(O, key) && push(result, key);
5640
6046
  // Don't enum bug & hidden keys
5641
- while (names.length > i) if (has(O, key = names[i++])) {
5642
- ~indexOf(result, key) || result.push(key);
6047
+ while (names.length > i) if (hasOwn(O, key = names[i++])) {
6048
+ ~indexOf(result, key) || push(result, key);
5643
6049
  }
5644
6050
  return result;
5645
6051
  };
@@ -5679,6 +6085,7 @@ exports.f = NASHORN_BUG ? function propertyIsEnumerable(V) {
5679
6085
  /***/ ((module, __unused_webpack_exports, __webpack_require__) => {
5680
6086
 
5681
6087
  /* eslint-disable no-proto -- safe */
6088
+ var uncurryThis = __webpack_require__(/*! ../internals/function-uncurry-this */ "../../node_modules/core-js/internals/function-uncurry-this.js");
5682
6089
  var anObject = __webpack_require__(/*! ../internals/an-object */ "../../node_modules/core-js/internals/an-object.js");
5683
6090
  var aPossiblePrototype = __webpack_require__(/*! ../internals/a-possible-prototype */ "../../node_modules/core-js/internals/a-possible-prototype.js");
5684
6091
 
@@ -5692,14 +6099,14 @@ module.exports = Object.setPrototypeOf || ('__proto__' in {} ? function () {
5692
6099
  var setter;
5693
6100
  try {
5694
6101
  // eslint-disable-next-line es/no-object-getownpropertydescriptor -- safe
5695
- setter = Object.getOwnPropertyDescriptor(Object.prototype, '__proto__').set;
5696
- setter.call(test, []);
6102
+ setter = uncurryThis(Object.getOwnPropertyDescriptor(Object.prototype, '__proto__').set);
6103
+ setter(test, []);
5697
6104
  CORRECT_SETTER = test instanceof Array;
5698
6105
  } catch (error) { /* empty */ }
5699
6106
  return function setPrototypeOf(O, proto) {
5700
6107
  anObject(O);
5701
6108
  aPossiblePrototype(proto);
5702
- if (CORRECT_SETTER) setter.call(O, proto);
6109
+ if (CORRECT_SETTER) setter(O, proto);
5703
6110
  else O.__proto__ = proto;
5704
6111
  return O;
5705
6112
  };
@@ -5714,15 +6121,20 @@ module.exports = Object.setPrototypeOf || ('__proto__' in {} ? function () {
5714
6121
  \*********************************************************************/
5715
6122
  /***/ ((module, __unused_webpack_exports, __webpack_require__) => {
5716
6123
 
6124
+ var global = __webpack_require__(/*! ../internals/global */ "../../node_modules/core-js/internals/global.js");
6125
+ var call = __webpack_require__(/*! ../internals/function-call */ "../../node_modules/core-js/internals/function-call.js");
6126
+ var isCallable = __webpack_require__(/*! ../internals/is-callable */ "../../node_modules/core-js/internals/is-callable.js");
5717
6127
  var isObject = __webpack_require__(/*! ../internals/is-object */ "../../node_modules/core-js/internals/is-object.js");
5718
6128
 
6129
+ var TypeError = global.TypeError;
6130
+
5719
6131
  // `OrdinaryToPrimitive` abstract operation
5720
6132
  // https://tc39.es/ecma262/#sec-ordinarytoprimitive
5721
6133
  module.exports = function (input, pref) {
5722
6134
  var fn, val;
5723
- if (pref === 'string' && typeof (fn = input.toString) == 'function' && !isObject(val = fn.call(input))) return val;
5724
- if (typeof (fn = input.valueOf) == 'function' && !isObject(val = fn.call(input))) return val;
5725
- if (pref !== 'string' && typeof (fn = input.toString) == 'function' && !isObject(val = fn.call(input))) return val;
6135
+ if (pref === 'string' && isCallable(fn = input.toString) && !isObject(val = call(fn, input))) return val;
6136
+ if (isCallable(fn = input.valueOf) && !isObject(val = call(fn, input))) return val;
6137
+ if (pref !== 'string' && isCallable(fn = input.toString) && !isObject(val = call(fn, input))) return val;
5726
6138
  throw TypeError("Can't convert object to primitive value");
5727
6139
  };
5728
6140
 
@@ -5736,15 +6148,18 @@ module.exports = function (input, pref) {
5736
6148
  /***/ ((module, __unused_webpack_exports, __webpack_require__) => {
5737
6149
 
5738
6150
  var getBuiltIn = __webpack_require__(/*! ../internals/get-built-in */ "../../node_modules/core-js/internals/get-built-in.js");
6151
+ var uncurryThis = __webpack_require__(/*! ../internals/function-uncurry-this */ "../../node_modules/core-js/internals/function-uncurry-this.js");
5739
6152
  var getOwnPropertyNamesModule = __webpack_require__(/*! ../internals/object-get-own-property-names */ "../../node_modules/core-js/internals/object-get-own-property-names.js");
5740
6153
  var getOwnPropertySymbolsModule = __webpack_require__(/*! ../internals/object-get-own-property-symbols */ "../../node_modules/core-js/internals/object-get-own-property-symbols.js");
5741
6154
  var anObject = __webpack_require__(/*! ../internals/an-object */ "../../node_modules/core-js/internals/an-object.js");
5742
6155
 
6156
+ var concat = uncurryThis([].concat);
6157
+
5743
6158
  // all object keys, includes non-enumerable and symbols
5744
6159
  module.exports = getBuiltIn('Reflect', 'ownKeys') || function ownKeys(it) {
5745
6160
  var keys = getOwnPropertyNamesModule.f(anObject(it));
5746
6161
  var getOwnPropertySymbols = getOwnPropertySymbolsModule.f;
5747
- return getOwnPropertySymbols ? keys.concat(getOwnPropertySymbols(it)) : keys;
6162
+ return getOwnPropertySymbols ? concat(keys, getOwnPropertySymbols(it)) : keys;
5748
6163
  };
5749
6164
 
5750
6165
 
@@ -5812,11 +6227,13 @@ module.exports = function (target, src, options) {
5812
6227
  /***/ ((module, __unused_webpack_exports, __webpack_require__) => {
5813
6228
 
5814
6229
  var global = __webpack_require__(/*! ../internals/global */ "../../node_modules/core-js/internals/global.js");
6230
+ var isCallable = __webpack_require__(/*! ../internals/is-callable */ "../../node_modules/core-js/internals/is-callable.js");
6231
+ var hasOwn = __webpack_require__(/*! ../internals/has-own-property */ "../../node_modules/core-js/internals/has-own-property.js");
5815
6232
  var createNonEnumerableProperty = __webpack_require__(/*! ../internals/create-non-enumerable-property */ "../../node_modules/core-js/internals/create-non-enumerable-property.js");
5816
- var has = __webpack_require__(/*! ../internals/has */ "../../node_modules/core-js/internals/has.js");
5817
6233
  var setGlobal = __webpack_require__(/*! ../internals/set-global */ "../../node_modules/core-js/internals/set-global.js");
5818
6234
  var inspectSource = __webpack_require__(/*! ../internals/inspect-source */ "../../node_modules/core-js/internals/inspect-source.js");
5819
6235
  var InternalStateModule = __webpack_require__(/*! ../internals/internal-state */ "../../node_modules/core-js/internals/internal-state.js");
6236
+ var CONFIGURABLE_FUNCTION_NAME = (__webpack_require__(/*! ../internals/function-name */ "../../node_modules/core-js/internals/function-name.js").CONFIGURABLE);
5820
6237
 
5821
6238
  var getInternalState = InternalStateModule.get;
5822
6239
  var enforceInternalState = InternalStateModule.enforce;
@@ -5826,14 +6243,18 @@ var TEMPLATE = String(String).split('String');
5826
6243
  var unsafe = options ? !!options.unsafe : false;
5827
6244
  var simple = options ? !!options.enumerable : false;
5828
6245
  var noTargetGet = options ? !!options.noTargetGet : false;
6246
+ var name = options && options.name !== undefined ? options.name : key;
5829
6247
  var state;
5830
- if (typeof value == 'function') {
5831
- if (typeof key == 'string' && !has(value, 'name')) {
5832
- createNonEnumerableProperty(value, 'name', key);
6248
+ if (isCallable(value)) {
6249
+ if (String(name).slice(0, 7) === 'Symbol(') {
6250
+ name = '[' + String(name).replace(/^Symbol\(([^)]*)\)/, '$1') + ']';
6251
+ }
6252
+ if (!hasOwn(value, 'name') || (CONFIGURABLE_FUNCTION_NAME && value.name !== name)) {
6253
+ createNonEnumerableProperty(value, 'name', name);
5833
6254
  }
5834
6255
  state = enforceInternalState(value);
5835
6256
  if (!state.source) {
5836
- state.source = TEMPLATE.join(typeof key == 'string' ? key : '');
6257
+ state.source = TEMPLATE.join(typeof name == 'string' ? name : '');
5837
6258
  }
5838
6259
  }
5839
6260
  if (O === global) {
@@ -5849,7 +6270,7 @@ var TEMPLATE = String(String).split('String');
5849
6270
  else createNonEnumerableProperty(O, key, value);
5850
6271
  // add fake Function#toString for correct work wrapped methods / constructors with methods like LoDash isNative
5851
6272
  })(Function.prototype, 'toString', function toString() {
5852
- return typeof this == 'function' && getInternalState(this).source || inspectSource(this);
6273
+ return isCallable(this) && getInternalState(this).source || inspectSource(this);
5853
6274
  });
5854
6275
 
5855
6276
 
@@ -5859,7 +6280,11 @@ var TEMPLATE = String(String).split('String');
5859
6280
  /*!************************************************************************!*\
5860
6281
  !*** ../../node_modules/core-js/internals/require-object-coercible.js ***!
5861
6282
  \************************************************************************/
5862
- /***/ ((module) => {
6283
+ /***/ ((module, __unused_webpack_exports, __webpack_require__) => {
6284
+
6285
+ var global = __webpack_require__(/*! ../internals/global */ "../../node_modules/core-js/internals/global.js");
6286
+
6287
+ var TypeError = global.TypeError;
5863
6288
 
5864
6289
  // `RequireObjectCoercible` abstract operation
5865
6290
  // https://tc39.es/ecma262/#sec-requireobjectcoercible
@@ -5879,10 +6304,12 @@ module.exports = function (it) {
5879
6304
 
5880
6305
  var global = __webpack_require__(/*! ../internals/global */ "../../node_modules/core-js/internals/global.js");
5881
6306
 
6307
+ // eslint-disable-next-line es/no-object-defineproperty -- safe
6308
+ var defineProperty = Object.defineProperty;
6309
+
5882
6310
  module.exports = function (key, value) {
5883
6311
  try {
5884
- // eslint-disable-next-line es/no-object-defineproperty -- safe
5885
- Object.defineProperty(global, key, { value: value, configurable: true, writable: true });
6312
+ defineProperty(global, key, { value: value, configurable: true, writable: true });
5886
6313
  } catch (error) {
5887
6314
  global[key] = value;
5888
6315
  } return value;
@@ -5927,14 +6354,14 @@ module.exports = function (CONSTRUCTOR_NAME) {
5927
6354
  \*****************************************************************/
5928
6355
  /***/ ((module, __unused_webpack_exports, __webpack_require__) => {
5929
6356
 
5930
- var defineProperty = __webpack_require__(/*! ../internals/object-define-property */ "../../node_modules/core-js/internals/object-define-property.js").f;
5931
- var has = __webpack_require__(/*! ../internals/has */ "../../node_modules/core-js/internals/has.js");
6357
+ var defineProperty = (__webpack_require__(/*! ../internals/object-define-property */ "../../node_modules/core-js/internals/object-define-property.js").f);
6358
+ var hasOwn = __webpack_require__(/*! ../internals/has-own-property */ "../../node_modules/core-js/internals/has-own-property.js");
5932
6359
  var wellKnownSymbol = __webpack_require__(/*! ../internals/well-known-symbol */ "../../node_modules/core-js/internals/well-known-symbol.js");
5933
6360
 
5934
6361
  var TO_STRING_TAG = wellKnownSymbol('toStringTag');
5935
6362
 
5936
6363
  module.exports = function (it, TAG, STATIC) {
5937
- if (it && !has(it = STATIC ? it : it.prototype, TO_STRING_TAG)) {
6364
+ if (it && !hasOwn(it = STATIC ? it : it.prototype, TO_STRING_TAG)) {
5938
6365
  defineProperty(it, TO_STRING_TAG, { configurable: true, value: TAG });
5939
6366
  }
5940
6367
  };
@@ -5989,7 +6416,7 @@ var store = __webpack_require__(/*! ../internals/shared-store */ "../../node_mod
5989
6416
  (module.exports = function (key, value) {
5990
6417
  return store[key] || (store[key] = value !== undefined ? value : {});
5991
6418
  })('versions', []).push({
5992
- version: '3.16.0',
6419
+ version: '3.19.3',
5993
6420
  mode: IS_PURE ? 'pure' : 'global',
5994
6421
  copyright: '© 2021 Denis Pushkarev (zloirock.ru)'
5995
6422
  });
@@ -6004,7 +6431,7 @@ var store = __webpack_require__(/*! ../internals/shared-store */ "../../node_mod
6004
6431
  /***/ ((module, __unused_webpack_exports, __webpack_require__) => {
6005
6432
 
6006
6433
  var anObject = __webpack_require__(/*! ../internals/an-object */ "../../node_modules/core-js/internals/an-object.js");
6007
- var aFunction = __webpack_require__(/*! ../internals/a-function */ "../../node_modules/core-js/internals/a-function.js");
6434
+ var aConstructor = __webpack_require__(/*! ../internals/a-constructor */ "../../node_modules/core-js/internals/a-constructor.js");
6008
6435
  var wellKnownSymbol = __webpack_require__(/*! ../internals/well-known-symbol */ "../../node_modules/core-js/internals/well-known-symbol.js");
6009
6436
 
6010
6437
  var SPECIES = wellKnownSymbol('species');
@@ -6014,7 +6441,7 @@ var SPECIES = wellKnownSymbol('species');
6014
6441
  module.exports = function (O, defaultConstructor) {
6015
6442
  var C = anObject(O).constructor;
6016
6443
  var S;
6017
- return C === undefined || (S = anObject(C)[SPECIES]) == undefined ? defaultConstructor : aFunction(S);
6444
+ return C === undefined || (S = anObject(C)[SPECIES]) == undefined ? defaultConstructor : aConstructor(S);
6018
6445
  };
6019
6446
 
6020
6447
 
@@ -6027,9 +6454,13 @@ module.exports = function (O, defaultConstructor) {
6027
6454
  /***/ ((module, __unused_webpack_exports, __webpack_require__) => {
6028
6455
 
6029
6456
  var global = __webpack_require__(/*! ../internals/global */ "../../node_modules/core-js/internals/global.js");
6030
- var fails = __webpack_require__(/*! ../internals/fails */ "../../node_modules/core-js/internals/fails.js");
6457
+ var apply = __webpack_require__(/*! ../internals/function-apply */ "../../node_modules/core-js/internals/function-apply.js");
6031
6458
  var bind = __webpack_require__(/*! ../internals/function-bind-context */ "../../node_modules/core-js/internals/function-bind-context.js");
6459
+ var isCallable = __webpack_require__(/*! ../internals/is-callable */ "../../node_modules/core-js/internals/is-callable.js");
6460
+ var hasOwn = __webpack_require__(/*! ../internals/has-own-property */ "../../node_modules/core-js/internals/has-own-property.js");
6461
+ var fails = __webpack_require__(/*! ../internals/fails */ "../../node_modules/core-js/internals/fails.js");
6032
6462
  var html = __webpack_require__(/*! ../internals/html */ "../../node_modules/core-js/internals/html.js");
6463
+ var arraySlice = __webpack_require__(/*! ../internals/array-slice */ "../../node_modules/core-js/internals/array-slice.js");
6033
6464
  var createElement = __webpack_require__(/*! ../internals/document-create-element */ "../../node_modules/core-js/internals/document-create-element.js");
6034
6465
  var IS_IOS = __webpack_require__(/*! ../internals/engine-is-ios */ "../../node_modules/core-js/internals/engine-is-ios.js");
6035
6466
  var IS_NODE = __webpack_require__(/*! ../internals/engine-is-node */ "../../node_modules/core-js/internals/engine-is-node.js");
@@ -6037,8 +6468,10 @@ var IS_NODE = __webpack_require__(/*! ../internals/engine-is-node */ "../../node
6037
6468
  var set = global.setImmediate;
6038
6469
  var clear = global.clearImmediate;
6039
6470
  var process = global.process;
6040
- var MessageChannel = global.MessageChannel;
6041
6471
  var Dispatch = global.Dispatch;
6472
+ var Function = global.Function;
6473
+ var MessageChannel = global.MessageChannel;
6474
+ var String = global.String;
6042
6475
  var counter = 0;
6043
6476
  var queue = {};
6044
6477
  var ONREADYSTATECHANGE = 'onreadystatechange';
@@ -6050,8 +6483,7 @@ try {
6050
6483
  } catch (error) { /* empty */ }
6051
6484
 
6052
6485
  var run = function (id) {
6053
- // eslint-disable-next-line no-prototype-builtins -- safe
6054
- if (queue.hasOwnProperty(id)) {
6486
+ if (hasOwn(queue, id)) {
6055
6487
  var fn = queue[id];
6056
6488
  delete queue[id];
6057
6489
  fn();
@@ -6076,13 +6508,9 @@ var post = function (id) {
6076
6508
  // Node.js 0.9+ & IE10+ has setImmediate, otherwise:
6077
6509
  if (!set || !clear) {
6078
6510
  set = function setImmediate(fn) {
6079
- var args = [];
6080
- var argumentsLength = arguments.length;
6081
- var i = 1;
6082
- while (argumentsLength > i) args.push(arguments[i++]);
6511
+ var args = arraySlice(arguments, 1);
6083
6512
  queue[++counter] = function () {
6084
- // eslint-disable-next-line no-new-func -- spec requirement
6085
- (typeof fn == 'function' ? fn : Function(fn)).apply(undefined, args);
6513
+ apply(isCallable(fn) ? fn : Function(fn), undefined, args);
6086
6514
  };
6087
6515
  defer(counter);
6088
6516
  return counter;
@@ -6106,12 +6534,12 @@ if (!set || !clear) {
6106
6534
  channel = new MessageChannel();
6107
6535
  port = channel.port2;
6108
6536
  channel.port1.onmessage = listener;
6109
- defer = bind(port.postMessage, port, 1);
6537
+ defer = bind(port.postMessage, port);
6110
6538
  // Browsers with postMessage, skip WebWorkers
6111
6539
  // IE8 has postMessage, but it's sync & typeof its postMessage is 'object'
6112
6540
  } else if (
6113
6541
  global.addEventListener &&
6114
- typeof postMessage == 'function' &&
6542
+ isCallable(global.postMessage) &&
6115
6543
  !global.importScripts &&
6116
6544
  location && location.protocol !== 'file:' &&
6117
6545
  !fails(post)
@@ -6148,7 +6576,7 @@ module.exports = {
6148
6576
  \*****************************************************************/
6149
6577
  /***/ ((module, __unused_webpack_exports, __webpack_require__) => {
6150
6578
 
6151
- var toInteger = __webpack_require__(/*! ../internals/to-integer */ "../../node_modules/core-js/internals/to-integer.js");
6579
+ var toIntegerOrInfinity = __webpack_require__(/*! ../internals/to-integer-or-infinity */ "../../node_modules/core-js/internals/to-integer-or-infinity.js");
6152
6580
 
6153
6581
  var max = Math.max;
6154
6582
  var min = Math.min;
@@ -6157,7 +6585,7 @@ var min = Math.min;
6157
6585
  // Let integer be ? ToInteger(index).
6158
6586
  // If integer < 0, let result be max((length + integer), 0); else let result be min(integer, length).
6159
6587
  module.exports = function (index, length) {
6160
- var integer = toInteger(index);
6588
+ var integer = toIntegerOrInfinity(index);
6161
6589
  return integer < 0 ? max(integer + length, 0) : min(integer, length);
6162
6590
  };
6163
6591
 
@@ -6181,19 +6609,21 @@ module.exports = function (it) {
6181
6609
 
6182
6610
  /***/ }),
6183
6611
 
6184
- /***/ "../../node_modules/core-js/internals/to-integer.js":
6185
- /*!**********************************************************!*\
6186
- !*** ../../node_modules/core-js/internals/to-integer.js ***!
6187
- \**********************************************************/
6612
+ /***/ "../../node_modules/core-js/internals/to-integer-or-infinity.js":
6613
+ /*!**********************************************************************!*\
6614
+ !*** ../../node_modules/core-js/internals/to-integer-or-infinity.js ***!
6615
+ \**********************************************************************/
6188
6616
  /***/ ((module) => {
6189
6617
 
6190
6618
  var ceil = Math.ceil;
6191
6619
  var floor = Math.floor;
6192
6620
 
6193
- // `ToInteger` abstract operation
6194
- // https://tc39.es/ecma262/#sec-tointeger
6621
+ // `ToIntegerOrInfinity` abstract operation
6622
+ // https://tc39.es/ecma262/#sec-tointegerorinfinity
6195
6623
  module.exports = function (argument) {
6196
- return isNaN(argument = +argument) ? 0 : (argument > 0 ? floor : ceil)(argument);
6624
+ var number = +argument;
6625
+ // eslint-disable-next-line no-self-compare -- safe
6626
+ return number !== number || number === 0 ? 0 : (number > 0 ? floor : ceil)(number);
6197
6627
  };
6198
6628
 
6199
6629
 
@@ -6205,14 +6635,14 @@ module.exports = function (argument) {
6205
6635
  \*********************************************************/
6206
6636
  /***/ ((module, __unused_webpack_exports, __webpack_require__) => {
6207
6637
 
6208
- var toInteger = __webpack_require__(/*! ../internals/to-integer */ "../../node_modules/core-js/internals/to-integer.js");
6638
+ var toIntegerOrInfinity = __webpack_require__(/*! ../internals/to-integer-or-infinity */ "../../node_modules/core-js/internals/to-integer-or-infinity.js");
6209
6639
 
6210
6640
  var min = Math.min;
6211
6641
 
6212
6642
  // `ToLength` abstract operation
6213
6643
  // https://tc39.es/ecma262/#sec-tolength
6214
6644
  module.exports = function (argument) {
6215
- return argument > 0 ? min(toInteger(argument), 0x1FFFFFFFFFFFFF) : 0; // 2 ** 53 - 1 == 9007199254740991
6645
+ return argument > 0 ? min(toIntegerOrInfinity(argument), 0x1FFFFFFFFFFFFF) : 0; // 2 ** 53 - 1 == 9007199254740991
6216
6646
  };
6217
6647
 
6218
6648
 
@@ -6224,8 +6654,11 @@ module.exports = function (argument) {
6224
6654
  \*********************************************************/
6225
6655
  /***/ ((module, __unused_webpack_exports, __webpack_require__) => {
6226
6656
 
6657
+ var global = __webpack_require__(/*! ../internals/global */ "../../node_modules/core-js/internals/global.js");
6227
6658
  var requireObjectCoercible = __webpack_require__(/*! ../internals/require-object-coercible */ "../../node_modules/core-js/internals/require-object-coercible.js");
6228
6659
 
6660
+ var Object = global.Object;
6661
+
6229
6662
  // `ToObject` abstract operation
6230
6663
  // https://tc39.es/ecma262/#sec-toobject
6231
6664
  module.exports = function (argument) {
@@ -6241,22 +6674,26 @@ module.exports = function (argument) {
6241
6674
  \************************************************************/
6242
6675
  /***/ ((module, __unused_webpack_exports, __webpack_require__) => {
6243
6676
 
6677
+ var global = __webpack_require__(/*! ../internals/global */ "../../node_modules/core-js/internals/global.js");
6678
+ var call = __webpack_require__(/*! ../internals/function-call */ "../../node_modules/core-js/internals/function-call.js");
6244
6679
  var isObject = __webpack_require__(/*! ../internals/is-object */ "../../node_modules/core-js/internals/is-object.js");
6245
6680
  var isSymbol = __webpack_require__(/*! ../internals/is-symbol */ "../../node_modules/core-js/internals/is-symbol.js");
6681
+ var getMethod = __webpack_require__(/*! ../internals/get-method */ "../../node_modules/core-js/internals/get-method.js");
6246
6682
  var ordinaryToPrimitive = __webpack_require__(/*! ../internals/ordinary-to-primitive */ "../../node_modules/core-js/internals/ordinary-to-primitive.js");
6247
6683
  var wellKnownSymbol = __webpack_require__(/*! ../internals/well-known-symbol */ "../../node_modules/core-js/internals/well-known-symbol.js");
6248
6684
 
6685
+ var TypeError = global.TypeError;
6249
6686
  var TO_PRIMITIVE = wellKnownSymbol('toPrimitive');
6250
6687
 
6251
6688
  // `ToPrimitive` abstract operation
6252
6689
  // https://tc39.es/ecma262/#sec-toprimitive
6253
6690
  module.exports = function (input, pref) {
6254
6691
  if (!isObject(input) || isSymbol(input)) return input;
6255
- var exoticToPrim = input[TO_PRIMITIVE];
6692
+ var exoticToPrim = getMethod(input, TO_PRIMITIVE);
6256
6693
  var result;
6257
- if (exoticToPrim !== undefined) {
6694
+ if (exoticToPrim) {
6258
6695
  if (pref === undefined) pref = 'default';
6259
- result = exoticToPrim.call(input, pref);
6696
+ result = call(exoticToPrim, input, pref);
6260
6697
  if (!isObject(result) || isSymbol(result)) return result;
6261
6698
  throw TypeError("Can't convert object to primitive value");
6262
6699
  }
@@ -6280,7 +6717,7 @@ var isSymbol = __webpack_require__(/*! ../internals/is-symbol */ "../../node_mod
6280
6717
  // https://tc39.es/ecma262/#sec-topropertykey
6281
6718
  module.exports = function (argument) {
6282
6719
  var key = toPrimitive(argument, 'string');
6283
- return isSymbol(key) ? key : String(key);
6720
+ return isSymbol(key) ? key : key + '';
6284
6721
  };
6285
6722
 
6286
6723
 
@@ -6302,19 +6739,62 @@ test[TO_STRING_TAG] = 'z';
6302
6739
  module.exports = String(test) === '[object z]';
6303
6740
 
6304
6741
 
6742
+ /***/ }),
6743
+
6744
+ /***/ "../../node_modules/core-js/internals/to-string.js":
6745
+ /*!*********************************************************!*\
6746
+ !*** ../../node_modules/core-js/internals/to-string.js ***!
6747
+ \*********************************************************/
6748
+ /***/ ((module, __unused_webpack_exports, __webpack_require__) => {
6749
+
6750
+ var global = __webpack_require__(/*! ../internals/global */ "../../node_modules/core-js/internals/global.js");
6751
+ var classof = __webpack_require__(/*! ../internals/classof */ "../../node_modules/core-js/internals/classof.js");
6752
+
6753
+ var String = global.String;
6754
+
6755
+ module.exports = function (argument) {
6756
+ if (classof(argument) === 'Symbol') throw TypeError('Cannot convert a Symbol value to a string');
6757
+ return String(argument);
6758
+ };
6759
+
6760
+
6761
+ /***/ }),
6762
+
6763
+ /***/ "../../node_modules/core-js/internals/try-to-string.js":
6764
+ /*!*************************************************************!*\
6765
+ !*** ../../node_modules/core-js/internals/try-to-string.js ***!
6766
+ \*************************************************************/
6767
+ /***/ ((module, __unused_webpack_exports, __webpack_require__) => {
6768
+
6769
+ var global = __webpack_require__(/*! ../internals/global */ "../../node_modules/core-js/internals/global.js");
6770
+
6771
+ var String = global.String;
6772
+
6773
+ module.exports = function (argument) {
6774
+ try {
6775
+ return String(argument);
6776
+ } catch (error) {
6777
+ return 'Object';
6778
+ }
6779
+ };
6780
+
6781
+
6305
6782
  /***/ }),
6306
6783
 
6307
6784
  /***/ "../../node_modules/core-js/internals/uid.js":
6308
6785
  /*!***************************************************!*\
6309
6786
  !*** ../../node_modules/core-js/internals/uid.js ***!
6310
6787
  \***************************************************/
6311
- /***/ ((module) => {
6788
+ /***/ ((module, __unused_webpack_exports, __webpack_require__) => {
6789
+
6790
+ var uncurryThis = __webpack_require__(/*! ../internals/function-uncurry-this */ "../../node_modules/core-js/internals/function-uncurry-this.js");
6312
6791
 
6313
6792
  var id = 0;
6314
6793
  var postfix = Math.random();
6794
+ var toString = uncurryThis(1.0.toString);
6315
6795
 
6316
6796
  module.exports = function (key) {
6317
- return 'Symbol(' + String(key === undefined ? '' : key) + ')_' + (++id + postfix).toString(36);
6797
+ return 'Symbol(' + (key === undefined ? '' : key) + ')_' + toString(++id + postfix, 36);
6318
6798
  };
6319
6799
 
6320
6800
 
@@ -6344,21 +6824,25 @@ module.exports = NATIVE_SYMBOL
6344
6824
 
6345
6825
  var global = __webpack_require__(/*! ../internals/global */ "../../node_modules/core-js/internals/global.js");
6346
6826
  var shared = __webpack_require__(/*! ../internals/shared */ "../../node_modules/core-js/internals/shared.js");
6347
- var has = __webpack_require__(/*! ../internals/has */ "../../node_modules/core-js/internals/has.js");
6827
+ var hasOwn = __webpack_require__(/*! ../internals/has-own-property */ "../../node_modules/core-js/internals/has-own-property.js");
6348
6828
  var uid = __webpack_require__(/*! ../internals/uid */ "../../node_modules/core-js/internals/uid.js");
6349
6829
  var NATIVE_SYMBOL = __webpack_require__(/*! ../internals/native-symbol */ "../../node_modules/core-js/internals/native-symbol.js");
6350
6830
  var USE_SYMBOL_AS_UID = __webpack_require__(/*! ../internals/use-symbol-as-uid */ "../../node_modules/core-js/internals/use-symbol-as-uid.js");
6351
6831
 
6352
6832
  var WellKnownSymbolsStore = shared('wks');
6353
6833
  var Symbol = global.Symbol;
6834
+ var symbolFor = Symbol && Symbol['for'];
6354
6835
  var createWellKnownSymbol = USE_SYMBOL_AS_UID ? Symbol : Symbol && Symbol.withoutSetter || uid;
6355
6836
 
6356
6837
  module.exports = function (name) {
6357
- if (!has(WellKnownSymbolsStore, name) || !(NATIVE_SYMBOL || typeof WellKnownSymbolsStore[name] == 'string')) {
6358
- if (NATIVE_SYMBOL && has(Symbol, name)) {
6838
+ if (!hasOwn(WellKnownSymbolsStore, name) || !(NATIVE_SYMBOL || typeof WellKnownSymbolsStore[name] == 'string')) {
6839
+ var description = 'Symbol.' + name;
6840
+ if (NATIVE_SYMBOL && hasOwn(Symbol, name)) {
6359
6841
  WellKnownSymbolsStore[name] = Symbol[name];
6842
+ } else if (USE_SYMBOL_AS_UID && symbolFor) {
6843
+ WellKnownSymbolsStore[name] = symbolFor(description);
6360
6844
  } else {
6361
- WellKnownSymbolsStore[name] = createWellKnownSymbol('Symbol.' + name);
6845
+ WellKnownSymbolsStore[name] = createWellKnownSymbol(description);
6362
6846
  }
6363
6847
  } return WellKnownSymbolsStore[name];
6364
6848
  };
@@ -6378,20 +6862,22 @@ var $ = __webpack_require__(/*! ../internals/export */ "../../node_modules/core-
6378
6862
  var IS_PURE = __webpack_require__(/*! ../internals/is-pure */ "../../node_modules/core-js/internals/is-pure.js");
6379
6863
  var global = __webpack_require__(/*! ../internals/global */ "../../node_modules/core-js/internals/global.js");
6380
6864
  var getBuiltIn = __webpack_require__(/*! ../internals/get-built-in */ "../../node_modules/core-js/internals/get-built-in.js");
6865
+ var call = __webpack_require__(/*! ../internals/function-call */ "../../node_modules/core-js/internals/function-call.js");
6381
6866
  var NativePromise = __webpack_require__(/*! ../internals/native-promise-constructor */ "../../node_modules/core-js/internals/native-promise-constructor.js");
6382
6867
  var redefine = __webpack_require__(/*! ../internals/redefine */ "../../node_modules/core-js/internals/redefine.js");
6383
6868
  var redefineAll = __webpack_require__(/*! ../internals/redefine-all */ "../../node_modules/core-js/internals/redefine-all.js");
6384
6869
  var setPrototypeOf = __webpack_require__(/*! ../internals/object-set-prototype-of */ "../../node_modules/core-js/internals/object-set-prototype-of.js");
6385
6870
  var setToStringTag = __webpack_require__(/*! ../internals/set-to-string-tag */ "../../node_modules/core-js/internals/set-to-string-tag.js");
6386
6871
  var setSpecies = __webpack_require__(/*! ../internals/set-species */ "../../node_modules/core-js/internals/set-species.js");
6872
+ var aCallable = __webpack_require__(/*! ../internals/a-callable */ "../../node_modules/core-js/internals/a-callable.js");
6873
+ var isCallable = __webpack_require__(/*! ../internals/is-callable */ "../../node_modules/core-js/internals/is-callable.js");
6387
6874
  var isObject = __webpack_require__(/*! ../internals/is-object */ "../../node_modules/core-js/internals/is-object.js");
6388
- var aFunction = __webpack_require__(/*! ../internals/a-function */ "../../node_modules/core-js/internals/a-function.js");
6389
6875
  var anInstance = __webpack_require__(/*! ../internals/an-instance */ "../../node_modules/core-js/internals/an-instance.js");
6390
6876
  var inspectSource = __webpack_require__(/*! ../internals/inspect-source */ "../../node_modules/core-js/internals/inspect-source.js");
6391
6877
  var iterate = __webpack_require__(/*! ../internals/iterate */ "../../node_modules/core-js/internals/iterate.js");
6392
6878
  var checkCorrectnessOfIteration = __webpack_require__(/*! ../internals/check-correctness-of-iteration */ "../../node_modules/core-js/internals/check-correctness-of-iteration.js");
6393
6879
  var speciesConstructor = __webpack_require__(/*! ../internals/species-constructor */ "../../node_modules/core-js/internals/species-constructor.js");
6394
- var task = __webpack_require__(/*! ../internals/task */ "../../node_modules/core-js/internals/task.js").set;
6880
+ var task = (__webpack_require__(/*! ../internals/task */ "../../node_modules/core-js/internals/task.js").set);
6395
6881
  var microtask = __webpack_require__(/*! ../internals/microtask */ "../../node_modules/core-js/internals/microtask.js");
6396
6882
  var promiseResolve = __webpack_require__(/*! ../internals/promise-resolve */ "../../node_modules/core-js/internals/promise-resolve.js");
6397
6883
  var hostReportErrors = __webpack_require__(/*! ../internals/host-report-errors */ "../../node_modules/core-js/internals/host-report-errors.js");
@@ -6406,19 +6892,21 @@ var V8_VERSION = __webpack_require__(/*! ../internals/engine-v8-version */ "../.
6406
6892
 
6407
6893
  var SPECIES = wellKnownSymbol('species');
6408
6894
  var PROMISE = 'Promise';
6409
- var getInternalState = InternalStateModule.get;
6895
+
6896
+ var getInternalState = InternalStateModule.getterFor(PROMISE);
6410
6897
  var setInternalState = InternalStateModule.set;
6411
6898
  var getInternalPromiseState = InternalStateModule.getterFor(PROMISE);
6412
6899
  var NativePromisePrototype = NativePromise && NativePromise.prototype;
6413
6900
  var PromiseConstructor = NativePromise;
6414
- var PromiseConstructorPrototype = NativePromisePrototype;
6901
+ var PromisePrototype = NativePromisePrototype;
6415
6902
  var TypeError = global.TypeError;
6416
6903
  var document = global.document;
6417
6904
  var process = global.process;
6418
6905
  var newPromiseCapability = newPromiseCapabilityModule.f;
6419
6906
  var newGenericPromiseCapability = newPromiseCapability;
6907
+
6420
6908
  var DISPATCH_EVENT = !!(document && document.createEvent && global.dispatchEvent);
6421
- var NATIVE_REJECTION_EVENT = typeof PromiseRejectionEvent == 'function';
6909
+ var NATIVE_REJECTION_EVENT = isCallable(global.PromiseRejectionEvent);
6422
6910
  var UNHANDLED_REJECTION = 'unhandledrejection';
6423
6911
  var REJECTION_HANDLED = 'rejectionhandled';
6424
6912
  var PENDING = 0;
@@ -6427,6 +6915,7 @@ var REJECTED = 2;
6427
6915
  var HANDLED = 1;
6428
6916
  var UNHANDLED = 2;
6429
6917
  var SUBCLASSING = false;
6918
+
6430
6919
  var Internal, OwnPromiseCapability, PromiseWrapper, nativeThen;
6431
6920
 
6432
6921
  var FORCED = isForced(PROMISE, function () {
@@ -6437,7 +6926,7 @@ var FORCED = isForced(PROMISE, function () {
6437
6926
  // We can't detect it synchronously, so just check versions
6438
6927
  if (!GLOBAL_CORE_JS_PROMISE && V8_VERSION === 66) return true;
6439
6928
  // We need Promise#finally in the pure version for preventing prototype pollution
6440
- if (IS_PURE && !PromiseConstructorPrototype['finally']) return true;
6929
+ if (IS_PURE && !PromisePrototype['finally']) return true;
6441
6930
  // We can't use @@species feature detection in V8 since it causes
6442
6931
  // deoptimization and performance degradation
6443
6932
  // https://github.com/zloirock/core-js/issues/679
@@ -6462,7 +6951,7 @@ var INCORRECT_ITERATION = FORCED || !checkCorrectnessOfIteration(function (itera
6462
6951
  // helpers
6463
6952
  var isThenable = function (it) {
6464
6953
  var then;
6465
- return isObject(it) && typeof (then = it.then) == 'function' ? then : false;
6954
+ return isObject(it) && isCallable(then = it.then) ? then : false;
6466
6955
  };
6467
6956
 
6468
6957
  var notify = function (state, isReject) {
@@ -6499,7 +6988,7 @@ var notify = function (state, isReject) {
6499
6988
  if (result === reaction.promise) {
6500
6989
  reject(TypeError('Promise-chain cycle'));
6501
6990
  } else if (then = isThenable(result)) {
6502
- then.call(result, resolve, reject);
6991
+ call(then, result, resolve, reject);
6503
6992
  } else resolve(result);
6504
6993
  } else reject(value);
6505
6994
  } catch (error) {
@@ -6527,7 +7016,7 @@ var dispatchEvent = function (name, promise, reason) {
6527
7016
  };
6528
7017
 
6529
7018
  var onUnhandled = function (state) {
6530
- task.call(global, function () {
7019
+ call(task, global, function () {
6531
7020
  var promise = state.facade;
6532
7021
  var value = state.value;
6533
7022
  var IS_UNHANDLED = isUnhandled(state);
@@ -6550,7 +7039,7 @@ var isUnhandled = function (state) {
6550
7039
  };
6551
7040
 
6552
7041
  var onHandleUnhandled = function (state) {
6553
- task.call(global, function () {
7042
+ call(task, global, function () {
6554
7043
  var promise = state.facade;
6555
7044
  if (IS_NODE) {
6556
7045
  process.emit('rejectionHandled', promise);
@@ -6584,7 +7073,7 @@ var internalResolve = function (state, value, unwrap) {
6584
7073
  microtask(function () {
6585
7074
  var wrapper = { done: false };
6586
7075
  try {
6587
- then.call(value,
7076
+ call(then, value,
6588
7077
  bind(internalResolve, wrapper, state),
6589
7078
  bind(internalReject, wrapper, state)
6590
7079
  );
@@ -6606,9 +7095,9 @@ var internalResolve = function (state, value, unwrap) {
6606
7095
  if (FORCED) {
6607
7096
  // 25.4.3.1 Promise(executor)
6608
7097
  PromiseConstructor = function Promise(executor) {
6609
- anInstance(this, PromiseConstructor, PROMISE);
6610
- aFunction(executor);
6611
- Internal.call(this);
7098
+ anInstance(this, PromisePrototype);
7099
+ aCallable(executor);
7100
+ call(Internal, this);
6612
7101
  var state = getInternalState(this);
6613
7102
  try {
6614
7103
  executor(bind(internalResolve, state), bind(internalReject, state));
@@ -6616,7 +7105,7 @@ if (FORCED) {
6616
7105
  internalReject(state, error);
6617
7106
  }
6618
7107
  };
6619
- PromiseConstructorPrototype = PromiseConstructor.prototype;
7108
+ PromisePrototype = PromiseConstructor.prototype;
6620
7109
  // eslint-disable-next-line no-unused-vars -- required for `.length`
6621
7110
  Internal = function Promise(executor) {
6622
7111
  setInternalState(this, {
@@ -6630,17 +7119,18 @@ if (FORCED) {
6630
7119
  value: undefined
6631
7120
  });
6632
7121
  };
6633
- Internal.prototype = redefineAll(PromiseConstructorPrototype, {
7122
+ Internal.prototype = redefineAll(PromisePrototype, {
6634
7123
  // `Promise.prototype.then` method
6635
7124
  // https://tc39.es/ecma262/#sec-promise.prototype.then
6636
7125
  then: function then(onFulfilled, onRejected) {
6637
7126
  var state = getInternalPromiseState(this);
7127
+ var reactions = state.reactions;
6638
7128
  var reaction = newPromiseCapability(speciesConstructor(this, PromiseConstructor));
6639
- reaction.ok = typeof onFulfilled == 'function' ? onFulfilled : true;
6640
- reaction.fail = typeof onRejected == 'function' && onRejected;
7129
+ reaction.ok = isCallable(onFulfilled) ? onFulfilled : true;
7130
+ reaction.fail = isCallable(onRejected) && onRejected;
6641
7131
  reaction.domain = IS_NODE ? process.domain : undefined;
6642
7132
  state.parent = true;
6643
- state.reactions.push(reaction);
7133
+ reactions[reactions.length] = reaction;
6644
7134
  if (state.state != PENDING) notify(state, false);
6645
7135
  return reaction.promise;
6646
7136
  },
@@ -6663,7 +7153,7 @@ if (FORCED) {
6663
7153
  : newGenericPromiseCapability(C);
6664
7154
  };
6665
7155
 
6666
- if (!IS_PURE && typeof NativePromise == 'function' && NativePromisePrototype !== Object.prototype) {
7156
+ if (!IS_PURE && isCallable(NativePromise) && NativePromisePrototype !== Object.prototype) {
6667
7157
  nativeThen = NativePromisePrototype.then;
6668
7158
 
6669
7159
  if (!SUBCLASSING) {
@@ -6671,13 +7161,13 @@ if (FORCED) {
6671
7161
  redefine(NativePromisePrototype, 'then', function then(onFulfilled, onRejected) {
6672
7162
  var that = this;
6673
7163
  return new PromiseConstructor(function (resolve, reject) {
6674
- nativeThen.call(that, resolve, reject);
7164
+ call(nativeThen, that, resolve, reject);
6675
7165
  }).then(onFulfilled, onRejected);
6676
7166
  // https://github.com/zloirock/core-js/issues/640
6677
7167
  }, { unsafe: true });
6678
7168
 
6679
7169
  // makes sure that native promise-based APIs `Promise#catch` properly works with patched `Promise#then`
6680
- redefine(NativePromisePrototype, 'catch', PromiseConstructorPrototype['catch'], { unsafe: true });
7170
+ redefine(NativePromisePrototype, 'catch', PromisePrototype['catch'], { unsafe: true });
6681
7171
  }
6682
7172
 
6683
7173
  // make `.constructor === Promise` work for native promise-based APIs
@@ -6687,7 +7177,7 @@ if (FORCED) {
6687
7177
 
6688
7178
  // make `instanceof Promise` work for native promise-based APIs
6689
7179
  if (setPrototypeOf) {
6690
- setPrototypeOf(NativePromisePrototype, PromiseConstructorPrototype);
7180
+ setPrototypeOf(NativePromisePrototype, PromisePrototype);
6691
7181
  }
6692
7182
  }
6693
7183
  }
@@ -6707,7 +7197,7 @@ $({ target: PROMISE, stat: true, forced: FORCED }, {
6707
7197
  // https://tc39.es/ecma262/#sec-promise.reject
6708
7198
  reject: function reject(r) {
6709
7199
  var capability = newPromiseCapability(this);
6710
- capability.reject.call(undefined, r);
7200
+ call(capability.reject, undefined, r);
6711
7201
  return capability.promise;
6712
7202
  }
6713
7203
  });
@@ -6729,16 +7219,15 @@ $({ target: PROMISE, stat: true, forced: INCORRECT_ITERATION }, {
6729
7219
  var resolve = capability.resolve;
6730
7220
  var reject = capability.reject;
6731
7221
  var result = perform(function () {
6732
- var $promiseResolve = aFunction(C.resolve);
7222
+ var $promiseResolve = aCallable(C.resolve);
6733
7223
  var values = [];
6734
7224
  var counter = 0;
6735
7225
  var remaining = 1;
6736
7226
  iterate(iterable, function (promise) {
6737
7227
  var index = counter++;
6738
7228
  var alreadyCalled = false;
6739
- values.push(undefined);
6740
7229
  remaining++;
6741
- $promiseResolve.call(C, promise).then(function (value) {
7230
+ call($promiseResolve, C, promise).then(function (value) {
6742
7231
  if (alreadyCalled) return;
6743
7232
  alreadyCalled = true;
6744
7233
  values[index] = value;
@@ -6757,9 +7246,9 @@ $({ target: PROMISE, stat: true, forced: INCORRECT_ITERATION }, {
6757
7246
  var capability = newPromiseCapability(C);
6758
7247
  var reject = capability.reject;
6759
7248
  var result = perform(function () {
6760
- var $promiseResolve = aFunction(C.resolve);
7249
+ var $promiseResolve = aCallable(C.resolve);
6761
7250
  iterate(iterable, function (promise) {
6762
- $promiseResolve.call(C, promise).then(capability.resolve, reject);
7251
+ call($promiseResolve, C, promise).then(capability.resolve, reject);
6763
7252
  });
6764
7253
  });
6765
7254
  if (result.error) reject(result.value);
@@ -6783,42 +7272,51 @@ $({ target: PROMISE, stat: true, forced: INCORRECT_ITERATION }, {
6783
7272
  var $ = __webpack_require__(/*! ../internals/export */ "../../node_modules/core-js/internals/export.js");
6784
7273
  var DESCRIPTORS = __webpack_require__(/*! ../internals/descriptors */ "../../node_modules/core-js/internals/descriptors.js");
6785
7274
  var global = __webpack_require__(/*! ../internals/global */ "../../node_modules/core-js/internals/global.js");
6786
- var has = __webpack_require__(/*! ../internals/has */ "../../node_modules/core-js/internals/has.js");
6787
- var isObject = __webpack_require__(/*! ../internals/is-object */ "../../node_modules/core-js/internals/is-object.js");
6788
- var defineProperty = __webpack_require__(/*! ../internals/object-define-property */ "../../node_modules/core-js/internals/object-define-property.js").f;
7275
+ var uncurryThis = __webpack_require__(/*! ../internals/function-uncurry-this */ "../../node_modules/core-js/internals/function-uncurry-this.js");
7276
+ var hasOwn = __webpack_require__(/*! ../internals/has-own-property */ "../../node_modules/core-js/internals/has-own-property.js");
7277
+ var isCallable = __webpack_require__(/*! ../internals/is-callable */ "../../node_modules/core-js/internals/is-callable.js");
7278
+ var isPrototypeOf = __webpack_require__(/*! ../internals/object-is-prototype-of */ "../../node_modules/core-js/internals/object-is-prototype-of.js");
7279
+ var toString = __webpack_require__(/*! ../internals/to-string */ "../../node_modules/core-js/internals/to-string.js");
7280
+ var defineProperty = (__webpack_require__(/*! ../internals/object-define-property */ "../../node_modules/core-js/internals/object-define-property.js").f);
6789
7281
  var copyConstructorProperties = __webpack_require__(/*! ../internals/copy-constructor-properties */ "../../node_modules/core-js/internals/copy-constructor-properties.js");
6790
7282
 
6791
7283
  var NativeSymbol = global.Symbol;
7284
+ var SymbolPrototype = NativeSymbol && NativeSymbol.prototype;
6792
7285
 
6793
- if (DESCRIPTORS && typeof NativeSymbol == 'function' && (!('description' in NativeSymbol.prototype) ||
7286
+ if (DESCRIPTORS && isCallable(NativeSymbol) && (!('description' in SymbolPrototype) ||
6794
7287
  // Safari 12 bug
6795
7288
  NativeSymbol().description !== undefined
6796
7289
  )) {
6797
7290
  var EmptyStringDescriptionStore = {};
6798
7291
  // wrap Symbol constructor for correct work with undefined description
6799
7292
  var SymbolWrapper = function Symbol() {
6800
- var description = arguments.length < 1 || arguments[0] === undefined ? undefined : String(arguments[0]);
6801
- var result = this instanceof SymbolWrapper
7293
+ var description = arguments.length < 1 || arguments[0] === undefined ? undefined : toString(arguments[0]);
7294
+ var result = isPrototypeOf(SymbolPrototype, this)
6802
7295
  ? new NativeSymbol(description)
6803
7296
  // in Edge 13, String(Symbol(undefined)) === 'Symbol(undefined)'
6804
7297
  : description === undefined ? NativeSymbol() : NativeSymbol(description);
6805
7298
  if (description === '') EmptyStringDescriptionStore[result] = true;
6806
7299
  return result;
6807
7300
  };
7301
+
6808
7302
  copyConstructorProperties(SymbolWrapper, NativeSymbol);
6809
- var symbolPrototype = SymbolWrapper.prototype = NativeSymbol.prototype;
6810
- symbolPrototype.constructor = SymbolWrapper;
7303
+ SymbolWrapper.prototype = SymbolPrototype;
7304
+ SymbolPrototype.constructor = SymbolWrapper;
6811
7305
 
6812
- var symbolToString = symbolPrototype.toString;
6813
- var native = String(NativeSymbol('test')) == 'Symbol(test)';
7306
+ var NATIVE_SYMBOL = String(NativeSymbol('test')) == 'Symbol(test)';
7307
+ var symbolToString = uncurryThis(SymbolPrototype.toString);
7308
+ var symbolValueOf = uncurryThis(SymbolPrototype.valueOf);
6814
7309
  var regexp = /^Symbol\((.*)\)[^)]+$/;
6815
- defineProperty(symbolPrototype, 'description', {
7310
+ var replace = uncurryThis(''.replace);
7311
+ var stringSlice = uncurryThis(''.slice);
7312
+
7313
+ defineProperty(SymbolPrototype, 'description', {
6816
7314
  configurable: true,
6817
7315
  get: function description() {
6818
- var symbol = isObject(this) ? this.valueOf() : this;
6819
- var string = symbolToString.call(symbol);
6820
- if (has(EmptyStringDescriptionStore, symbol)) return '';
6821
- var desc = native ? string.slice(7, -1) : string.replace(regexp, '$1');
7316
+ var symbol = symbolValueOf(this);
7317
+ var string = symbolToString(symbol);
7318
+ if (hasOwn(EmptyStringDescriptionStore, symbol)) return '';
7319
+ var desc = NATIVE_SYMBOL ? stringSlice(string, 7, -1) : replace(string, regexp, '$1');
6822
7320
  return desc === '' ? undefined : desc;
6823
7321
  }
6824
7322
  });
@@ -6864,28 +7362,6 @@ module.exports = require("axios");
6864
7362
 
6865
7363
  /***/ }),
6866
7364
 
6867
- /***/ "child_process":
6868
- /*!********************************!*\
6869
- !*** external "child_process" ***!
6870
- \********************************/
6871
- /***/ ((module) => {
6872
-
6873
- "use strict";
6874
- module.exports = require("child_process");
6875
-
6876
- /***/ }),
6877
-
6878
- /***/ "events":
6879
- /*!*************************!*\
6880
- !*** external "events" ***!
6881
- \*************************/
6882
- /***/ ((module) => {
6883
-
6884
- "use strict";
6885
- module.exports = require("events");
6886
-
6887
- /***/ }),
6888
-
6889
7365
  /***/ "execa":
6890
7366
  /*!************************!*\
6891
7367
  !*** external "execa" ***!
@@ -6897,17 +7373,6 @@ module.exports = require("execa");
6897
7373
 
6898
7374
  /***/ }),
6899
7375
 
6900
- /***/ "fs":
6901
- /*!*********************!*\
6902
- !*** external "fs" ***!
6903
- \*********************/
6904
- /***/ ((module) => {
6905
-
6906
- "use strict";
6907
- module.exports = require("fs");
6908
-
6909
- /***/ }),
6910
-
6911
7376
  /***/ "fs-extra":
6912
7377
  /*!***************************!*\
6913
7378
  !*** external "fs-extra" ***!
@@ -6930,28 +7395,6 @@ module.exports = require("glob");
6930
7395
 
6931
7396
  /***/ }),
6932
7397
 
6933
- /***/ "os":
6934
- /*!*********************!*\
6935
- !*** external "os" ***!
6936
- \*********************/
6937
- /***/ ((module) => {
6938
-
6939
- "use strict";
6940
- module.exports = require("os");
6941
-
6942
- /***/ }),
6943
-
6944
- /***/ "path":
6945
- /*!***********************!*\
6946
- !*** external "path" ***!
6947
- \***********************/
6948
- /***/ ((module) => {
6949
-
6950
- "use strict";
6951
- module.exports = require("path");
6952
-
6953
- /***/ }),
6954
-
6955
7398
  /***/ "rimraf":
6956
7399
  /*!*************************!*\
6957
7400
  !*** external "rimraf" ***!
@@ -7018,17 +7461,6 @@ module.exports = require("update-notifier");
7018
7461
 
7019
7462
  /***/ }),
7020
7463
 
7021
- /***/ "util":
7022
- /*!***********************!*\
7023
- !*** external "util" ***!
7024
- \***********************/
7025
- /***/ ((module) => {
7026
-
7027
- "use strict";
7028
- module.exports = require("util");
7029
-
7030
- /***/ }),
7031
-
7032
7464
  /***/ "v8-compile-cache":
7033
7465
  /*!***********************************!*\
7034
7466
  !*** external "v8-compile-cache" ***!
@@ -7062,6 +7494,72 @@ module.exports = require("yargs");
7062
7494
 
7063
7495
  /***/ }),
7064
7496
 
7497
+ /***/ "child_process":
7498
+ /*!********************************!*\
7499
+ !*** external "child_process" ***!
7500
+ \********************************/
7501
+ /***/ ((module) => {
7502
+
7503
+ "use strict";
7504
+ module.exports = require("child_process");
7505
+
7506
+ /***/ }),
7507
+
7508
+ /***/ "events":
7509
+ /*!*************************!*\
7510
+ !*** external "events" ***!
7511
+ \*************************/
7512
+ /***/ ((module) => {
7513
+
7514
+ "use strict";
7515
+ module.exports = require("events");
7516
+
7517
+ /***/ }),
7518
+
7519
+ /***/ "fs":
7520
+ /*!*********************!*\
7521
+ !*** external "fs" ***!
7522
+ \*********************/
7523
+ /***/ ((module) => {
7524
+
7525
+ "use strict";
7526
+ module.exports = require("fs");
7527
+
7528
+ /***/ }),
7529
+
7530
+ /***/ "os":
7531
+ /*!*********************!*\
7532
+ !*** external "os" ***!
7533
+ \*********************/
7534
+ /***/ ((module) => {
7535
+
7536
+ "use strict";
7537
+ module.exports = require("os");
7538
+
7539
+ /***/ }),
7540
+
7541
+ /***/ "path":
7542
+ /*!***********************!*\
7543
+ !*** external "path" ***!
7544
+ \***********************/
7545
+ /***/ ((module) => {
7546
+
7547
+ "use strict";
7548
+ module.exports = require("path");
7549
+
7550
+ /***/ }),
7551
+
7552
+ /***/ "util":
7553
+ /*!***********************!*\
7554
+ !*** external "util" ***!
7555
+ \***********************/
7556
+ /***/ ((module) => {
7557
+
7558
+ "use strict";
7559
+ module.exports = require("util");
7560
+
7561
+ /***/ }),
7562
+
7065
7563
  /***/ "./package.json":
7066
7564
  /*!**********************!*\
7067
7565
  !*** ./package.json ***!
@@ -7069,7 +7567,7 @@ module.exports = require("yargs");
7069
7567
  /***/ ((module) => {
7070
7568
 
7071
7569
  "use strict";
7072
- module.exports = JSON.parse('{"name":"@intelligentgraphics/ig.gfx.packager","version":"2.0.6","description":"IG.GFX.Packager 2.0.6 (2.0.6.100)","main":"build/index.js","private":false,"publishConfig":{"access":"public"},"bin":{"packager":"./build/index.js"},"files":["build","locales","scripts"],"scripts":{"dist":"webpack","clean":"rimraf build *.tsbuildinfo","prepublishOnly":"yarn clean && yarn dist","_postinstall":"node scripts/postinstall.js"},"author":"Michael Beier <mb@intelligentgraphics.biz>","dependencies":{"ajv":"^8.6.2","archiver":"^5.0.0","axios":"^0.21.1","core-js":"^3.16.0","execa":"^5.1.1","fs-extra":"^10.0.0","glob":"^7.1.4","rimraf":"^3.0.2","source-map-support":"^0.5.19","terser":"^4.8.0","typedoc":"^0.21.5","typescript":"^4.3.5","update-notifier":"^5.1.0","v8-compile-cache":"^2.1.1","y18n":"^5.0.8","yargs":"^17.0.1"},"devDependencies":{"@babel/plugin-proposal-class-properties":"^7.14.5","@babel/plugin-proposal-object-rest-spread":"^7.14.7","@babel/preset-env":"^7.14.9","@intelligentgraphics/ig.tools.core":"^1.5.0","@intelligentgraphics/ig.utilities":"^1.6.6","@types/archiver":"^5.1.1","@types/fs-extra":"^9.0.12","@types/glob":"^7.1.4","@types/node":"^16.4.11","@types/rimraf":"^3.0.1","@types/update-notifier":"^5.1.0","@types/yargs":"^17.0.2","babel-loader":"^8.1.0","ts-loader":"^9.2.5","ts-node":"^10.1.0","webpack":"^5.48.0","webpack-cli":"^4.7.2"}}');
7570
+ module.exports = JSON.parse('{"name":"@intelligentgraphics/ig.gfx.packager","version":"2.0.10","description":"IG.GFX.Packager 2.0.10 (2.0.10.100)","main":"build/index.js","private":false,"publishConfig":{"access":"public"},"bin":{"packager":"./build/index.js"},"files":["build","locales","scripts"],"scripts":{"dist":"webpack","clean":"rimraf build *.tsbuildinfo","prepublishOnly":"yarn clean && yarn dist","_postinstall":"node scripts/postinstall.js"},"author":"Michael Beier <mb@intelligentgraphics.biz>","dependencies":{"ajv":"^8.6.2","archiver":"^5.0.0","axios":"^0.21.1","core-js":"^3.16.0","execa":"^5.1.1","fs-extra":"^10.0.0","glob":"^7.1.4","rimraf":"^3.0.2","source-map-support":"^0.5.19","terser":"^4.8.0","typedoc":"^0.21.5","typescript":"^4.3.5","update-notifier":"^5.1.0","v8-compile-cache":"^2.1.1","y18n":"^5.0.8","yargs":"^17.0.1"},"devDependencies":{"@babel/plugin-proposal-class-properties":"^7.14.5","@babel/plugin-proposal-object-rest-spread":"^7.14.7","@babel/preset-env":"^7.14.9","@intelligentgraphics/ig.tools.core":"^1.5.1","@intelligentgraphics/ig.utilities":"^1.6.6","@types/archiver":"^5.1.1","@types/fs-extra":"^9.0.12","@types/glob":"^7.1.4","@types/node":"^16.4.11","@types/rimraf":"^3.0.1","@types/update-notifier":"^5.1.0","@types/yargs":"^17.0.2","babel-loader":"^8.1.0","ts-loader":"^9.2.5","ts-node":"^10.1.0","webpack":"^5.64.4","webpack-cli":"^4.7.2"}}');
7073
7571
 
7074
7572
  /***/ })
7075
7573
 
@@ -7144,7 +7642,7 @@ function _objectWithoutProperties(source, excluded) { if (source == null) return
7144
7642
 
7145
7643
  function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
7146
7644
 
7147
- __webpack_require__(/*! source-map-support */ "source-map-support").install();
7645
+ (__webpack_require__(/*! source-map-support */ "source-map-support").install)();
7148
7646
 
7149
7647
  const pjson = __webpack_require__(/*! ../package.json */ "./package.json");
7150
7648