@wordpress/babel-preset-default 6.3.3 → 6.4.2-next.33ec3857e2.0

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/polyfill.js CHANGED
@@ -1,5 +1,5 @@
1
1
  /**
2
- * core-js 3.11.0
2
+ * core-js 3.19.1
3
3
  * https://github.com/zloirock/core-js
4
4
  * License: http://rock.mit-license.org
5
5
  * © 2021 Denis Pushkarev (zloirock.ru)
@@ -94,29 +94,40 @@
94
94
  /* 0 */
95
95
  /***/ (function(module, exports, __webpack_require__) {
96
96
 
97
- module.exports = __webpack_require__(1);
97
+ __webpack_require__(1);
98
+ __webpack_require__(67);
99
+ __webpack_require__(68);
100
+ __webpack_require__(72);
101
+ __webpack_require__(79);
102
+ module.exports = __webpack_require__(85);
98
103
 
99
104
 
100
105
  /***/ }),
101
106
  /* 1 */
102
107
  /***/ (function(module, exports, __webpack_require__) {
103
108
 
104
- var $ = __webpack_require__(2);
105
- var global = __webpack_require__(3);
106
- var task = __webpack_require__(46);
107
-
108
- var FORCED = !global.setImmediate || !global.clearImmediate;
109
+ "use strict";
109
110
 
110
- // http://w3c.github.io/setImmediate/
111
- $({ global: true, bind: true, enumerable: true, forced: FORCED }, {
112
- // `setImmediate` method
113
- // http://w3c.github.io/setImmediate/#si-setImmediate
114
- setImmediate: task.set,
115
- // `clearImmediate` method
116
- // http://w3c.github.io/setImmediate/#si-clearImmediate
117
- clearImmediate: task.clear
111
+ var $ = __webpack_require__(2);
112
+ var toObject = __webpack_require__(36);
113
+ var lengthOfArrayLike = __webpack_require__(57);
114
+ var toIntegerOrInfinity = __webpack_require__(56);
115
+ var addToUnscopables = __webpack_require__(62);
116
+
117
+ // `Array.prototype.at` method
118
+ // https://github.com/tc39/proposal-relative-indexing-method
119
+ $({ target: 'Array', proto: true }, {
120
+ at: function at(index) {
121
+ var O = toObject(this);
122
+ var len = lengthOfArrayLike(O);
123
+ var relativeIndex = toIntegerOrInfinity(index);
124
+ var k = relativeIndex >= 0 ? relativeIndex : len + relativeIndex;
125
+ return (k < 0 || k >= len) ? undefined : O[k];
126
+ }
118
127
  });
119
128
 
129
+ addToUnscopables('at');
130
+
120
131
 
121
132
  /***/ }),
122
133
  /* 2 */
@@ -124,11 +135,11 @@ $({ global: true, bind: true, enumerable: true, forced: FORCED }, {
124
135
 
125
136
  var global = __webpack_require__(3);
126
137
  var getOwnPropertyDescriptor = __webpack_require__(4).f;
127
- var createNonEnumerableProperty = __webpack_require__(19);
128
- var redefine = __webpack_require__(22);
129
- var setGlobal = __webpack_require__(23);
130
- var copyConstructorProperties = __webpack_require__(33);
131
- var isForced = __webpack_require__(45);
138
+ var createNonEnumerableProperty = __webpack_require__(40);
139
+ var redefine = __webpack_require__(43);
140
+ var setGlobal = __webpack_require__(34);
141
+ var copyConstructorProperties = __webpack_require__(50);
142
+ var isForced = __webpack_require__(61);
132
143
 
133
144
  /*
134
145
  options.target - name of the target object
@@ -143,6 +154,7 @@ var isForced = __webpack_require__(45);
143
154
  options.sham - add a flag to not completely full polyfills
144
155
  options.enumerable - export as enumerable property
145
156
  options.noTargetGet - prevent calling a getter on target
157
+ options.name - the .name of the function if it does not match the key
146
158
  */
147
159
  module.exports = function (options, source) {
148
160
  var TARGET = options.target;
@@ -165,7 +177,7 @@ module.exports = function (options, source) {
165
177
  FORCED = isForced(GLOBAL ? key : TARGET + (STATIC ? '.' : '#') + key, options.forced);
166
178
  // contained in target
167
179
  if (!FORCED && targetProperty !== undefined) {
168
- if (typeof sourceProperty === typeof targetProperty) continue;
180
+ if (typeof sourceProperty == typeof targetProperty) continue;
169
181
  copyConstructorProperties(sourceProperty, targetProperty);
170
182
  }
171
183
  // add a flag to not completely full polyfills
@@ -203,12 +215,13 @@ module.exports =
203
215
  /***/ (function(module, exports, __webpack_require__) {
204
216
 
205
217
  var DESCRIPTORS = __webpack_require__(5);
206
- var propertyIsEnumerableModule = __webpack_require__(7);
207
- var createPropertyDescriptor = __webpack_require__(8);
208
- var toIndexedObject = __webpack_require__(9);
209
- var toPrimitive = __webpack_require__(13);
210
- var has = __webpack_require__(15);
211
- var IE8_DOM_DEFINE = __webpack_require__(17);
218
+ var call = __webpack_require__(7);
219
+ var propertyIsEnumerableModule = __webpack_require__(8);
220
+ var createPropertyDescriptor = __webpack_require__(9);
221
+ var toIndexedObject = __webpack_require__(10);
222
+ var toPropertyKey = __webpack_require__(15);
223
+ var hasOwn = __webpack_require__(35);
224
+ var IE8_DOM_DEFINE = __webpack_require__(38);
212
225
 
213
226
  // eslint-disable-next-line es/no-object-getownpropertydescriptor -- safe
214
227
  var $getOwnPropertyDescriptor = Object.getOwnPropertyDescriptor;
@@ -217,11 +230,11 @@ var $getOwnPropertyDescriptor = Object.getOwnPropertyDescriptor;
217
230
  // https://tc39.es/ecma262/#sec-object.getownpropertydescriptor
218
231
  exports.f = DESCRIPTORS ? $getOwnPropertyDescriptor : function getOwnPropertyDescriptor(O, P) {
219
232
  O = toIndexedObject(O);
220
- P = toPrimitive(P, true);
233
+ P = toPropertyKey(P);
221
234
  if (IE8_DOM_DEFINE) try {
222
235
  return $getOwnPropertyDescriptor(O, P);
223
236
  } catch (error) { /* empty */ }
224
- if (has(O, P)) return createPropertyDescriptor(!propertyIsEnumerableModule.f.call(O, P), O[P]);
237
+ if (hasOwn(O, P)) return createPropertyDescriptor(!call(propertyIsEnumerableModule.f, O, P), O[P]);
225
238
  };
226
239
 
227
240
 
@@ -253,6 +266,17 @@ module.exports = function (exec) {
253
266
 
254
267
  /***/ }),
255
268
  /* 7 */
269
+ /***/ (function(module, exports) {
270
+
271
+ var call = Function.prototype.call;
272
+
273
+ module.exports = call.bind ? call.bind(call) : function () {
274
+ return call.apply(call, arguments);
275
+ };
276
+
277
+
278
+ /***/ }),
279
+ /* 8 */
256
280
  /***/ (function(module, exports, __webpack_require__) {
257
281
 
258
282
  "use strict";
@@ -273,7 +297,7 @@ exports.f = NASHORN_BUG ? function propertyIsEnumerable(V) {
273
297
 
274
298
 
275
299
  /***/ }),
276
- /* 8 */
300
+ /* 9 */
277
301
  /***/ (function(module, exports) {
278
302
 
279
303
  module.exports = function (bitmap, value) {
@@ -287,12 +311,12 @@ module.exports = function (bitmap, value) {
287
311
 
288
312
 
289
313
  /***/ }),
290
- /* 9 */
314
+ /* 10 */
291
315
  /***/ (function(module, exports, __webpack_require__) {
292
316
 
293
317
  // toObject with fallback for non-array-like ES3 strings
294
- var IndexedObject = __webpack_require__(10);
295
- var requireObjectCoercible = __webpack_require__(12);
318
+ var IndexedObject = __webpack_require__(11);
319
+ var requireObjectCoercible = __webpack_require__(14);
296
320
 
297
321
  module.exports = function (it) {
298
322
  return IndexedObject(requireObjectCoercible(it));
@@ -300,13 +324,16 @@ module.exports = function (it) {
300
324
 
301
325
 
302
326
  /***/ }),
303
- /* 10 */
327
+ /* 11 */
304
328
  /***/ (function(module, exports, __webpack_require__) {
305
329
 
330
+ var global = __webpack_require__(3);
331
+ var uncurryThis = __webpack_require__(12);
306
332
  var fails = __webpack_require__(6);
307
- var classof = __webpack_require__(11);
333
+ var classof = __webpack_require__(13);
308
334
 
309
- var split = ''.split;
335
+ var Object = global.Object;
336
+ var split = uncurryThis(''.split);
310
337
 
311
338
  // fallback for non-array-like ES3 and non-enumerable old V8 strings
312
339
  module.exports = fails(function () {
@@ -314,30 +341,25 @@ module.exports = fails(function () {
314
341
  // eslint-disable-next-line no-prototype-builtins -- safe
315
342
  return !Object('z').propertyIsEnumerable(0);
316
343
  }) ? function (it) {
317
- return classof(it) == 'String' ? split.call(it, '') : Object(it);
344
+ return classof(it) == 'String' ? split(it, '') : Object(it);
318
345
  } : Object;
319
346
 
320
347
 
321
- /***/ }),
322
- /* 11 */
323
- /***/ (function(module, exports) {
324
-
325
- var toString = {}.toString;
326
-
327
- module.exports = function (it) {
328
- return toString.call(it).slice(8, -1);
329
- };
330
-
331
-
332
348
  /***/ }),
333
349
  /* 12 */
334
350
  /***/ (function(module, exports) {
335
351
 
336
- // `RequireObjectCoercible` abstract operation
337
- // https://tc39.es/ecma262/#sec-requireobjectcoercible
338
- module.exports = function (it) {
339
- if (it == undefined) throw TypeError("Can't call method on " + it);
340
- return it;
352
+ var FunctionPrototype = Function.prototype;
353
+ var bind = FunctionPrototype.bind;
354
+ var call = FunctionPrototype.call;
355
+ var callBind = bind && bind.bind(call);
356
+
357
+ module.exports = bind ? function (fn) {
358
+ return fn && callBind(call, fn);
359
+ } : function (fn) {
360
+ return fn && function () {
361
+ return call.apply(fn, arguments);
362
+ };
341
363
  };
342
364
 
343
365
 
@@ -345,28 +367,29 @@ module.exports = function (it) {
345
367
  /* 13 */
346
368
  /***/ (function(module, exports, __webpack_require__) {
347
369
 
348
- var isObject = __webpack_require__(14);
370
+ var uncurryThis = __webpack_require__(12);
349
371
 
350
- // `ToPrimitive` abstract operation
351
- // https://tc39.es/ecma262/#sec-toprimitive
352
- // instead of the ES6 spec version, we didn't implement @@toPrimitive case
353
- // and the second argument - flag - preferred type is a string
354
- module.exports = function (input, PREFERRED_STRING) {
355
- if (!isObject(input)) return input;
356
- var fn, val;
357
- if (PREFERRED_STRING && typeof (fn = input.toString) == 'function' && !isObject(val = fn.call(input))) return val;
358
- if (typeof (fn = input.valueOf) == 'function' && !isObject(val = fn.call(input))) return val;
359
- if (!PREFERRED_STRING && typeof (fn = input.toString) == 'function' && !isObject(val = fn.call(input))) return val;
360
- throw TypeError("Can't convert object to primitive value");
372
+ var toString = uncurryThis({}.toString);
373
+ var stringSlice = uncurryThis(''.slice);
374
+
375
+ module.exports = function (it) {
376
+ return stringSlice(toString(it), 8, -1);
361
377
  };
362
378
 
363
379
 
364
380
  /***/ }),
365
381
  /* 14 */
366
- /***/ (function(module, exports) {
382
+ /***/ (function(module, exports, __webpack_require__) {
383
+
384
+ var global = __webpack_require__(3);
385
+
386
+ var TypeError = global.TypeError;
367
387
 
388
+ // `RequireObjectCoercible` abstract operation
389
+ // https://tc39.es/ecma262/#sec-requireobjectcoercible
368
390
  module.exports = function (it) {
369
- return typeof it === 'object' ? it !== null : typeof it === 'function';
391
+ if (it == undefined) throw TypeError("Can't call method on " + it);
392
+ return it;
370
393
  };
371
394
 
372
395
 
@@ -374,12 +397,14 @@ module.exports = function (it) {
374
397
  /* 15 */
375
398
  /***/ (function(module, exports, __webpack_require__) {
376
399
 
377
- var toObject = __webpack_require__(16);
400
+ var toPrimitive = __webpack_require__(16);
401
+ var isSymbol = __webpack_require__(19);
378
402
 
379
- var hasOwnProperty = {}.hasOwnProperty;
380
-
381
- module.exports = function hasOwn(it, key) {
382
- return hasOwnProperty.call(toObject(it), key);
403
+ // `ToPropertyKey` abstract operation
404
+ // https://tc39.es/ecma262/#sec-topropertykey
405
+ module.exports = function (argument) {
406
+ var key = toPrimitive(argument, 'string');
407
+ return isSymbol(key) ? key : key + '';
383
408
  };
384
409
 
385
410
 
@@ -387,12 +412,31 @@ module.exports = function hasOwn(it, key) {
387
412
  /* 16 */
388
413
  /***/ (function(module, exports, __webpack_require__) {
389
414
 
390
- var requireObjectCoercible = __webpack_require__(12);
415
+ var global = __webpack_require__(3);
416
+ var call = __webpack_require__(7);
417
+ var isObject = __webpack_require__(17);
418
+ var isSymbol = __webpack_require__(19);
419
+ var getMethod = __webpack_require__(26);
420
+ var ordinaryToPrimitive = __webpack_require__(29);
421
+ var wellKnownSymbol = __webpack_require__(30);
391
422
 
392
- // `ToObject` abstract operation
393
- // https://tc39.es/ecma262/#sec-toobject
394
- module.exports = function (argument) {
395
- return Object(requireObjectCoercible(argument));
423
+ var TypeError = global.TypeError;
424
+ var TO_PRIMITIVE = wellKnownSymbol('toPrimitive');
425
+
426
+ // `ToPrimitive` abstract operation
427
+ // https://tc39.es/ecma262/#sec-toprimitive
428
+ module.exports = function (input, pref) {
429
+ if (!isObject(input) || isSymbol(input)) return input;
430
+ var exoticToPrim = getMethod(input, TO_PRIMITIVE);
431
+ var result;
432
+ if (exoticToPrim) {
433
+ if (pref === undefined) pref = 'default';
434
+ result = call(exoticToPrim, input, pref);
435
+ if (!isObject(result) || isSymbol(result)) return result;
436
+ throw TypeError("Can't convert object to primitive value");
437
+ }
438
+ if (pref === undefined) pref = 'number';
439
+ return ordinaryToPrimitive(input, pref);
396
440
  };
397
441
 
398
442
 
@@ -400,32 +444,21 @@ module.exports = function (argument) {
400
444
  /* 17 */
401
445
  /***/ (function(module, exports, __webpack_require__) {
402
446
 
403
- var DESCRIPTORS = __webpack_require__(5);
404
- var fails = __webpack_require__(6);
405
- var createElement = __webpack_require__(18);
447
+ var isCallable = __webpack_require__(18);
406
448
 
407
- // Thank's IE8 for his funny defineProperty
408
- module.exports = !DESCRIPTORS && !fails(function () {
409
- // eslint-disable-next-line es/no-object-defineproperty -- requied for testing
410
- return Object.defineProperty(createElement('div'), 'a', {
411
- get: function () { return 7; }
412
- }).a != 7;
413
- });
449
+ module.exports = function (it) {
450
+ return typeof it == 'object' ? it !== null : isCallable(it);
451
+ };
414
452
 
415
453
 
416
454
  /***/ }),
417
455
  /* 18 */
418
- /***/ (function(module, exports, __webpack_require__) {
419
-
420
- var global = __webpack_require__(3);
421
- var isObject = __webpack_require__(14);
422
-
423
- var document = global.document;
424
- // typeof document.createElement is 'object' in old IE
425
- var EXISTS = isObject(document) && isObject(document.createElement);
456
+ /***/ (function(module, exports) {
426
457
 
427
- module.exports = function (it) {
428
- return EXISTS ? document.createElement(it) : {};
458
+ // `IsCallable` abstract operation
459
+ // https://tc39.es/ecma262/#sec-iscallable
460
+ module.exports = function (argument) {
461
+ return typeof argument == 'function';
429
462
  };
430
463
 
431
464
 
@@ -433,15 +466,19 @@ module.exports = function (it) {
433
466
  /* 19 */
434
467
  /***/ (function(module, exports, __webpack_require__) {
435
468
 
436
- var DESCRIPTORS = __webpack_require__(5);
437
- var definePropertyModule = __webpack_require__(20);
438
- var createPropertyDescriptor = __webpack_require__(8);
439
-
440
- module.exports = DESCRIPTORS ? function (object, key, value) {
441
- return definePropertyModule.f(object, key, createPropertyDescriptor(1, value));
442
- } : function (object, key, value) {
443
- object[key] = value;
444
- return object;
469
+ var global = __webpack_require__(3);
470
+ var getBuiltIn = __webpack_require__(20);
471
+ var isCallable = __webpack_require__(18);
472
+ var isPrototypeOf = __webpack_require__(21);
473
+ var USE_SYMBOL_AS_UID = __webpack_require__(22);
474
+
475
+ var Object = global.Object;
476
+
477
+ module.exports = USE_SYMBOL_AS_UID ? function (it) {
478
+ return typeof it == 'symbol';
479
+ } : function (it) {
480
+ var $Symbol = getBuiltIn('Symbol');
481
+ return isCallable($Symbol) && isPrototypeOf($Symbol.prototype, Object(it));
445
482
  };
446
483
 
447
484
 
@@ -449,26 +486,15 @@ module.exports = DESCRIPTORS ? function (object, key, value) {
449
486
  /* 20 */
450
487
  /***/ (function(module, exports, __webpack_require__) {
451
488
 
452
- var DESCRIPTORS = __webpack_require__(5);
453
- var IE8_DOM_DEFINE = __webpack_require__(17);
454
- var anObject = __webpack_require__(21);
455
- var toPrimitive = __webpack_require__(13);
489
+ var global = __webpack_require__(3);
490
+ var isCallable = __webpack_require__(18);
456
491
 
457
- // eslint-disable-next-line es/no-object-defineproperty -- safe
458
- var $defineProperty = Object.defineProperty;
492
+ var aFunction = function (argument) {
493
+ return isCallable(argument) ? argument : undefined;
494
+ };
459
495
 
460
- // `Object.defineProperty` method
461
- // https://tc39.es/ecma262/#sec-object.defineproperty
462
- exports.f = DESCRIPTORS ? $defineProperty : function defineProperty(O, P, Attributes) {
463
- anObject(O);
464
- P = toPrimitive(P, true);
465
- anObject(Attributes);
466
- if (IE8_DOM_DEFINE) try {
467
- return $defineProperty(O, P, Attributes);
468
- } catch (error) { /* empty */ }
469
- if ('get' in Attributes || 'set' in Attributes) throw TypeError('Accessors not supported');
470
- if ('value' in Attributes) O[P] = Attributes.value;
471
- return O;
496
+ module.exports = function (namespace, method) {
497
+ return arguments.length < 2 ? aFunction(global[namespace]) : global[namespace] && global[namespace][method];
472
498
  };
473
499
 
474
500
 
@@ -476,514 +502,1621 @@ exports.f = DESCRIPTORS ? $defineProperty : function defineProperty(O, P, Attrib
476
502
  /* 21 */
477
503
  /***/ (function(module, exports, __webpack_require__) {
478
504
 
479
- var isObject = __webpack_require__(14);
505
+ var uncurryThis = __webpack_require__(12);
480
506
 
481
- module.exports = function (it) {
482
- if (!isObject(it)) {
483
- throw TypeError(String(it) + ' is not an object');
484
- } return it;
485
- };
507
+ module.exports = uncurryThis({}.isPrototypeOf);
486
508
 
487
509
 
488
510
  /***/ }),
489
511
  /* 22 */
490
512
  /***/ (function(module, exports, __webpack_require__) {
491
513
 
492
- var global = __webpack_require__(3);
493
- var createNonEnumerableProperty = __webpack_require__(19);
494
- var has = __webpack_require__(15);
495
- var setGlobal = __webpack_require__(23);
496
- var inspectSource = __webpack_require__(24);
497
- var InternalStateModule = __webpack_require__(26);
498
-
499
- var getInternalState = InternalStateModule.get;
500
- var enforceInternalState = InternalStateModule.enforce;
501
- var TEMPLATE = String(String).split('String');
514
+ /* eslint-disable es/no-symbol -- required for testing */
515
+ var NATIVE_SYMBOL = __webpack_require__(23);
502
516
 
503
- (module.exports = function (O, key, value, options) {
504
- var unsafe = options ? !!options.unsafe : false;
505
- var simple = options ? !!options.enumerable : false;
506
- var noTargetGet = options ? !!options.noTargetGet : false;
507
- var state;
508
- if (typeof value == 'function') {
509
- if (typeof key == 'string' && !has(value, 'name')) {
510
- createNonEnumerableProperty(value, 'name', key);
511
- }
512
- state = enforceInternalState(value);
513
- if (!state.source) {
514
- state.source = TEMPLATE.join(typeof key == 'string' ? key : '');
515
- }
516
- }
517
- if (O === global) {
518
- if (simple) O[key] = value;
519
- else setGlobal(key, value);
520
- return;
521
- } else if (!unsafe) {
522
- delete O[key];
523
- } else if (!noTargetGet && O[key]) {
524
- simple = true;
525
- }
526
- if (simple) O[key] = value;
527
- else createNonEnumerableProperty(O, key, value);
528
- // add fake Function#toString for correct work wrapped methods / constructors with methods like LoDash isNative
529
- })(Function.prototype, 'toString', function toString() {
530
- return typeof this == 'function' && getInternalState(this).source || inspectSource(this);
531
- });
517
+ module.exports = NATIVE_SYMBOL
518
+ && !Symbol.sham
519
+ && typeof Symbol.iterator == 'symbol';
532
520
 
533
521
 
534
522
  /***/ }),
535
523
  /* 23 */
536
524
  /***/ (function(module, exports, __webpack_require__) {
537
525
 
538
- var global = __webpack_require__(3);
539
- var createNonEnumerableProperty = __webpack_require__(19);
526
+ /* eslint-disable es/no-symbol -- required for testing */
527
+ var V8_VERSION = __webpack_require__(24);
528
+ var fails = __webpack_require__(6);
540
529
 
541
- module.exports = function (key, value) {
542
- try {
543
- createNonEnumerableProperty(global, key, value);
544
- } catch (error) {
545
- global[key] = value;
546
- } return value;
547
- };
530
+ // eslint-disable-next-line es/no-object-getownpropertysymbols -- required for testing
531
+ module.exports = !!Object.getOwnPropertySymbols && !fails(function () {
532
+ var symbol = Symbol();
533
+ // Chrome 38 Symbol has incorrect toString conversion
534
+ // `get-own-property-symbols` polyfill symbols converted to object are not Symbol instances
535
+ return !String(symbol) || !(Object(symbol) instanceof Symbol) ||
536
+ // Chrome 38-40 symbols are not inherited from DOM collections prototypes to instances
537
+ !Symbol.sham && V8_VERSION && V8_VERSION < 41;
538
+ });
548
539
 
549
540
 
550
541
  /***/ }),
551
542
  /* 24 */
552
543
  /***/ (function(module, exports, __webpack_require__) {
553
544
 
554
- var store = __webpack_require__(25);
545
+ var global = __webpack_require__(3);
546
+ var userAgent = __webpack_require__(25);
555
547
 
556
- var functionToString = Function.toString;
548
+ var process = global.process;
549
+ var Deno = global.Deno;
550
+ var versions = process && process.versions || Deno && Deno.version;
551
+ var v8 = versions && versions.v8;
552
+ var match, version;
553
+
554
+ if (v8) {
555
+ match = v8.split('.');
556
+ // in old Chrome, versions of V8 isn't V8 = Chrome / 10
557
+ // but their correct versions are not interesting for us
558
+ version = match[0] > 0 && match[0] < 4 ? 1 : +(match[0] + match[1]);
559
+ }
557
560
 
558
- // this helper broken in `3.4.1-3.4.4`, so we can't use `shared` helper
559
- if (typeof store.inspectSource != 'function') {
560
- store.inspectSource = function (it) {
561
- return functionToString.call(it);
562
- };
561
+ // BrowserFS NodeJS `process` polyfill incorrectly set `.v8` to `0.0`
562
+ // so check `userAgent` even if `.v8` exists, but 0
563
+ if (!version && userAgent) {
564
+ match = userAgent.match(/Edge\/(\d+)/);
565
+ if (!match || match[1] >= 74) {
566
+ match = userAgent.match(/Chrome\/(\d+)/);
567
+ if (match) version = +match[1];
568
+ }
563
569
  }
564
570
 
565
- module.exports = store.inspectSource;
571
+ module.exports = version;
566
572
 
567
573
 
568
574
  /***/ }),
569
575
  /* 25 */
570
576
  /***/ (function(module, exports, __webpack_require__) {
571
577
 
572
- var global = __webpack_require__(3);
573
- var setGlobal = __webpack_require__(23);
574
-
575
- var SHARED = '__core-js_shared__';
576
- var store = global[SHARED] || setGlobal(SHARED, {});
578
+ var getBuiltIn = __webpack_require__(20);
577
579
 
578
- module.exports = store;
580
+ module.exports = getBuiltIn('navigator', 'userAgent') || '';
579
581
 
580
582
 
581
583
  /***/ }),
582
584
  /* 26 */
583
585
  /***/ (function(module, exports, __webpack_require__) {
584
586
 
585
- var NATIVE_WEAK_MAP = __webpack_require__(27);
586
- var global = __webpack_require__(3);
587
- var isObject = __webpack_require__(14);
588
- var createNonEnumerableProperty = __webpack_require__(19);
589
- var objectHas = __webpack_require__(15);
590
- var shared = __webpack_require__(25);
591
- var sharedKey = __webpack_require__(28);
592
- var hiddenKeys = __webpack_require__(32);
593
-
594
- var OBJECT_ALREADY_INITIALIZED = 'Object already initialized';
595
- var WeakMap = global.WeakMap;
596
- var set, get, has;
587
+ var aCallable = __webpack_require__(27);
597
588
 
598
- var enforce = function (it) {
599
- return has(it) ? get(it) : set(it, {});
589
+ // `GetMethod` abstract operation
590
+ // https://tc39.es/ecma262/#sec-getmethod
591
+ module.exports = function (V, P) {
592
+ var func = V[P];
593
+ return func == null ? undefined : aCallable(func);
600
594
  };
601
595
 
602
- var getterFor = function (TYPE) {
603
- return function (it) {
604
- var state;
605
- if (!isObject(it) || (state = get(it)).type !== TYPE) {
606
- throw TypeError('Incompatible receiver, ' + TYPE + ' required');
607
- } return state;
608
- };
609
- };
610
596
 
611
- if (NATIVE_WEAK_MAP) {
612
- var store = shared.state || (shared.state = new WeakMap());
613
- var wmget = store.get;
614
- var wmhas = store.has;
615
- var wmset = store.set;
616
- set = function (it, metadata) {
617
- if (wmhas.call(store, it)) throw new TypeError(OBJECT_ALREADY_INITIALIZED);
618
- metadata.facade = it;
619
- wmset.call(store, it, metadata);
620
- return metadata;
621
- };
622
- get = function (it) {
623
- return wmget.call(store, it) || {};
624
- };
625
- has = function (it) {
626
- return wmhas.call(store, it);
627
- };
628
- } else {
629
- var STATE = sharedKey('state');
630
- hiddenKeys[STATE] = true;
631
- set = function (it, metadata) {
632
- if (objectHas(it, STATE)) throw new TypeError(OBJECT_ALREADY_INITIALIZED);
633
- metadata.facade = it;
634
- createNonEnumerableProperty(it, STATE, metadata);
635
- return metadata;
636
- };
637
- get = function (it) {
638
- return objectHas(it, STATE) ? it[STATE] : {};
639
- };
640
- has = function (it) {
641
- return objectHas(it, STATE);
642
- };
643
- }
597
+ /***/ }),
598
+ /* 27 */
599
+ /***/ (function(module, exports, __webpack_require__) {
644
600
 
645
- module.exports = {
646
- set: set,
647
- get: get,
648
- has: has,
649
- enforce: enforce,
650
- getterFor: getterFor
601
+ var global = __webpack_require__(3);
602
+ var isCallable = __webpack_require__(18);
603
+ var tryToString = __webpack_require__(28);
604
+
605
+ var TypeError = global.TypeError;
606
+
607
+ // `Assert: IsCallable(argument) is true`
608
+ module.exports = function (argument) {
609
+ if (isCallable(argument)) return argument;
610
+ throw TypeError(tryToString(argument) + ' is not a function');
651
611
  };
652
612
 
653
613
 
654
614
  /***/ }),
655
- /* 27 */
615
+ /* 28 */
656
616
  /***/ (function(module, exports, __webpack_require__) {
657
617
 
658
618
  var global = __webpack_require__(3);
659
- var inspectSource = __webpack_require__(24);
660
619
 
661
- var WeakMap = global.WeakMap;
620
+ var String = global.String;
662
621
 
663
- module.exports = typeof WeakMap === 'function' && /native code/.test(inspectSource(WeakMap));
622
+ module.exports = function (argument) {
623
+ try {
624
+ return String(argument);
625
+ } catch (error) {
626
+ return 'Object';
627
+ }
628
+ };
664
629
 
665
630
 
666
631
  /***/ }),
667
- /* 28 */
632
+ /* 29 */
668
633
  /***/ (function(module, exports, __webpack_require__) {
669
634
 
670
- var shared = __webpack_require__(29);
671
- var uid = __webpack_require__(31);
635
+ var global = __webpack_require__(3);
636
+ var call = __webpack_require__(7);
637
+ var isCallable = __webpack_require__(18);
638
+ var isObject = __webpack_require__(17);
672
639
 
673
- var keys = shared('keys');
640
+ var TypeError = global.TypeError;
674
641
 
675
- module.exports = function (key) {
676
- return keys[key] || (keys[key] = uid(key));
642
+ // `OrdinaryToPrimitive` abstract operation
643
+ // https://tc39.es/ecma262/#sec-ordinarytoprimitive
644
+ module.exports = function (input, pref) {
645
+ var fn, val;
646
+ if (pref === 'string' && isCallable(fn = input.toString) && !isObject(val = call(fn, input))) return val;
647
+ if (isCallable(fn = input.valueOf) && !isObject(val = call(fn, input))) return val;
648
+ if (pref !== 'string' && isCallable(fn = input.toString) && !isObject(val = call(fn, input))) return val;
649
+ throw TypeError("Can't convert object to primitive value");
677
650
  };
678
651
 
679
652
 
680
653
  /***/ }),
681
- /* 29 */
654
+ /* 30 */
655
+ /***/ (function(module, exports, __webpack_require__) {
656
+
657
+ var global = __webpack_require__(3);
658
+ var shared = __webpack_require__(31);
659
+ var hasOwn = __webpack_require__(35);
660
+ var uid = __webpack_require__(37);
661
+ var NATIVE_SYMBOL = __webpack_require__(23);
662
+ var USE_SYMBOL_AS_UID = __webpack_require__(22);
663
+
664
+ var WellKnownSymbolsStore = shared('wks');
665
+ var Symbol = global.Symbol;
666
+ var symbolFor = Symbol && Symbol['for'];
667
+ var createWellKnownSymbol = USE_SYMBOL_AS_UID ? Symbol : Symbol && Symbol.withoutSetter || uid;
668
+
669
+ module.exports = function (name) {
670
+ if (!hasOwn(WellKnownSymbolsStore, name) || !(NATIVE_SYMBOL || typeof WellKnownSymbolsStore[name] == 'string')) {
671
+ var description = 'Symbol.' + name;
672
+ if (NATIVE_SYMBOL && hasOwn(Symbol, name)) {
673
+ WellKnownSymbolsStore[name] = Symbol[name];
674
+ } else if (USE_SYMBOL_AS_UID && symbolFor) {
675
+ WellKnownSymbolsStore[name] = symbolFor(description);
676
+ } else {
677
+ WellKnownSymbolsStore[name] = createWellKnownSymbol(description);
678
+ }
679
+ } return WellKnownSymbolsStore[name];
680
+ };
681
+
682
+
683
+ /***/ }),
684
+ /* 31 */
682
685
  /***/ (function(module, exports, __webpack_require__) {
683
686
 
684
- var IS_PURE = __webpack_require__(30);
685
- var store = __webpack_require__(25);
687
+ var IS_PURE = __webpack_require__(32);
688
+ var store = __webpack_require__(33);
686
689
 
687
690
  (module.exports = function (key, value) {
688
691
  return store[key] || (store[key] = value !== undefined ? value : {});
689
692
  })('versions', []).push({
690
- version: '3.11.0',
693
+ version: '3.19.1',
691
694
  mode: IS_PURE ? 'pure' : 'global',
692
695
  copyright: '© 2021 Denis Pushkarev (zloirock.ru)'
693
696
  });
694
697
 
695
698
 
696
699
  /***/ }),
697
- /* 30 */
700
+ /* 32 */
698
701
  /***/ (function(module, exports) {
699
702
 
700
703
  module.exports = false;
701
704
 
702
705
 
703
706
  /***/ }),
704
- /* 31 */
705
- /***/ (function(module, exports) {
707
+ /* 33 */
708
+ /***/ (function(module, exports, __webpack_require__) {
709
+
710
+ var global = __webpack_require__(3);
711
+ var setGlobal = __webpack_require__(34);
712
+
713
+ var SHARED = '__core-js_shared__';
714
+ var store = global[SHARED] || setGlobal(SHARED, {});
715
+
716
+ module.exports = store;
717
+
718
+
719
+ /***/ }),
720
+ /* 34 */
721
+ /***/ (function(module, exports, __webpack_require__) {
722
+
723
+ var global = __webpack_require__(3);
724
+
725
+ // eslint-disable-next-line es/no-object-defineproperty -- safe
726
+ var defineProperty = Object.defineProperty;
727
+
728
+ module.exports = function (key, value) {
729
+ try {
730
+ defineProperty(global, key, { value: value, configurable: true, writable: true });
731
+ } catch (error) {
732
+ global[key] = value;
733
+ } return value;
734
+ };
735
+
736
+
737
+ /***/ }),
738
+ /* 35 */
739
+ /***/ (function(module, exports, __webpack_require__) {
740
+
741
+ var uncurryThis = __webpack_require__(12);
742
+ var toObject = __webpack_require__(36);
743
+
744
+ var hasOwnProperty = uncurryThis({}.hasOwnProperty);
745
+
746
+ // `HasOwnProperty` abstract operation
747
+ // https://tc39.es/ecma262/#sec-hasownproperty
748
+ module.exports = Object.hasOwn || function hasOwn(it, key) {
749
+ return hasOwnProperty(toObject(it), key);
750
+ };
751
+
752
+
753
+ /***/ }),
754
+ /* 36 */
755
+ /***/ (function(module, exports, __webpack_require__) {
756
+
757
+ var global = __webpack_require__(3);
758
+ var requireObjectCoercible = __webpack_require__(14);
759
+
760
+ var Object = global.Object;
761
+
762
+ // `ToObject` abstract operation
763
+ // https://tc39.es/ecma262/#sec-toobject
764
+ module.exports = function (argument) {
765
+ return Object(requireObjectCoercible(argument));
766
+ };
767
+
768
+
769
+ /***/ }),
770
+ /* 37 */
771
+ /***/ (function(module, exports, __webpack_require__) {
772
+
773
+ var uncurryThis = __webpack_require__(12);
706
774
 
707
775
  var id = 0;
708
776
  var postfix = Math.random();
777
+ var toString = uncurryThis(1.0.toString);
778
+
779
+ module.exports = function (key) {
780
+ return 'Symbol(' + (key === undefined ? '' : key) + ')_' + toString(++id + postfix, 36);
781
+ };
782
+
783
+
784
+ /***/ }),
785
+ /* 38 */
786
+ /***/ (function(module, exports, __webpack_require__) {
787
+
788
+ var DESCRIPTORS = __webpack_require__(5);
789
+ var fails = __webpack_require__(6);
790
+ var createElement = __webpack_require__(39);
791
+
792
+ // Thank's IE8 for his funny defineProperty
793
+ module.exports = !DESCRIPTORS && !fails(function () {
794
+ // eslint-disable-next-line es/no-object-defineproperty -- requied for testing
795
+ return Object.defineProperty(createElement('div'), 'a', {
796
+ get: function () { return 7; }
797
+ }).a != 7;
798
+ });
799
+
800
+
801
+ /***/ }),
802
+ /* 39 */
803
+ /***/ (function(module, exports, __webpack_require__) {
804
+
805
+ var global = __webpack_require__(3);
806
+ var isObject = __webpack_require__(17);
807
+
808
+ var document = global.document;
809
+ // typeof document.createElement is 'object' in old IE
810
+ var EXISTS = isObject(document) && isObject(document.createElement);
811
+
812
+ module.exports = function (it) {
813
+ return EXISTS ? document.createElement(it) : {};
814
+ };
815
+
816
+
817
+ /***/ }),
818
+ /* 40 */
819
+ /***/ (function(module, exports, __webpack_require__) {
820
+
821
+ var DESCRIPTORS = __webpack_require__(5);
822
+ var definePropertyModule = __webpack_require__(41);
823
+ var createPropertyDescriptor = __webpack_require__(9);
824
+
825
+ module.exports = DESCRIPTORS ? function (object, key, value) {
826
+ return definePropertyModule.f(object, key, createPropertyDescriptor(1, value));
827
+ } : function (object, key, value) {
828
+ object[key] = value;
829
+ return object;
830
+ };
831
+
832
+
833
+ /***/ }),
834
+ /* 41 */
835
+ /***/ (function(module, exports, __webpack_require__) {
836
+
837
+ var global = __webpack_require__(3);
838
+ var DESCRIPTORS = __webpack_require__(5);
839
+ var IE8_DOM_DEFINE = __webpack_require__(38);
840
+ var anObject = __webpack_require__(42);
841
+ var toPropertyKey = __webpack_require__(15);
842
+
843
+ var TypeError = global.TypeError;
844
+ // eslint-disable-next-line es/no-object-defineproperty -- safe
845
+ var $defineProperty = Object.defineProperty;
846
+
847
+ // `Object.defineProperty` method
848
+ // https://tc39.es/ecma262/#sec-object.defineproperty
849
+ exports.f = DESCRIPTORS ? $defineProperty : function defineProperty(O, P, Attributes) {
850
+ anObject(O);
851
+ P = toPropertyKey(P);
852
+ anObject(Attributes);
853
+ if (IE8_DOM_DEFINE) try {
854
+ return $defineProperty(O, P, Attributes);
855
+ } catch (error) { /* empty */ }
856
+ if ('get' in Attributes || 'set' in Attributes) throw TypeError('Accessors not supported');
857
+ if ('value' in Attributes) O[P] = Attributes.value;
858
+ return O;
859
+ };
860
+
861
+
862
+ /***/ }),
863
+ /* 42 */
864
+ /***/ (function(module, exports, __webpack_require__) {
865
+
866
+ var global = __webpack_require__(3);
867
+ var isObject = __webpack_require__(17);
868
+
869
+ var String = global.String;
870
+ var TypeError = global.TypeError;
871
+
872
+ // `Assert: Type(argument) is Object`
873
+ module.exports = function (argument) {
874
+ if (isObject(argument)) return argument;
875
+ throw TypeError(String(argument) + ' is not an object');
876
+ };
877
+
878
+
879
+ /***/ }),
880
+ /* 43 */
881
+ /***/ (function(module, exports, __webpack_require__) {
882
+
883
+ var global = __webpack_require__(3);
884
+ var isCallable = __webpack_require__(18);
885
+ var hasOwn = __webpack_require__(35);
886
+ var createNonEnumerableProperty = __webpack_require__(40);
887
+ var setGlobal = __webpack_require__(34);
888
+ var inspectSource = __webpack_require__(44);
889
+ var InternalStateModule = __webpack_require__(45);
890
+ var CONFIGURABLE_FUNCTION_NAME = __webpack_require__(49).CONFIGURABLE;
891
+
892
+ var getInternalState = InternalStateModule.get;
893
+ var enforceInternalState = InternalStateModule.enforce;
894
+ var TEMPLATE = String(String).split('String');
895
+
896
+ (module.exports = function (O, key, value, options) {
897
+ var unsafe = options ? !!options.unsafe : false;
898
+ var simple = options ? !!options.enumerable : false;
899
+ var noTargetGet = options ? !!options.noTargetGet : false;
900
+ var name = options && options.name !== undefined ? options.name : key;
901
+ var state;
902
+ if (isCallable(value)) {
903
+ if (String(name).slice(0, 7) === 'Symbol(') {
904
+ name = '[' + String(name).replace(/^Symbol\(([^)]*)\)/, '$1') + ']';
905
+ }
906
+ if (!hasOwn(value, 'name') || (CONFIGURABLE_FUNCTION_NAME && value.name !== name)) {
907
+ createNonEnumerableProperty(value, 'name', name);
908
+ }
909
+ state = enforceInternalState(value);
910
+ if (!state.source) {
911
+ state.source = TEMPLATE.join(typeof name == 'string' ? name : '');
912
+ }
913
+ }
914
+ if (O === global) {
915
+ if (simple) O[key] = value;
916
+ else setGlobal(key, value);
917
+ return;
918
+ } else if (!unsafe) {
919
+ delete O[key];
920
+ } else if (!noTargetGet && O[key]) {
921
+ simple = true;
922
+ }
923
+ if (simple) O[key] = value;
924
+ else createNonEnumerableProperty(O, key, value);
925
+ // add fake Function#toString for correct work wrapped methods / constructors with methods like LoDash isNative
926
+ })(Function.prototype, 'toString', function toString() {
927
+ return isCallable(this) && getInternalState(this).source || inspectSource(this);
928
+ });
929
+
930
+
931
+ /***/ }),
932
+ /* 44 */
933
+ /***/ (function(module, exports, __webpack_require__) {
934
+
935
+ var uncurryThis = __webpack_require__(12);
936
+ var isCallable = __webpack_require__(18);
937
+ var store = __webpack_require__(33);
938
+
939
+ var functionToString = uncurryThis(Function.toString);
940
+
941
+ // this helper broken in `core-js@3.4.1-3.4.4`, so we can't use `shared` helper
942
+ if (!isCallable(store.inspectSource)) {
943
+ store.inspectSource = function (it) {
944
+ return functionToString(it);
945
+ };
946
+ }
947
+
948
+ module.exports = store.inspectSource;
949
+
950
+
951
+ /***/ }),
952
+ /* 45 */
953
+ /***/ (function(module, exports, __webpack_require__) {
954
+
955
+ var NATIVE_WEAK_MAP = __webpack_require__(46);
956
+ var global = __webpack_require__(3);
957
+ var uncurryThis = __webpack_require__(12);
958
+ var isObject = __webpack_require__(17);
959
+ var createNonEnumerableProperty = __webpack_require__(40);
960
+ var hasOwn = __webpack_require__(35);
961
+ var shared = __webpack_require__(33);
962
+ var sharedKey = __webpack_require__(47);
963
+ var hiddenKeys = __webpack_require__(48);
964
+
965
+ var OBJECT_ALREADY_INITIALIZED = 'Object already initialized';
966
+ var TypeError = global.TypeError;
967
+ var WeakMap = global.WeakMap;
968
+ var set, get, has;
969
+
970
+ var enforce = function (it) {
971
+ return has(it) ? get(it) : set(it, {});
972
+ };
973
+
974
+ var getterFor = function (TYPE) {
975
+ return function (it) {
976
+ var state;
977
+ if (!isObject(it) || (state = get(it)).type !== TYPE) {
978
+ throw TypeError('Incompatible receiver, ' + TYPE + ' required');
979
+ } return state;
980
+ };
981
+ };
982
+
983
+ if (NATIVE_WEAK_MAP || shared.state) {
984
+ var store = shared.state || (shared.state = new WeakMap());
985
+ var wmget = uncurryThis(store.get);
986
+ var wmhas = uncurryThis(store.has);
987
+ var wmset = uncurryThis(store.set);
988
+ set = function (it, metadata) {
989
+ if (wmhas(store, it)) throw new TypeError(OBJECT_ALREADY_INITIALIZED);
990
+ metadata.facade = it;
991
+ wmset(store, it, metadata);
992
+ return metadata;
993
+ };
994
+ get = function (it) {
995
+ return wmget(store, it) || {};
996
+ };
997
+ has = function (it) {
998
+ return wmhas(store, it);
999
+ };
1000
+ } else {
1001
+ var STATE = sharedKey('state');
1002
+ hiddenKeys[STATE] = true;
1003
+ set = function (it, metadata) {
1004
+ if (hasOwn(it, STATE)) throw new TypeError(OBJECT_ALREADY_INITIALIZED);
1005
+ metadata.facade = it;
1006
+ createNonEnumerableProperty(it, STATE, metadata);
1007
+ return metadata;
1008
+ };
1009
+ get = function (it) {
1010
+ return hasOwn(it, STATE) ? it[STATE] : {};
1011
+ };
1012
+ has = function (it) {
1013
+ return hasOwn(it, STATE);
1014
+ };
1015
+ }
1016
+
1017
+ module.exports = {
1018
+ set: set,
1019
+ get: get,
1020
+ has: has,
1021
+ enforce: enforce,
1022
+ getterFor: getterFor
1023
+ };
1024
+
1025
+
1026
+ /***/ }),
1027
+ /* 46 */
1028
+ /***/ (function(module, exports, __webpack_require__) {
1029
+
1030
+ var global = __webpack_require__(3);
1031
+ var isCallable = __webpack_require__(18);
1032
+ var inspectSource = __webpack_require__(44);
1033
+
1034
+ var WeakMap = global.WeakMap;
1035
+
1036
+ module.exports = isCallable(WeakMap) && /native code/.test(inspectSource(WeakMap));
1037
+
1038
+
1039
+ /***/ }),
1040
+ /* 47 */
1041
+ /***/ (function(module, exports, __webpack_require__) {
1042
+
1043
+ var shared = __webpack_require__(31);
1044
+ var uid = __webpack_require__(37);
1045
+
1046
+ var keys = shared('keys');
1047
+
1048
+ module.exports = function (key) {
1049
+ return keys[key] || (keys[key] = uid(key));
1050
+ };
1051
+
1052
+
1053
+ /***/ }),
1054
+ /* 48 */
1055
+ /***/ (function(module, exports) {
1056
+
1057
+ module.exports = {};
1058
+
1059
+
1060
+ /***/ }),
1061
+ /* 49 */
1062
+ /***/ (function(module, exports, __webpack_require__) {
1063
+
1064
+ var DESCRIPTORS = __webpack_require__(5);
1065
+ var hasOwn = __webpack_require__(35);
1066
+
1067
+ var FunctionPrototype = Function.prototype;
1068
+ // eslint-disable-next-line es/no-object-getownpropertydescriptor -- safe
1069
+ var getDescriptor = DESCRIPTORS && Object.getOwnPropertyDescriptor;
1070
+
1071
+ var EXISTS = hasOwn(FunctionPrototype, 'name');
1072
+ // additional protection from minified / mangled / dropped function names
1073
+ var PROPER = EXISTS && (function something() { /* empty */ }).name === 'something';
1074
+ var CONFIGURABLE = EXISTS && (!DESCRIPTORS || (DESCRIPTORS && getDescriptor(FunctionPrototype, 'name').configurable));
1075
+
1076
+ module.exports = {
1077
+ EXISTS: EXISTS,
1078
+ PROPER: PROPER,
1079
+ CONFIGURABLE: CONFIGURABLE
1080
+ };
1081
+
1082
+
1083
+ /***/ }),
1084
+ /* 50 */
1085
+ /***/ (function(module, exports, __webpack_require__) {
1086
+
1087
+ var hasOwn = __webpack_require__(35);
1088
+ var ownKeys = __webpack_require__(51);
1089
+ var getOwnPropertyDescriptorModule = __webpack_require__(4);
1090
+ var definePropertyModule = __webpack_require__(41);
1091
+
1092
+ module.exports = function (target, source) {
1093
+ var keys = ownKeys(source);
1094
+ var defineProperty = definePropertyModule.f;
1095
+ var getOwnPropertyDescriptor = getOwnPropertyDescriptorModule.f;
1096
+ for (var i = 0; i < keys.length; i++) {
1097
+ var key = keys[i];
1098
+ if (!hasOwn(target, key)) defineProperty(target, key, getOwnPropertyDescriptor(source, key));
1099
+ }
1100
+ };
1101
+
1102
+
1103
+ /***/ }),
1104
+ /* 51 */
1105
+ /***/ (function(module, exports, __webpack_require__) {
1106
+
1107
+ var getBuiltIn = __webpack_require__(20);
1108
+ var uncurryThis = __webpack_require__(12);
1109
+ var getOwnPropertyNamesModule = __webpack_require__(52);
1110
+ var getOwnPropertySymbolsModule = __webpack_require__(60);
1111
+ var anObject = __webpack_require__(42);
1112
+
1113
+ var concat = uncurryThis([].concat);
1114
+
1115
+ // all object keys, includes non-enumerable and symbols
1116
+ module.exports = getBuiltIn('Reflect', 'ownKeys') || function ownKeys(it) {
1117
+ var keys = getOwnPropertyNamesModule.f(anObject(it));
1118
+ var getOwnPropertySymbols = getOwnPropertySymbolsModule.f;
1119
+ return getOwnPropertySymbols ? concat(keys, getOwnPropertySymbols(it)) : keys;
1120
+ };
1121
+
1122
+
1123
+ /***/ }),
1124
+ /* 52 */
1125
+ /***/ (function(module, exports, __webpack_require__) {
1126
+
1127
+ var internalObjectKeys = __webpack_require__(53);
1128
+ var enumBugKeys = __webpack_require__(59);
1129
+
1130
+ var hiddenKeys = enumBugKeys.concat('length', 'prototype');
1131
+
1132
+ // `Object.getOwnPropertyNames` method
1133
+ // https://tc39.es/ecma262/#sec-object.getownpropertynames
1134
+ // eslint-disable-next-line es/no-object-getownpropertynames -- safe
1135
+ exports.f = Object.getOwnPropertyNames || function getOwnPropertyNames(O) {
1136
+ return internalObjectKeys(O, hiddenKeys);
1137
+ };
1138
+
1139
+
1140
+ /***/ }),
1141
+ /* 53 */
1142
+ /***/ (function(module, exports, __webpack_require__) {
1143
+
1144
+ var uncurryThis = __webpack_require__(12);
1145
+ var hasOwn = __webpack_require__(35);
1146
+ var toIndexedObject = __webpack_require__(10);
1147
+ var indexOf = __webpack_require__(54).indexOf;
1148
+ var hiddenKeys = __webpack_require__(48);
1149
+
1150
+ var push = uncurryThis([].push);
1151
+
1152
+ module.exports = function (object, names) {
1153
+ var O = toIndexedObject(object);
1154
+ var i = 0;
1155
+ var result = [];
1156
+ var key;
1157
+ for (key in O) !hasOwn(hiddenKeys, key) && hasOwn(O, key) && push(result, key);
1158
+ // Don't enum bug & hidden keys
1159
+ while (names.length > i) if (hasOwn(O, key = names[i++])) {
1160
+ ~indexOf(result, key) || push(result, key);
1161
+ }
1162
+ return result;
1163
+ };
1164
+
1165
+
1166
+ /***/ }),
1167
+ /* 54 */
1168
+ /***/ (function(module, exports, __webpack_require__) {
1169
+
1170
+ var toIndexedObject = __webpack_require__(10);
1171
+ var toAbsoluteIndex = __webpack_require__(55);
1172
+ var lengthOfArrayLike = __webpack_require__(57);
1173
+
1174
+ // `Array.prototype.{ indexOf, includes }` methods implementation
1175
+ var createMethod = function (IS_INCLUDES) {
1176
+ return function ($this, el, fromIndex) {
1177
+ var O = toIndexedObject($this);
1178
+ var length = lengthOfArrayLike(O);
1179
+ var index = toAbsoluteIndex(fromIndex, length);
1180
+ var value;
1181
+ // Array#includes uses SameValueZero equality algorithm
1182
+ // eslint-disable-next-line no-self-compare -- NaN check
1183
+ if (IS_INCLUDES && el != el) while (length > index) {
1184
+ value = O[index++];
1185
+ // eslint-disable-next-line no-self-compare -- NaN check
1186
+ if (value != value) return true;
1187
+ // Array#indexOf ignores holes, Array#includes - not
1188
+ } else for (;length > index; index++) {
1189
+ if ((IS_INCLUDES || index in O) && O[index] === el) return IS_INCLUDES || index || 0;
1190
+ } return !IS_INCLUDES && -1;
1191
+ };
1192
+ };
1193
+
1194
+ module.exports = {
1195
+ // `Array.prototype.includes` method
1196
+ // https://tc39.es/ecma262/#sec-array.prototype.includes
1197
+ includes: createMethod(true),
1198
+ // `Array.prototype.indexOf` method
1199
+ // https://tc39.es/ecma262/#sec-array.prototype.indexof
1200
+ indexOf: createMethod(false)
1201
+ };
1202
+
1203
+
1204
+ /***/ }),
1205
+ /* 55 */
1206
+ /***/ (function(module, exports, __webpack_require__) {
1207
+
1208
+ var toIntegerOrInfinity = __webpack_require__(56);
1209
+
1210
+ var max = Math.max;
1211
+ var min = Math.min;
1212
+
1213
+ // Helper for a popular repeating case of the spec:
1214
+ // Let integer be ? ToInteger(index).
1215
+ // If integer < 0, let result be max((length + integer), 0); else let result be min(integer, length).
1216
+ module.exports = function (index, length) {
1217
+ var integer = toIntegerOrInfinity(index);
1218
+ return integer < 0 ? max(integer + length, 0) : min(integer, length);
1219
+ };
1220
+
1221
+
1222
+ /***/ }),
1223
+ /* 56 */
1224
+ /***/ (function(module, exports) {
1225
+
1226
+ var ceil = Math.ceil;
1227
+ var floor = Math.floor;
1228
+
1229
+ // `ToIntegerOrInfinity` abstract operation
1230
+ // https://tc39.es/ecma262/#sec-tointegerorinfinity
1231
+ module.exports = function (argument) {
1232
+ var number = +argument;
1233
+ // eslint-disable-next-line no-self-compare -- safe
1234
+ return number !== number || number === 0 ? 0 : (number > 0 ? floor : ceil)(number);
1235
+ };
1236
+
1237
+
1238
+ /***/ }),
1239
+ /* 57 */
1240
+ /***/ (function(module, exports, __webpack_require__) {
1241
+
1242
+ var toLength = __webpack_require__(58);
1243
+
1244
+ // `LengthOfArrayLike` abstract operation
1245
+ // https://tc39.es/ecma262/#sec-lengthofarraylike
1246
+ module.exports = function (obj) {
1247
+ return toLength(obj.length);
1248
+ };
1249
+
1250
+
1251
+ /***/ }),
1252
+ /* 58 */
1253
+ /***/ (function(module, exports, __webpack_require__) {
1254
+
1255
+ var toIntegerOrInfinity = __webpack_require__(56);
1256
+
1257
+ var min = Math.min;
1258
+
1259
+ // `ToLength` abstract operation
1260
+ // https://tc39.es/ecma262/#sec-tolength
1261
+ module.exports = function (argument) {
1262
+ return argument > 0 ? min(toIntegerOrInfinity(argument), 0x1FFFFFFFFFFFFF) : 0; // 2 ** 53 - 1 == 9007199254740991
1263
+ };
1264
+
1265
+
1266
+ /***/ }),
1267
+ /* 59 */
1268
+ /***/ (function(module, exports) {
1269
+
1270
+ // IE8- don't enum bug keys
1271
+ module.exports = [
1272
+ 'constructor',
1273
+ 'hasOwnProperty',
1274
+ 'isPrototypeOf',
1275
+ 'propertyIsEnumerable',
1276
+ 'toLocaleString',
1277
+ 'toString',
1278
+ 'valueOf'
1279
+ ];
1280
+
1281
+
1282
+ /***/ }),
1283
+ /* 60 */
1284
+ /***/ (function(module, exports) {
1285
+
1286
+ // eslint-disable-next-line es/no-object-getownpropertysymbols -- safe
1287
+ exports.f = Object.getOwnPropertySymbols;
1288
+
1289
+
1290
+ /***/ }),
1291
+ /* 61 */
1292
+ /***/ (function(module, exports, __webpack_require__) {
1293
+
1294
+ var fails = __webpack_require__(6);
1295
+ var isCallable = __webpack_require__(18);
1296
+
1297
+ var replacement = /#|\.prototype\./;
1298
+
1299
+ var isForced = function (feature, detection) {
1300
+ var value = data[normalize(feature)];
1301
+ return value == POLYFILL ? true
1302
+ : value == NATIVE ? false
1303
+ : isCallable(detection) ? fails(detection)
1304
+ : !!detection;
1305
+ };
1306
+
1307
+ var normalize = isForced.normalize = function (string) {
1308
+ return String(string).replace(replacement, '.').toLowerCase();
1309
+ };
1310
+
1311
+ var data = isForced.data = {};
1312
+ var NATIVE = isForced.NATIVE = 'N';
1313
+ var POLYFILL = isForced.POLYFILL = 'P';
1314
+
1315
+ module.exports = isForced;
1316
+
1317
+
1318
+ /***/ }),
1319
+ /* 62 */
1320
+ /***/ (function(module, exports, __webpack_require__) {
1321
+
1322
+ var wellKnownSymbol = __webpack_require__(30);
1323
+ var create = __webpack_require__(63);
1324
+ var definePropertyModule = __webpack_require__(41);
1325
+
1326
+ var UNSCOPABLES = wellKnownSymbol('unscopables');
1327
+ var ArrayPrototype = Array.prototype;
1328
+
1329
+ // Array.prototype[@@unscopables]
1330
+ // https://tc39.es/ecma262/#sec-array.prototype-@@unscopables
1331
+ if (ArrayPrototype[UNSCOPABLES] == undefined) {
1332
+ definePropertyModule.f(ArrayPrototype, UNSCOPABLES, {
1333
+ configurable: true,
1334
+ value: create(null)
1335
+ });
1336
+ }
1337
+
1338
+ // add a key to Array.prototype[@@unscopables]
1339
+ module.exports = function (key) {
1340
+ ArrayPrototype[UNSCOPABLES][key] = true;
1341
+ };
1342
+
1343
+
1344
+ /***/ }),
1345
+ /* 63 */
1346
+ /***/ (function(module, exports, __webpack_require__) {
1347
+
1348
+ /* global ActiveXObject -- old IE, WSH */
1349
+ var anObject = __webpack_require__(42);
1350
+ var defineProperties = __webpack_require__(64);
1351
+ var enumBugKeys = __webpack_require__(59);
1352
+ var hiddenKeys = __webpack_require__(48);
1353
+ var html = __webpack_require__(66);
1354
+ var documentCreateElement = __webpack_require__(39);
1355
+ var sharedKey = __webpack_require__(47);
1356
+
1357
+ var GT = '>';
1358
+ var LT = '<';
1359
+ var PROTOTYPE = 'prototype';
1360
+ var SCRIPT = 'script';
1361
+ var IE_PROTO = sharedKey('IE_PROTO');
1362
+
1363
+ var EmptyConstructor = function () { /* empty */ };
1364
+
1365
+ var scriptTag = function (content) {
1366
+ return LT + SCRIPT + GT + content + LT + '/' + SCRIPT + GT;
1367
+ };
1368
+
1369
+ // Create object with fake `null` prototype: use ActiveX Object with cleared prototype
1370
+ var NullProtoObjectViaActiveX = function (activeXDocument) {
1371
+ activeXDocument.write(scriptTag(''));
1372
+ activeXDocument.close();
1373
+ var temp = activeXDocument.parentWindow.Object;
1374
+ activeXDocument = null; // avoid memory leak
1375
+ return temp;
1376
+ };
1377
+
1378
+ // Create object with fake `null` prototype: use iframe Object with cleared prototype
1379
+ var NullProtoObjectViaIFrame = function () {
1380
+ // Thrash, waste and sodomy: IE GC bug
1381
+ var iframe = documentCreateElement('iframe');
1382
+ var JS = 'java' + SCRIPT + ':';
1383
+ var iframeDocument;
1384
+ iframe.style.display = 'none';
1385
+ html.appendChild(iframe);
1386
+ // https://github.com/zloirock/core-js/issues/475
1387
+ iframe.src = String(JS);
1388
+ iframeDocument = iframe.contentWindow.document;
1389
+ iframeDocument.open();
1390
+ iframeDocument.write(scriptTag('document.F=Object'));
1391
+ iframeDocument.close();
1392
+ return iframeDocument.F;
1393
+ };
1394
+
1395
+ // Check for document.domain and active x support
1396
+ // No need to use active x approach when document.domain is not set
1397
+ // see https://github.com/es-shims/es5-shim/issues/150
1398
+ // variation of https://github.com/kitcambridge/es5-shim/commit/4f738ac066346
1399
+ // avoid IE GC bug
1400
+ var activeXDocument;
1401
+ var NullProtoObject = function () {
1402
+ try {
1403
+ activeXDocument = new ActiveXObject('htmlfile');
1404
+ } catch (error) { /* ignore */ }
1405
+ NullProtoObject = typeof document != 'undefined'
1406
+ ? document.domain && activeXDocument
1407
+ ? NullProtoObjectViaActiveX(activeXDocument) // old IE
1408
+ : NullProtoObjectViaIFrame()
1409
+ : NullProtoObjectViaActiveX(activeXDocument); // WSH
1410
+ var length = enumBugKeys.length;
1411
+ while (length--) delete NullProtoObject[PROTOTYPE][enumBugKeys[length]];
1412
+ return NullProtoObject();
1413
+ };
1414
+
1415
+ hiddenKeys[IE_PROTO] = true;
1416
+
1417
+ // `Object.create` method
1418
+ // https://tc39.es/ecma262/#sec-object.create
1419
+ module.exports = Object.create || function create(O, Properties) {
1420
+ var result;
1421
+ if (O !== null) {
1422
+ EmptyConstructor[PROTOTYPE] = anObject(O);
1423
+ result = new EmptyConstructor();
1424
+ EmptyConstructor[PROTOTYPE] = null;
1425
+ // add "__proto__" for Object.getPrototypeOf polyfill
1426
+ result[IE_PROTO] = O;
1427
+ } else result = NullProtoObject();
1428
+ return Properties === undefined ? result : defineProperties(result, Properties);
1429
+ };
1430
+
1431
+
1432
+ /***/ }),
1433
+ /* 64 */
1434
+ /***/ (function(module, exports, __webpack_require__) {
1435
+
1436
+ var DESCRIPTORS = __webpack_require__(5);
1437
+ var definePropertyModule = __webpack_require__(41);
1438
+ var anObject = __webpack_require__(42);
1439
+ var toIndexedObject = __webpack_require__(10);
1440
+ var objectKeys = __webpack_require__(65);
1441
+
1442
+ // `Object.defineProperties` method
1443
+ // https://tc39.es/ecma262/#sec-object.defineproperties
1444
+ // eslint-disable-next-line es/no-object-defineproperties -- safe
1445
+ module.exports = DESCRIPTORS ? Object.defineProperties : function defineProperties(O, Properties) {
1446
+ anObject(O);
1447
+ var props = toIndexedObject(Properties);
1448
+ var keys = objectKeys(Properties);
1449
+ var length = keys.length;
1450
+ var index = 0;
1451
+ var key;
1452
+ while (length > index) definePropertyModule.f(O, key = keys[index++], props[key]);
1453
+ return O;
1454
+ };
1455
+
1456
+
1457
+ /***/ }),
1458
+ /* 65 */
1459
+ /***/ (function(module, exports, __webpack_require__) {
1460
+
1461
+ var internalObjectKeys = __webpack_require__(53);
1462
+ var enumBugKeys = __webpack_require__(59);
1463
+
1464
+ // `Object.keys` method
1465
+ // https://tc39.es/ecma262/#sec-object.keys
1466
+ // eslint-disable-next-line es/no-object-keys -- safe
1467
+ module.exports = Object.keys || function keys(O) {
1468
+ return internalObjectKeys(O, enumBugKeys);
1469
+ };
1470
+
1471
+
1472
+ /***/ }),
1473
+ /* 66 */
1474
+ /***/ (function(module, exports, __webpack_require__) {
1475
+
1476
+ var getBuiltIn = __webpack_require__(20);
1477
+
1478
+ module.exports = getBuiltIn('document', 'documentElement');
1479
+
1480
+
1481
+ /***/ }),
1482
+ /* 67 */
1483
+ /***/ (function(module, exports, __webpack_require__) {
1484
+
1485
+ var $ = __webpack_require__(2);
1486
+ var hasOwn = __webpack_require__(35);
1487
+
1488
+ // `Object.hasOwn` method
1489
+ // https://github.com/tc39/proposal-accessible-object-hasownproperty
1490
+ $({ target: 'Object', stat: true }, {
1491
+ hasOwn: hasOwn
1492
+ });
1493
+
1494
+
1495
+ /***/ }),
1496
+ /* 68 */
1497
+ /***/ (function(module, exports, __webpack_require__) {
1498
+
1499
+ "use strict";
1500
+
1501
+ var $ = __webpack_require__(2);
1502
+ var uncurryThis = __webpack_require__(12);
1503
+ var requireObjectCoercible = __webpack_require__(14);
1504
+ var toIntegerOrInfinity = __webpack_require__(56);
1505
+ var toString = __webpack_require__(69);
1506
+ var fails = __webpack_require__(6);
1507
+
1508
+ var charAt = uncurryThis(''.charAt);
1509
+
1510
+ var FORCED = fails(function () {
1511
+ return '𠮷'.at(0) !== '\uD842';
1512
+ });
1513
+
1514
+ // `String.prototype.at` method
1515
+ // https://github.com/tc39/proposal-relative-indexing-method
1516
+ $({ target: 'String', proto: true, forced: FORCED }, {
1517
+ at: function at(index) {
1518
+ var S = toString(requireObjectCoercible(this));
1519
+ var len = S.length;
1520
+ var relativeIndex = toIntegerOrInfinity(index);
1521
+ var k = relativeIndex >= 0 ? relativeIndex : len + relativeIndex;
1522
+ return (k < 0 || k >= len) ? undefined : charAt(S, k);
1523
+ }
1524
+ });
1525
+
1526
+
1527
+ /***/ }),
1528
+ /* 69 */
1529
+ /***/ (function(module, exports, __webpack_require__) {
1530
+
1531
+ var global = __webpack_require__(3);
1532
+ var classof = __webpack_require__(70);
1533
+
1534
+ var String = global.String;
1535
+
1536
+ module.exports = function (argument) {
1537
+ if (classof(argument) === 'Symbol') throw TypeError('Cannot convert a Symbol value to a string');
1538
+ return String(argument);
1539
+ };
1540
+
1541
+
1542
+ /***/ }),
1543
+ /* 70 */
1544
+ /***/ (function(module, exports, __webpack_require__) {
1545
+
1546
+ var global = __webpack_require__(3);
1547
+ var TO_STRING_TAG_SUPPORT = __webpack_require__(71);
1548
+ var isCallable = __webpack_require__(18);
1549
+ var classofRaw = __webpack_require__(13);
1550
+ var wellKnownSymbol = __webpack_require__(30);
1551
+
1552
+ var TO_STRING_TAG = wellKnownSymbol('toStringTag');
1553
+ var Object = global.Object;
1554
+
1555
+ // ES3 wrong here
1556
+ var CORRECT_ARGUMENTS = classofRaw(function () { return arguments; }()) == 'Arguments';
1557
+
1558
+ // fallback for IE11 Script Access Denied error
1559
+ var tryGet = function (it, key) {
1560
+ try {
1561
+ return it[key];
1562
+ } catch (error) { /* empty */ }
1563
+ };
1564
+
1565
+ // getting tag from ES6+ `Object.prototype.toString`
1566
+ module.exports = TO_STRING_TAG_SUPPORT ? classofRaw : function (it) {
1567
+ var O, tag, result;
1568
+ return it === undefined ? 'Undefined' : it === null ? 'Null'
1569
+ // @@toStringTag case
1570
+ : typeof (tag = tryGet(O = Object(it), TO_STRING_TAG)) == 'string' ? tag
1571
+ // builtinTag case
1572
+ : CORRECT_ARGUMENTS ? classofRaw(O)
1573
+ // ES3 arguments fallback
1574
+ : (result = classofRaw(O)) == 'Object' && isCallable(O.callee) ? 'Arguments' : result;
1575
+ };
1576
+
1577
+
1578
+ /***/ }),
1579
+ /* 71 */
1580
+ /***/ (function(module, exports, __webpack_require__) {
709
1581
 
710
- module.exports = function (key) {
711
- return 'Symbol(' + String(key === undefined ? '' : key) + ')_' + (++id + postfix).toString(36);
712
- };
1582
+ var wellKnownSymbol = __webpack_require__(30);
713
1583
 
1584
+ var TO_STRING_TAG = wellKnownSymbol('toStringTag');
1585
+ var test = {};
714
1586
 
715
- /***/ }),
716
- /* 32 */
717
- /***/ (function(module, exports) {
1587
+ test[TO_STRING_TAG] = 'z';
718
1588
 
719
- module.exports = {};
1589
+ module.exports = String(test) === '[object z]';
720
1590
 
721
1591
 
722
1592
  /***/ }),
723
- /* 33 */
1593
+ /* 72 */
724
1594
  /***/ (function(module, exports, __webpack_require__) {
725
1595
 
726
- var has = __webpack_require__(15);
727
- var ownKeys = __webpack_require__(34);
728
- var getOwnPropertyDescriptorModule = __webpack_require__(4);
729
- var definePropertyModule = __webpack_require__(20);
1596
+ "use strict";
730
1597
 
731
- module.exports = function (target, source) {
732
- var keys = ownKeys(source);
733
- var defineProperty = definePropertyModule.f;
734
- var getOwnPropertyDescriptor = getOwnPropertyDescriptorModule.f;
735
- for (var i = 0; i < keys.length; i++) {
736
- var key = keys[i];
737
- if (!has(target, key)) defineProperty(target, key, getOwnPropertyDescriptor(source, key));
738
- }
739
- };
1598
+ var ArrayBufferViewCore = __webpack_require__(73);
1599
+ var lengthOfArrayLike = __webpack_require__(57);
1600
+ var toIntegerOrInfinity = __webpack_require__(56);
1601
+
1602
+ var aTypedArray = ArrayBufferViewCore.aTypedArray;
1603
+ var exportTypedArrayMethod = ArrayBufferViewCore.exportTypedArrayMethod;
1604
+
1605
+ // `%TypedArray%.prototype.at` method
1606
+ // https://github.com/tc39/proposal-relative-indexing-method
1607
+ exportTypedArrayMethod('at', function at(index) {
1608
+ var O = aTypedArray(this);
1609
+ var len = lengthOfArrayLike(O);
1610
+ var relativeIndex = toIntegerOrInfinity(index);
1611
+ var k = relativeIndex >= 0 ? relativeIndex : len + relativeIndex;
1612
+ return (k < 0 || k >= len) ? undefined : O[k];
1613
+ });
740
1614
 
741
1615
 
742
1616
  /***/ }),
743
- /* 34 */
1617
+ /* 73 */
744
1618
  /***/ (function(module, exports, __webpack_require__) {
745
1619
 
746
- var getBuiltIn = __webpack_require__(35);
747
- var getOwnPropertyNamesModule = __webpack_require__(37);
748
- var getOwnPropertySymbolsModule = __webpack_require__(44);
749
- var anObject = __webpack_require__(21);
1620
+ "use strict";
750
1621
 
751
- // all object keys, includes non-enumerable and symbols
752
- module.exports = getBuiltIn('Reflect', 'ownKeys') || function ownKeys(it) {
753
- var keys = getOwnPropertyNamesModule.f(anObject(it));
754
- var getOwnPropertySymbols = getOwnPropertySymbolsModule.f;
755
- return getOwnPropertySymbols ? keys.concat(getOwnPropertySymbols(it)) : keys;
1622
+ var NATIVE_ARRAY_BUFFER = __webpack_require__(74);
1623
+ var DESCRIPTORS = __webpack_require__(5);
1624
+ var global = __webpack_require__(3);
1625
+ var isCallable = __webpack_require__(18);
1626
+ var isObject = __webpack_require__(17);
1627
+ var hasOwn = __webpack_require__(35);
1628
+ var classof = __webpack_require__(70);
1629
+ var tryToString = __webpack_require__(28);
1630
+ var createNonEnumerableProperty = __webpack_require__(40);
1631
+ var redefine = __webpack_require__(43);
1632
+ var defineProperty = __webpack_require__(41).f;
1633
+ var isPrototypeOf = __webpack_require__(21);
1634
+ var getPrototypeOf = __webpack_require__(75);
1635
+ var setPrototypeOf = __webpack_require__(77);
1636
+ var wellKnownSymbol = __webpack_require__(30);
1637
+ var uid = __webpack_require__(37);
1638
+
1639
+ var Int8Array = global.Int8Array;
1640
+ var Int8ArrayPrototype = Int8Array && Int8Array.prototype;
1641
+ var Uint8ClampedArray = global.Uint8ClampedArray;
1642
+ var Uint8ClampedArrayPrototype = Uint8ClampedArray && Uint8ClampedArray.prototype;
1643
+ var TypedArray = Int8Array && getPrototypeOf(Int8Array);
1644
+ var TypedArrayPrototype = Int8ArrayPrototype && getPrototypeOf(Int8ArrayPrototype);
1645
+ var ObjectPrototype = Object.prototype;
1646
+ var TypeError = global.TypeError;
1647
+
1648
+ var TO_STRING_TAG = wellKnownSymbol('toStringTag');
1649
+ var TYPED_ARRAY_TAG = uid('TYPED_ARRAY_TAG');
1650
+ var TYPED_ARRAY_CONSTRUCTOR = uid('TYPED_ARRAY_CONSTRUCTOR');
1651
+ // Fixing native typed arrays in Opera Presto crashes the browser, see #595
1652
+ var NATIVE_ARRAY_BUFFER_VIEWS = NATIVE_ARRAY_BUFFER && !!setPrototypeOf && classof(global.opera) !== 'Opera';
1653
+ var TYPED_ARRAY_TAG_REQIRED = false;
1654
+ var NAME, Constructor, Prototype;
1655
+
1656
+ var TypedArrayConstructorsList = {
1657
+ Int8Array: 1,
1658
+ Uint8Array: 1,
1659
+ Uint8ClampedArray: 1,
1660
+ Int16Array: 2,
1661
+ Uint16Array: 2,
1662
+ Int32Array: 4,
1663
+ Uint32Array: 4,
1664
+ Float32Array: 4,
1665
+ Float64Array: 8
756
1666
  };
757
1667
 
1668
+ var BigIntArrayConstructorsList = {
1669
+ BigInt64Array: 8,
1670
+ BigUint64Array: 8
1671
+ };
758
1672
 
759
- /***/ }),
760
- /* 35 */
761
- /***/ (function(module, exports, __webpack_require__) {
1673
+ var isView = function isView(it) {
1674
+ if (!isObject(it)) return false;
1675
+ var klass = classof(it);
1676
+ return klass === 'DataView'
1677
+ || hasOwn(TypedArrayConstructorsList, klass)
1678
+ || hasOwn(BigIntArrayConstructorsList, klass);
1679
+ };
762
1680
 
763
- var path = __webpack_require__(36);
764
- var global = __webpack_require__(3);
1681
+ var isTypedArray = function (it) {
1682
+ if (!isObject(it)) return false;
1683
+ var klass = classof(it);
1684
+ return hasOwn(TypedArrayConstructorsList, klass)
1685
+ || hasOwn(BigIntArrayConstructorsList, klass);
1686
+ };
765
1687
 
766
- var aFunction = function (variable) {
767
- return typeof variable == 'function' ? variable : undefined;
1688
+ var aTypedArray = function (it) {
1689
+ if (isTypedArray(it)) return it;
1690
+ throw TypeError('Target is not a typed array');
768
1691
  };
769
1692
 
770
- module.exports = function (namespace, method) {
771
- return arguments.length < 2 ? aFunction(path[namespace]) || aFunction(global[namespace])
772
- : path[namespace] && path[namespace][method] || global[namespace] && global[namespace][method];
1693
+ var aTypedArrayConstructor = function (C) {
1694
+ if (isCallable(C) && (!setPrototypeOf || isPrototypeOf(TypedArray, C))) return C;
1695
+ throw TypeError(tryToString(C) + ' is not a typed array constructor');
1696
+ };
1697
+
1698
+ var exportTypedArrayMethod = function (KEY, property, forced) {
1699
+ if (!DESCRIPTORS) return;
1700
+ if (forced) for (var ARRAY in TypedArrayConstructorsList) {
1701
+ var TypedArrayConstructor = global[ARRAY];
1702
+ if (TypedArrayConstructor && hasOwn(TypedArrayConstructor.prototype, KEY)) try {
1703
+ delete TypedArrayConstructor.prototype[KEY];
1704
+ } catch (error) { /* empty */ }
1705
+ }
1706
+ if (!TypedArrayPrototype[KEY] || forced) {
1707
+ redefine(TypedArrayPrototype, KEY, forced ? property
1708
+ : NATIVE_ARRAY_BUFFER_VIEWS && Int8ArrayPrototype[KEY] || property);
1709
+ }
1710
+ };
1711
+
1712
+ var exportTypedArrayStaticMethod = function (KEY, property, forced) {
1713
+ var ARRAY, TypedArrayConstructor;
1714
+ if (!DESCRIPTORS) return;
1715
+ if (setPrototypeOf) {
1716
+ if (forced) for (ARRAY in TypedArrayConstructorsList) {
1717
+ TypedArrayConstructor = global[ARRAY];
1718
+ if (TypedArrayConstructor && hasOwn(TypedArrayConstructor, KEY)) try {
1719
+ delete TypedArrayConstructor[KEY];
1720
+ } catch (error) { /* empty */ }
1721
+ }
1722
+ if (!TypedArray[KEY] || forced) {
1723
+ // V8 ~ Chrome 49-50 `%TypedArray%` methods are non-writable non-configurable
1724
+ try {
1725
+ return redefine(TypedArray, KEY, forced ? property : NATIVE_ARRAY_BUFFER_VIEWS && TypedArray[KEY] || property);
1726
+ } catch (error) { /* empty */ }
1727
+ } else return;
1728
+ }
1729
+ for (ARRAY in TypedArrayConstructorsList) {
1730
+ TypedArrayConstructor = global[ARRAY];
1731
+ if (TypedArrayConstructor && (!TypedArrayConstructor[KEY] || forced)) {
1732
+ redefine(TypedArrayConstructor, KEY, property);
1733
+ }
1734
+ }
1735
+ };
1736
+
1737
+ for (NAME in TypedArrayConstructorsList) {
1738
+ Constructor = global[NAME];
1739
+ Prototype = Constructor && Constructor.prototype;
1740
+ if (Prototype) createNonEnumerableProperty(Prototype, TYPED_ARRAY_CONSTRUCTOR, Constructor);
1741
+ else NATIVE_ARRAY_BUFFER_VIEWS = false;
1742
+ }
1743
+
1744
+ for (NAME in BigIntArrayConstructorsList) {
1745
+ Constructor = global[NAME];
1746
+ Prototype = Constructor && Constructor.prototype;
1747
+ if (Prototype) createNonEnumerableProperty(Prototype, TYPED_ARRAY_CONSTRUCTOR, Constructor);
1748
+ }
1749
+
1750
+ // WebKit bug - typed arrays constructors prototype is Object.prototype
1751
+ if (!NATIVE_ARRAY_BUFFER_VIEWS || !isCallable(TypedArray) || TypedArray === Function.prototype) {
1752
+ // eslint-disable-next-line no-shadow -- safe
1753
+ TypedArray = function TypedArray() {
1754
+ throw TypeError('Incorrect invocation');
1755
+ };
1756
+ if (NATIVE_ARRAY_BUFFER_VIEWS) for (NAME in TypedArrayConstructorsList) {
1757
+ if (global[NAME]) setPrototypeOf(global[NAME], TypedArray);
1758
+ }
1759
+ }
1760
+
1761
+ if (!NATIVE_ARRAY_BUFFER_VIEWS || !TypedArrayPrototype || TypedArrayPrototype === ObjectPrototype) {
1762
+ TypedArrayPrototype = TypedArray.prototype;
1763
+ if (NATIVE_ARRAY_BUFFER_VIEWS) for (NAME in TypedArrayConstructorsList) {
1764
+ if (global[NAME]) setPrototypeOf(global[NAME].prototype, TypedArrayPrototype);
1765
+ }
1766
+ }
1767
+
1768
+ // WebKit bug - one more object in Uint8ClampedArray prototype chain
1769
+ if (NATIVE_ARRAY_BUFFER_VIEWS && getPrototypeOf(Uint8ClampedArrayPrototype) !== TypedArrayPrototype) {
1770
+ setPrototypeOf(Uint8ClampedArrayPrototype, TypedArrayPrototype);
1771
+ }
1772
+
1773
+ if (DESCRIPTORS && !hasOwn(TypedArrayPrototype, TO_STRING_TAG)) {
1774
+ TYPED_ARRAY_TAG_REQIRED = true;
1775
+ defineProperty(TypedArrayPrototype, TO_STRING_TAG, { get: function () {
1776
+ return isObject(this) ? this[TYPED_ARRAY_TAG] : undefined;
1777
+ } });
1778
+ for (NAME in TypedArrayConstructorsList) if (global[NAME]) {
1779
+ createNonEnumerableProperty(global[NAME], TYPED_ARRAY_TAG, NAME);
1780
+ }
1781
+ }
1782
+
1783
+ module.exports = {
1784
+ NATIVE_ARRAY_BUFFER_VIEWS: NATIVE_ARRAY_BUFFER_VIEWS,
1785
+ TYPED_ARRAY_CONSTRUCTOR: TYPED_ARRAY_CONSTRUCTOR,
1786
+ TYPED_ARRAY_TAG: TYPED_ARRAY_TAG_REQIRED && TYPED_ARRAY_TAG,
1787
+ aTypedArray: aTypedArray,
1788
+ aTypedArrayConstructor: aTypedArrayConstructor,
1789
+ exportTypedArrayMethod: exportTypedArrayMethod,
1790
+ exportTypedArrayStaticMethod: exportTypedArrayStaticMethod,
1791
+ isView: isView,
1792
+ isTypedArray: isTypedArray,
1793
+ TypedArray: TypedArray,
1794
+ TypedArrayPrototype: TypedArrayPrototype
773
1795
  };
774
1796
 
775
1797
 
776
1798
  /***/ }),
777
- /* 36 */
1799
+ /* 74 */
1800
+ /***/ (function(module, exports) {
1801
+
1802
+ // eslint-disable-next-line es/no-typed-arrays -- safe
1803
+ module.exports = typeof ArrayBuffer != 'undefined' && typeof DataView != 'undefined';
1804
+
1805
+
1806
+ /***/ }),
1807
+ /* 75 */
778
1808
  /***/ (function(module, exports, __webpack_require__) {
779
1809
 
780
1810
  var global = __webpack_require__(3);
781
-
782
- module.exports = global;
1811
+ var hasOwn = __webpack_require__(35);
1812
+ var isCallable = __webpack_require__(18);
1813
+ var toObject = __webpack_require__(36);
1814
+ var sharedKey = __webpack_require__(47);
1815
+ var CORRECT_PROTOTYPE_GETTER = __webpack_require__(76);
1816
+
1817
+ var IE_PROTO = sharedKey('IE_PROTO');
1818
+ var Object = global.Object;
1819
+ var ObjectPrototype = Object.prototype;
1820
+
1821
+ // `Object.getPrototypeOf` method
1822
+ // https://tc39.es/ecma262/#sec-object.getprototypeof
1823
+ module.exports = CORRECT_PROTOTYPE_GETTER ? Object.getPrototypeOf : function (O) {
1824
+ var object = toObject(O);
1825
+ if (hasOwn(object, IE_PROTO)) return object[IE_PROTO];
1826
+ var constructor = object.constructor;
1827
+ if (isCallable(constructor) && object instanceof constructor) {
1828
+ return constructor.prototype;
1829
+ } return object instanceof Object ? ObjectPrototype : null;
1830
+ };
783
1831
 
784
1832
 
785
1833
  /***/ }),
786
- /* 37 */
1834
+ /* 76 */
787
1835
  /***/ (function(module, exports, __webpack_require__) {
788
1836
 
789
- var internalObjectKeys = __webpack_require__(38);
790
- var enumBugKeys = __webpack_require__(43);
1837
+ var fails = __webpack_require__(6);
791
1838
 
792
- var hiddenKeys = enumBugKeys.concat('length', 'prototype');
1839
+ module.exports = !fails(function () {
1840
+ function F() { /* empty */ }
1841
+ F.prototype.constructor = null;
1842
+ // eslint-disable-next-line es/no-object-getprototypeof -- required for testing
1843
+ return Object.getPrototypeOf(new F()) !== F.prototype;
1844
+ });
793
1845
 
794
- // `Object.getOwnPropertyNames` method
795
- // https://tc39.es/ecma262/#sec-object.getownpropertynames
796
- // eslint-disable-next-line es/no-object-getownpropertynames -- safe
797
- exports.f = Object.getOwnPropertyNames || function getOwnPropertyNames(O) {
798
- return internalObjectKeys(O, hiddenKeys);
799
- };
1846
+
1847
+ /***/ }),
1848
+ /* 77 */
1849
+ /***/ (function(module, exports, __webpack_require__) {
1850
+
1851
+ /* eslint-disable no-proto -- safe */
1852
+ var uncurryThis = __webpack_require__(12);
1853
+ var anObject = __webpack_require__(42);
1854
+ var aPossiblePrototype = __webpack_require__(78);
1855
+
1856
+ // `Object.setPrototypeOf` method
1857
+ // https://tc39.es/ecma262/#sec-object.setprototypeof
1858
+ // Works with __proto__ only. Old v8 can't work with null proto objects.
1859
+ // eslint-disable-next-line es/no-object-setprototypeof -- safe
1860
+ module.exports = Object.setPrototypeOf || ('__proto__' in {} ? function () {
1861
+ var CORRECT_SETTER = false;
1862
+ var test = {};
1863
+ var setter;
1864
+ try {
1865
+ // eslint-disable-next-line es/no-object-getownpropertydescriptor -- safe
1866
+ setter = uncurryThis(Object.getOwnPropertyDescriptor(Object.prototype, '__proto__').set);
1867
+ setter(test, []);
1868
+ CORRECT_SETTER = test instanceof Array;
1869
+ } catch (error) { /* empty */ }
1870
+ return function setPrototypeOf(O, proto) {
1871
+ anObject(O);
1872
+ aPossiblePrototype(proto);
1873
+ if (CORRECT_SETTER) setter(O, proto);
1874
+ else O.__proto__ = proto;
1875
+ return O;
1876
+ };
1877
+ }() : undefined);
800
1878
 
801
1879
 
802
1880
  /***/ }),
803
- /* 38 */
1881
+ /* 78 */
804
1882
  /***/ (function(module, exports, __webpack_require__) {
805
1883
 
806
- var has = __webpack_require__(15);
807
- var toIndexedObject = __webpack_require__(9);
808
- var indexOf = __webpack_require__(39).indexOf;
809
- var hiddenKeys = __webpack_require__(32);
1884
+ var global = __webpack_require__(3);
1885
+ var isCallable = __webpack_require__(18);
810
1886
 
811
- module.exports = function (object, names) {
812
- var O = toIndexedObject(object);
813
- var i = 0;
814
- var result = [];
815
- var key;
816
- for (key in O) !has(hiddenKeys, key) && has(O, key) && result.push(key);
817
- // Don't enum bug & hidden keys
818
- while (names.length > i) if (has(O, key = names[i++])) {
819
- ~indexOf(result, key) || result.push(key);
820
- }
821
- return result;
1887
+ var String = global.String;
1888
+ var TypeError = global.TypeError;
1889
+
1890
+ module.exports = function (argument) {
1891
+ if (typeof argument == 'object' || isCallable(argument)) return argument;
1892
+ throw TypeError("Can't set " + String(argument) + ' as a prototype');
822
1893
  };
823
1894
 
824
1895
 
825
1896
  /***/ }),
826
- /* 39 */
1897
+ /* 79 */
827
1898
  /***/ (function(module, exports, __webpack_require__) {
828
1899
 
829
- var toIndexedObject = __webpack_require__(9);
830
- var toLength = __webpack_require__(40);
831
- var toAbsoluteIndex = __webpack_require__(42);
1900
+ "use strict";
832
1901
 
833
- // `Array.prototype.{ indexOf, includes }` methods implementation
834
- var createMethod = function (IS_INCLUDES) {
835
- return function ($this, el, fromIndex) {
836
- var O = toIndexedObject($this);
837
- var length = toLength(O.length);
838
- var index = toAbsoluteIndex(fromIndex, length);
839
- var value;
840
- // Array#includes uses SameValueZero equality algorithm
1902
+ var global = __webpack_require__(3);
1903
+ var uncurryThis = __webpack_require__(12);
1904
+ var fails = __webpack_require__(6);
1905
+ var aCallable = __webpack_require__(27);
1906
+ var internalSort = __webpack_require__(80);
1907
+ var ArrayBufferViewCore = __webpack_require__(73);
1908
+ var FF = __webpack_require__(82);
1909
+ var IE_OR_EDGE = __webpack_require__(83);
1910
+ var V8 = __webpack_require__(24);
1911
+ var WEBKIT = __webpack_require__(84);
1912
+
1913
+ var Array = global.Array;
1914
+ var aTypedArray = ArrayBufferViewCore.aTypedArray;
1915
+ var exportTypedArrayMethod = ArrayBufferViewCore.exportTypedArrayMethod;
1916
+ var Uint16Array = global.Uint16Array;
1917
+ var un$Sort = Uint16Array && uncurryThis(Uint16Array.prototype.sort);
1918
+
1919
+ // WebKit
1920
+ var ACCEPT_INCORRECT_ARGUMENTS = !!un$Sort && !(fails(function () {
1921
+ un$Sort(new Uint16Array(2), null);
1922
+ }) && fails(function () {
1923
+ un$Sort(new Uint16Array(2), {});
1924
+ }));
1925
+
1926
+ var STABLE_SORT = !!un$Sort && !fails(function () {
1927
+ // feature detection can be too slow, so check engines versions
1928
+ if (V8) return V8 < 74;
1929
+ if (FF) return FF < 67;
1930
+ if (IE_OR_EDGE) return true;
1931
+ if (WEBKIT) return WEBKIT < 602;
1932
+
1933
+ var array = new Uint16Array(516);
1934
+ var expected = Array(516);
1935
+ var index, mod;
1936
+
1937
+ for (index = 0; index < 516; index++) {
1938
+ mod = index % 4;
1939
+ array[index] = 515 - index;
1940
+ expected[index] = index - 2 * mod + 3;
1941
+ }
1942
+
1943
+ un$Sort(array, function (a, b) {
1944
+ return (a / 4 | 0) - (b / 4 | 0);
1945
+ });
1946
+
1947
+ for (index = 0; index < 516; index++) {
1948
+ if (array[index] !== expected[index]) return true;
1949
+ }
1950
+ });
1951
+
1952
+ var getSortCompare = function (comparefn) {
1953
+ return function (x, y) {
1954
+ if (comparefn !== undefined) return +comparefn(x, y) || 0;
841
1955
  // eslint-disable-next-line no-self-compare -- NaN check
842
- if (IS_INCLUDES && el != el) while (length > index) {
843
- value = O[index++];
844
- // eslint-disable-next-line no-self-compare -- NaN check
845
- if (value != value) return true;
846
- // Array#indexOf ignores holes, Array#includes - not
847
- } else for (;length > index; index++) {
848
- if ((IS_INCLUDES || index in O) && O[index] === el) return IS_INCLUDES || index || 0;
849
- } return !IS_INCLUDES && -1;
1956
+ if (y !== y) return -1;
1957
+ // eslint-disable-next-line no-self-compare -- NaN check
1958
+ if (x !== x) return 1;
1959
+ if (x === 0 && y === 0) return 1 / x > 0 && 1 / y < 0 ? 1 : -1;
1960
+ return x > y;
850
1961
  };
851
1962
  };
852
1963
 
853
- module.exports = {
854
- // `Array.prototype.includes` method
855
- // https://tc39.es/ecma262/#sec-array.prototype.includes
856
- includes: createMethod(true),
857
- // `Array.prototype.indexOf` method
858
- // https://tc39.es/ecma262/#sec-array.prototype.indexof
859
- indexOf: createMethod(false)
860
- };
1964
+ // `%TypedArray%.prototype.sort` method
1965
+ // https://tc39.es/ecma262/#sec-%typedarray%.prototype.sort
1966
+ exportTypedArrayMethod('sort', function sort(comparefn) {
1967
+ if (comparefn !== undefined) aCallable(comparefn);
1968
+ if (STABLE_SORT) return un$Sort(this, comparefn);
1969
+
1970
+ return internalSort(aTypedArray(this), getSortCompare(comparefn));
1971
+ }, !STABLE_SORT || ACCEPT_INCORRECT_ARGUMENTS);
861
1972
 
862
1973
 
863
1974
  /***/ }),
864
- /* 40 */
1975
+ /* 80 */
865
1976
  /***/ (function(module, exports, __webpack_require__) {
866
1977
 
867
- var toInteger = __webpack_require__(41);
1978
+ var arraySlice = __webpack_require__(81);
868
1979
 
869
- var min = Math.min;
1980
+ var floor = Math.floor;
870
1981
 
871
- // `ToLength` abstract operation
872
- // https://tc39.es/ecma262/#sec-tolength
873
- module.exports = function (argument) {
874
- return argument > 0 ? min(toInteger(argument), 0x1FFFFFFFFFFFFF) : 0; // 2 ** 53 - 1 == 9007199254740991
1982
+ var mergeSort = function (array, comparefn) {
1983
+ var length = array.length;
1984
+ var middle = floor(length / 2);
1985
+ return length < 8 ? insertionSort(array, comparefn) : merge(
1986
+ array,
1987
+ mergeSort(arraySlice(array, 0, middle), comparefn),
1988
+ mergeSort(arraySlice(array, middle), comparefn),
1989
+ comparefn
1990
+ );
875
1991
  };
876
1992
 
1993
+ var insertionSort = function (array, comparefn) {
1994
+ var length = array.length;
1995
+ var i = 1;
1996
+ var element, j;
877
1997
 
878
- /***/ }),
879
- /* 41 */
880
- /***/ (function(module, exports) {
881
-
882
- var ceil = Math.ceil;
883
- var floor = Math.floor;
1998
+ while (i < length) {
1999
+ j = i;
2000
+ element = array[i];
2001
+ while (j && comparefn(array[j - 1], element) > 0) {
2002
+ array[j] = array[--j];
2003
+ }
2004
+ if (j !== i++) array[j] = element;
2005
+ } return array;
2006
+ };
884
2007
 
885
- // `ToInteger` abstract operation
886
- // https://tc39.es/ecma262/#sec-tointeger
887
- module.exports = function (argument) {
888
- return isNaN(argument = +argument) ? 0 : (argument > 0 ? floor : ceil)(argument);
2008
+ var merge = function (array, left, right, comparefn) {
2009
+ var llength = left.length;
2010
+ var rlength = right.length;
2011
+ var lindex = 0;
2012
+ var rindex = 0;
2013
+
2014
+ while (lindex < llength || rindex < rlength) {
2015
+ array[lindex + rindex] = (lindex < llength && rindex < rlength)
2016
+ ? comparefn(left[lindex], right[rindex]) <= 0 ? left[lindex++] : right[rindex++]
2017
+ : lindex < llength ? left[lindex++] : right[rindex++];
2018
+ } return array;
889
2019
  };
890
2020
 
2021
+ module.exports = mergeSort;
2022
+
891
2023
 
892
2024
  /***/ }),
893
- /* 42 */
2025
+ /* 81 */
894
2026
  /***/ (function(module, exports, __webpack_require__) {
895
2027
 
896
- var toInteger = __webpack_require__(41);
897
-
898
- var max = Math.max;
899
- var min = Math.min;
2028
+ var uncurryThis = __webpack_require__(12);
900
2029
 
901
- // Helper for a popular repeating case of the spec:
902
- // Let integer be ? ToInteger(index).
903
- // If integer < 0, let result be max((length + integer), 0); else let result be min(integer, length).
904
- module.exports = function (index, length) {
905
- var integer = toInteger(index);
906
- return integer < 0 ? max(integer + length, 0) : min(integer, length);
907
- };
2030
+ module.exports = uncurryThis([].slice);
908
2031
 
909
2032
 
910
2033
  /***/ }),
911
- /* 43 */
912
- /***/ (function(module, exports) {
2034
+ /* 82 */
2035
+ /***/ (function(module, exports, __webpack_require__) {
913
2036
 
914
- // IE8- don't enum bug keys
915
- module.exports = [
916
- 'constructor',
917
- 'hasOwnProperty',
918
- 'isPrototypeOf',
919
- 'propertyIsEnumerable',
920
- 'toLocaleString',
921
- 'toString',
922
- 'valueOf'
923
- ];
2037
+ var userAgent = __webpack_require__(25);
2038
+
2039
+ var firefox = userAgent.match(/firefox\/(\d+)/i);
2040
+
2041
+ module.exports = !!firefox && +firefox[1];
924
2042
 
925
2043
 
926
2044
  /***/ }),
927
- /* 44 */
928
- /***/ (function(module, exports) {
2045
+ /* 83 */
2046
+ /***/ (function(module, exports, __webpack_require__) {
929
2047
 
930
- // eslint-disable-next-line es/no-object-getownpropertysymbols -- safe
931
- exports.f = Object.getOwnPropertySymbols;
2048
+ var UA = __webpack_require__(25);
2049
+
2050
+ module.exports = /MSIE|Trident/.test(UA);
932
2051
 
933
2052
 
934
2053
  /***/ }),
935
- /* 45 */
2054
+ /* 84 */
936
2055
  /***/ (function(module, exports, __webpack_require__) {
937
2056
 
938
- var fails = __webpack_require__(6);
2057
+ var userAgent = __webpack_require__(25);
939
2058
 
940
- var replacement = /#|\.prototype\./;
2059
+ var webkit = userAgent.match(/AppleWebKit\/(\d+)\./);
941
2060
 
942
- var isForced = function (feature, detection) {
943
- var value = data[normalize(feature)];
944
- return value == POLYFILL ? true
945
- : value == NATIVE ? false
946
- : typeof detection == 'function' ? fails(detection)
947
- : !!detection;
948
- };
2061
+ module.exports = !!webkit && +webkit[1];
949
2062
 
950
- var normalize = isForced.normalize = function (string) {
951
- return String(string).replace(replacement, '.').toLowerCase();
952
- };
953
2063
 
954
- var data = isForced.data = {};
955
- var NATIVE = isForced.NATIVE = 'N';
956
- var POLYFILL = isForced.POLYFILL = 'P';
2064
+ /***/ }),
2065
+ /* 85 */
2066
+ /***/ (function(module, exports, __webpack_require__) {
957
2067
 
958
- module.exports = isForced;
2068
+ var $ = __webpack_require__(2);
2069
+ var global = __webpack_require__(3);
2070
+ var task = __webpack_require__(86);
2071
+
2072
+ var FORCED = !global.setImmediate || !global.clearImmediate;
2073
+
2074
+ // http://w3c.github.io/setImmediate/
2075
+ $({ global: true, bind: true, enumerable: true, forced: FORCED }, {
2076
+ // `setImmediate` method
2077
+ // http://w3c.github.io/setImmediate/#si-setImmediate
2078
+ setImmediate: task.set,
2079
+ // `clearImmediate` method
2080
+ // http://w3c.github.io/setImmediate/#si-clearImmediate
2081
+ clearImmediate: task.clear
2082
+ });
959
2083
 
960
2084
 
961
2085
  /***/ }),
962
- /* 46 */
2086
+ /* 86 */
963
2087
  /***/ (function(module, exports, __webpack_require__) {
964
2088
 
965
2089
  var global = __webpack_require__(3);
2090
+ var apply = __webpack_require__(87);
2091
+ var bind = __webpack_require__(88);
2092
+ var isCallable = __webpack_require__(18);
2093
+ var hasOwn = __webpack_require__(35);
966
2094
  var fails = __webpack_require__(6);
967
- var bind = __webpack_require__(47);
968
- var html = __webpack_require__(49);
969
- var createElement = __webpack_require__(18);
970
- var IS_IOS = __webpack_require__(50);
971
- var IS_NODE = __webpack_require__(52);
2095
+ var html = __webpack_require__(66);
2096
+ var arraySlice = __webpack_require__(81);
2097
+ var createElement = __webpack_require__(39);
2098
+ var IS_IOS = __webpack_require__(89);
2099
+ var IS_NODE = __webpack_require__(90);
972
2100
 
973
- var location = global.location;
974
2101
  var set = global.setImmediate;
975
2102
  var clear = global.clearImmediate;
976
2103
  var process = global.process;
977
- var MessageChannel = global.MessageChannel;
978
2104
  var Dispatch = global.Dispatch;
2105
+ var Function = global.Function;
2106
+ var MessageChannel = global.MessageChannel;
2107
+ var String = global.String;
979
2108
  var counter = 0;
980
2109
  var queue = {};
981
2110
  var ONREADYSTATECHANGE = 'onreadystatechange';
982
- var defer, channel, port;
2111
+ var location, defer, channel, port;
2112
+
2113
+ try {
2114
+ // Deno throws a ReferenceError on `location` access without `--location` flag
2115
+ location = global.location;
2116
+ } catch (error) { /* empty */ }
983
2117
 
984
2118
  var run = function (id) {
985
- // eslint-disable-next-line no-prototype-builtins -- safe
986
- if (queue.hasOwnProperty(id)) {
2119
+ if (hasOwn(queue, id)) {
987
2120
  var fn = queue[id];
988
2121
  delete queue[id];
989
2122
  fn();
@@ -1002,18 +2135,15 @@ var listener = function (event) {
1002
2135
 
1003
2136
  var post = function (id) {
1004
2137
  // old engines have not location.origin
1005
- global.postMessage(id + '', location.protocol + '//' + location.host);
2138
+ global.postMessage(String(id), location.protocol + '//' + location.host);
1006
2139
  };
1007
2140
 
1008
2141
  // Node.js 0.9+ & IE10+ has setImmediate, otherwise:
1009
2142
  if (!set || !clear) {
1010
2143
  set = function setImmediate(fn) {
1011
- var args = [];
1012
- var i = 1;
1013
- while (arguments.length > i) args.push(arguments[i++]);
2144
+ var args = arraySlice(arguments, 1);
1014
2145
  queue[++counter] = function () {
1015
- // eslint-disable-next-line no-new-func -- spec requirement
1016
- (typeof fn == 'function' ? fn : Function(fn)).apply(undefined, args);
2146
+ apply(isCallable(fn) ? fn : Function(fn), undefined, args);
1017
2147
  };
1018
2148
  defer(counter);
1019
2149
  return counter;
@@ -1037,12 +2167,12 @@ if (!set || !clear) {
1037
2167
  channel = new MessageChannel();
1038
2168
  port = channel.port2;
1039
2169
  channel.port1.onmessage = listener;
1040
- defer = bind(port.postMessage, port, 1);
2170
+ defer = bind(port.postMessage, port);
1041
2171
  // Browsers with postMessage, skip WebWorkers
1042
2172
  // IE8 has postMessage, but it's sync & typeof its postMessage is 'object'
1043
2173
  } else if (
1044
2174
  global.addEventListener &&
1045
- typeof postMessage == 'function' &&
2175
+ isCallable(global.postMessage) &&
1046
2176
  !global.importScripts &&
1047
2177
  location && location.protocol !== 'file:' &&
1048
2178
  !fails(post)
@@ -1072,78 +2202,52 @@ module.exports = {
1072
2202
 
1073
2203
 
1074
2204
  /***/ }),
1075
- /* 47 */
1076
- /***/ (function(module, exports, __webpack_require__) {
1077
-
1078
- var aFunction = __webpack_require__(48);
1079
-
1080
- // optional / simple context binding
1081
- module.exports = function (fn, that, length) {
1082
- aFunction(fn);
1083
- if (that === undefined) return fn;
1084
- switch (length) {
1085
- case 0: return function () {
1086
- return fn.call(that);
1087
- };
1088
- case 1: return function (a) {
1089
- return fn.call(that, a);
1090
- };
1091
- case 2: return function (a, b) {
1092
- return fn.call(that, a, b);
1093
- };
1094
- case 3: return function (a, b, c) {
1095
- return fn.call(that, a, b, c);
1096
- };
1097
- }
1098
- return function (/* ...args */) {
1099
- return fn.apply(that, arguments);
1100
- };
1101
- };
1102
-
1103
-
1104
- /***/ }),
1105
- /* 48 */
2205
+ /* 87 */
1106
2206
  /***/ (function(module, exports) {
1107
2207
 
1108
- module.exports = function (it) {
1109
- if (typeof it != 'function') {
1110
- throw TypeError(String(it) + ' is not a function');
1111
- } return it;
1112
- };
1113
-
2208
+ var FunctionPrototype = Function.prototype;
2209
+ var apply = FunctionPrototype.apply;
2210
+ var bind = FunctionPrototype.bind;
2211
+ var call = FunctionPrototype.call;
1114
2212
 
1115
- /***/ }),
1116
- /* 49 */
1117
- /***/ (function(module, exports, __webpack_require__) {
1118
-
1119
- var getBuiltIn = __webpack_require__(35);
1120
-
1121
- module.exports = getBuiltIn('document', 'documentElement');
2213
+ // eslint-disable-next-line es/no-reflect -- safe
2214
+ module.exports = typeof Reflect == 'object' && Reflect.apply || (bind ? call.bind(apply) : function () {
2215
+ return call.apply(apply, arguments);
2216
+ });
1122
2217
 
1123
2218
 
1124
2219
  /***/ }),
1125
- /* 50 */
2220
+ /* 88 */
1126
2221
  /***/ (function(module, exports, __webpack_require__) {
1127
2222
 
1128
- var userAgent = __webpack_require__(51);
2223
+ var uncurryThis = __webpack_require__(12);
2224
+ var aCallable = __webpack_require__(27);
1129
2225
 
1130
- module.exports = /(?:iphone|ipod|ipad).*applewebkit/i.test(userAgent);
2226
+ var bind = uncurryThis(uncurryThis.bind);
2227
+
2228
+ // optional / simple context binding
2229
+ module.exports = function (fn, that) {
2230
+ aCallable(fn);
2231
+ return that === undefined ? fn : bind ? bind(fn, that) : function (/* ...args */) {
2232
+ return fn.apply(that, arguments);
2233
+ };
2234
+ };
1131
2235
 
1132
2236
 
1133
2237
  /***/ }),
1134
- /* 51 */
2238
+ /* 89 */
1135
2239
  /***/ (function(module, exports, __webpack_require__) {
1136
2240
 
1137
- var getBuiltIn = __webpack_require__(35);
2241
+ var userAgent = __webpack_require__(25);
1138
2242
 
1139
- module.exports = getBuiltIn('navigator', 'userAgent') || '';
2243
+ module.exports = /(?:ipad|iphone|ipod).*applewebkit/i.test(userAgent);
1140
2244
 
1141
2245
 
1142
2246
  /***/ }),
1143
- /* 52 */
2247
+ /* 90 */
1144
2248
  /***/ (function(module, exports, __webpack_require__) {
1145
2249
 
1146
- var classof = __webpack_require__(11);
2250
+ var classof = __webpack_require__(13);
1147
2251
  var global = __webpack_require__(3);
1148
2252
 
1149
2253
  module.exports = classof(global.process) == 'process';