@phoenix-cg/v-tabs 0.1.2 → 0.1.6

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.
@@ -87,6 +87,50 @@ module.exports =
87
87
  /************************************************************************/
88
88
  /******/ ({
89
89
 
90
+ /***/ "00b4":
91
+ /***/ (function(module, exports, __webpack_require__) {
92
+
93
+ "use strict";
94
+
95
+ // TODO: Remove from `core-js@4` since it's moved to entry points
96
+ __webpack_require__("ac1f");
97
+ var $ = __webpack_require__("23e7");
98
+ var global = __webpack_require__("da84");
99
+ var call = __webpack_require__("c65b");
100
+ var uncurryThis = __webpack_require__("e330");
101
+ var isCallable = __webpack_require__("1626");
102
+ var isObject = __webpack_require__("861d");
103
+
104
+ var DELEGATES_TO_EXEC = function () {
105
+ var execCalled = false;
106
+ var re = /[ac]/;
107
+ re.exec = function () {
108
+ execCalled = true;
109
+ return /./.exec.apply(this, arguments);
110
+ };
111
+ return re.test('abc') === true && execCalled;
112
+ }();
113
+
114
+ var Error = global.Error;
115
+ var un$Test = uncurryThis(/./.test);
116
+
117
+ // `RegExp.prototype.test` method
118
+ // https://tc39.es/ecma262/#sec-regexp.prototype.test
119
+ $({ target: 'RegExp', proto: true, forced: !DELEGATES_TO_EXEC }, {
120
+ test: function (str) {
121
+ var exec = this.exec;
122
+ if (!isCallable(exec)) return un$Test(this, str);
123
+ var result = call(exec, this, str);
124
+ if (result !== null && !isObject(result)) {
125
+ throw new Error('RegExp exec method returned something other than an Object or null');
126
+ }
127
+ return !!result;
128
+ }
129
+ });
130
+
131
+
132
+ /***/ }),
133
+
90
134
  /***/ "00ee":
91
135
  /***/ (function(module, exports, __webpack_require__) {
92
136
 
@@ -100,32 +144,51 @@ test[TO_STRING_TAG] = 'z';
100
144
  module.exports = String(test) === '[object z]';
101
145
 
102
146
 
147
+ /***/ }),
148
+
149
+ /***/ "01b4":
150
+ /***/ (function(module, exports) {
151
+
152
+ var Queue = function () {
153
+ this.head = null;
154
+ this.tail = null;
155
+ };
156
+
157
+ Queue.prototype = {
158
+ add: function (item) {
159
+ var entry = { item: item, next: null };
160
+ if (this.head) this.tail.next = entry;
161
+ else this.head = entry;
162
+ this.tail = entry;
163
+ },
164
+ get: function () {
165
+ var entry = this.head;
166
+ if (entry) {
167
+ this.head = entry.next;
168
+ if (this.tail === entry) this.tail = null;
169
+ return entry.item;
170
+ }
171
+ }
172
+ };
173
+
174
+ module.exports = Queue;
175
+
176
+
103
177
  /***/ }),
104
178
 
105
179
  /***/ "0366":
106
180
  /***/ (function(module, exports, __webpack_require__) {
107
181
 
108
- var aFunction = __webpack_require__("1c0b");
182
+ var uncurryThis = __webpack_require__("e330");
183
+ var aCallable = __webpack_require__("59ed");
184
+ var NATIVE_BIND = __webpack_require__("40d5");
185
+
186
+ var bind = uncurryThis(uncurryThis.bind);
109
187
 
110
188
  // optional / simple context binding
111
- module.exports = function (fn, that, length) {
112
- aFunction(fn);
113
- if (that === undefined) return fn;
114
- switch (length) {
115
- case 0: return function () {
116
- return fn.call(that);
117
- };
118
- case 1: return function (a) {
119
- return fn.call(that, a);
120
- };
121
- case 2: return function (a, b) {
122
- return fn.call(that, a, b);
123
- };
124
- case 3: return function (a, b, c) {
125
- return fn.call(that, a, b, c);
126
- };
127
- }
128
- return function (/* ...args */) {
189
+ module.exports = function (fn, that) {
190
+ aCallable(fn);
191
+ return that === undefined ? fn : NATIVE_BIND ? bind(fn, that) : function (/* ...args */) {
129
192
  return fn.apply(that, arguments);
130
193
  };
131
194
  };
@@ -136,27 +199,28 @@ module.exports = function (fn, that, length) {
136
199
  /***/ "057f":
137
200
  /***/ (function(module, exports, __webpack_require__) {
138
201
 
202
+ /* eslint-disable es/no-object-getownpropertynames -- safe */
203
+ var classof = __webpack_require__("c6b6");
139
204
  var toIndexedObject = __webpack_require__("fc6a");
140
- var nativeGetOwnPropertyNames = __webpack_require__("241c").f;
141
-
142
- var toString = {}.toString;
205
+ var $getOwnPropertyNames = __webpack_require__("241c").f;
206
+ var arraySlice = __webpack_require__("4dae");
143
207
 
144
208
  var windowNames = typeof window == 'object' && window && Object.getOwnPropertyNames
145
209
  ? Object.getOwnPropertyNames(window) : [];
146
210
 
147
211
  var getWindowNames = function (it) {
148
212
  try {
149
- return nativeGetOwnPropertyNames(it);
213
+ return $getOwnPropertyNames(it);
150
214
  } catch (error) {
151
- return windowNames.slice();
215
+ return arraySlice(windowNames);
152
216
  }
153
217
  };
154
218
 
155
219
  // fallback for IE11 buggy Object.getOwnPropertyNames with iframe and window
156
220
  module.exports.f = function getOwnPropertyNames(it) {
157
- return windowNames && toString.call(it) == '[object Window]'
221
+ return windowNames && classof(it) == 'Window'
158
222
  ? getWindowNames(it)
159
- : nativeGetOwnPropertyNames(toIndexedObject(it));
223
+ : $getOwnPropertyNames(toIndexedObject(it));
160
224
  };
161
225
 
162
226
 
@@ -166,24 +230,70 @@ module.exports.f = function getOwnPropertyNames(it) {
166
230
  /***/ (function(module, exports, __webpack_require__) {
167
231
 
168
232
  var DESCRIPTORS = __webpack_require__("83ab");
233
+ var call = __webpack_require__("c65b");
169
234
  var propertyIsEnumerableModule = __webpack_require__("d1e7");
170
235
  var createPropertyDescriptor = __webpack_require__("5c6c");
171
236
  var toIndexedObject = __webpack_require__("fc6a");
172
- var toPrimitive = __webpack_require__("c04e");
173
- var has = __webpack_require__("5135");
237
+ var toPropertyKey = __webpack_require__("a04b");
238
+ var hasOwn = __webpack_require__("1a2d");
174
239
  var IE8_DOM_DEFINE = __webpack_require__("0cfb");
175
240
 
176
- var nativeGetOwnPropertyDescriptor = Object.getOwnPropertyDescriptor;
241
+ // eslint-disable-next-line es/no-object-getownpropertydescriptor -- safe
242
+ var $getOwnPropertyDescriptor = Object.getOwnPropertyDescriptor;
177
243
 
178
244
  // `Object.getOwnPropertyDescriptor` method
179
245
  // https://tc39.es/ecma262/#sec-object.getownpropertydescriptor
180
- exports.f = DESCRIPTORS ? nativeGetOwnPropertyDescriptor : function getOwnPropertyDescriptor(O, P) {
246
+ exports.f = DESCRIPTORS ? $getOwnPropertyDescriptor : function getOwnPropertyDescriptor(O, P) {
181
247
  O = toIndexedObject(O);
182
- P = toPrimitive(P, true);
248
+ P = toPropertyKey(P);
183
249
  if (IE8_DOM_DEFINE) try {
184
- return nativeGetOwnPropertyDescriptor(O, P);
250
+ return $getOwnPropertyDescriptor(O, P);
185
251
  } catch (error) { /* empty */ }
186
- if (has(O, P)) return createPropertyDescriptor(!propertyIsEnumerableModule.f.call(O, P), O[P]);
252
+ if (hasOwn(O, P)) return createPropertyDescriptor(!call(propertyIsEnumerableModule.f, O, P), O[P]);
253
+ };
254
+
255
+
256
+ /***/ }),
257
+
258
+ /***/ "07fa":
259
+ /***/ (function(module, exports, __webpack_require__) {
260
+
261
+ var toLength = __webpack_require__("50c4");
262
+
263
+ // `LengthOfArrayLike` abstract operation
264
+ // https://tc39.es/ecma262/#sec-lengthofarraylike
265
+ module.exports = function (obj) {
266
+ return toLength(obj.length);
267
+ };
268
+
269
+
270
+ /***/ }),
271
+
272
+ /***/ "0b42":
273
+ /***/ (function(module, exports, __webpack_require__) {
274
+
275
+ var global = __webpack_require__("da84");
276
+ var isArray = __webpack_require__("e8b5");
277
+ var isConstructor = __webpack_require__("68ee");
278
+ var isObject = __webpack_require__("861d");
279
+ var wellKnownSymbol = __webpack_require__("b622");
280
+
281
+ var SPECIES = wellKnownSymbol('species');
282
+ var Array = global.Array;
283
+
284
+ // a part of `ArraySpeciesCreate` abstract operation
285
+ // https://tc39.es/ecma262/#sec-arrayspeciescreate
286
+ module.exports = function (originalArray) {
287
+ var C;
288
+ if (isArray(originalArray)) {
289
+ C = originalArray.constructor;
290
+ // cross-realm fallback
291
+ if (isConstructor(C) && (C === Array || isArray(C.prototype))) C = undefined;
292
+ else if (isObject(C)) {
293
+ C = C[SPECIES];
294
+ if (C === null) C = undefined;
295
+ }
296
+ } return C === undefined ? Array : C;
187
297
  };
188
298
 
189
299
 
@@ -196,59 +306,117 @@ var DESCRIPTORS = __webpack_require__("83ab");
196
306
  var fails = __webpack_require__("d039");
197
307
  var createElement = __webpack_require__("cc12");
198
308
 
199
- // Thank's IE8 for his funny defineProperty
309
+ // Thanks to IE8 for its funny defineProperty
200
310
  module.exports = !DESCRIPTORS && !fails(function () {
311
+ // eslint-disable-next-line es/no-object-defineproperty -- required for testing
201
312
  return Object.defineProperty(createElement('div'), 'a', {
202
313
  get: function () { return 7; }
203
314
  }).a != 7;
204
315
  });
205
316
 
206
317
 
318
+ /***/ }),
319
+
320
+ /***/ "0d51":
321
+ /***/ (function(module, exports, __webpack_require__) {
322
+
323
+ var global = __webpack_require__("da84");
324
+
325
+ var String = global.String;
326
+
327
+ module.exports = function (argument) {
328
+ try {
329
+ return String(argument);
330
+ } catch (error) {
331
+ return 'Object';
332
+ }
333
+ };
334
+
335
+
336
+ /***/ }),
337
+
338
+ /***/ "107c":
339
+ /***/ (function(module, exports, __webpack_require__) {
340
+
341
+ var fails = __webpack_require__("d039");
342
+ var global = __webpack_require__("da84");
343
+
344
+ // babel-minify and Closure Compiler transpiles RegExp('(?<a>b)', 'g') -> /(?<a>b)/g and it causes SyntaxError
345
+ var $RegExp = global.RegExp;
346
+
347
+ module.exports = fails(function () {
348
+ var re = $RegExp('(?<a>b)', 'g');
349
+ return re.exec('b').groups.a !== 'b' ||
350
+ 'b'.replace(re, '$<a>c') !== 'bc';
351
+ });
352
+
353
+
207
354
  /***/ }),
208
355
 
209
356
  /***/ "11aa":
210
357
  /***/ (function(module, __webpack_exports__, __webpack_require__) {
211
358
 
212
359
  "use strict";
213
- /* harmony import */ var _node_modules_mini_css_extract_plugin_dist_loader_js_ref_6_oneOf_1_0_node_modules_css_loader_dist_cjs_js_ref_6_oneOf_1_1_node_modules_vue_loader_lib_loaders_stylePostLoader_js_node_modules_postcss_loader_src_index_js_ref_6_oneOf_1_2_node_modules_cache_loader_dist_cjs_js_ref_0_0_node_modules_vue_loader_lib_index_js_vue_loader_options_VTabs_vue_vue_type_style_index_0_lang_css___WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__("e1ef");
214
- /* harmony import */ var _node_modules_mini_css_extract_plugin_dist_loader_js_ref_6_oneOf_1_0_node_modules_css_loader_dist_cjs_js_ref_6_oneOf_1_1_node_modules_vue_loader_lib_loaders_stylePostLoader_js_node_modules_postcss_loader_src_index_js_ref_6_oneOf_1_2_node_modules_cache_loader_dist_cjs_js_ref_0_0_node_modules_vue_loader_lib_index_js_vue_loader_options_VTabs_vue_vue_type_style_index_0_lang_css___WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(_node_modules_mini_css_extract_plugin_dist_loader_js_ref_6_oneOf_1_0_node_modules_css_loader_dist_cjs_js_ref_6_oneOf_1_1_node_modules_vue_loader_lib_loaders_stylePostLoader_js_node_modules_postcss_loader_src_index_js_ref_6_oneOf_1_2_node_modules_cache_loader_dist_cjs_js_ref_0_0_node_modules_vue_loader_lib_index_js_vue_loader_options_VTabs_vue_vue_type_style_index_0_lang_css___WEBPACK_IMPORTED_MODULE_0__);
360
+ /* harmony import */ var _node_modules_mini_css_extract_plugin_dist_loader_js_ref_7_oneOf_1_0_node_modules_css_loader_dist_cjs_js_ref_7_oneOf_1_1_node_modules_vue_loader_lib_loaders_stylePostLoader_js_node_modules_postcss_loader_src_index_js_ref_7_oneOf_1_2_node_modules_cache_loader_dist_cjs_js_ref_1_0_node_modules_vue_loader_lib_index_js_vue_loader_options_VTabs_vue_vue_type_style_index_0_lang_css___WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__("e1ef");
361
+ /* harmony import */ var _node_modules_mini_css_extract_plugin_dist_loader_js_ref_7_oneOf_1_0_node_modules_css_loader_dist_cjs_js_ref_7_oneOf_1_1_node_modules_vue_loader_lib_loaders_stylePostLoader_js_node_modules_postcss_loader_src_index_js_ref_7_oneOf_1_2_node_modules_cache_loader_dist_cjs_js_ref_1_0_node_modules_vue_loader_lib_index_js_vue_loader_options_VTabs_vue_vue_type_style_index_0_lang_css___WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(_node_modules_mini_css_extract_plugin_dist_loader_js_ref_7_oneOf_1_0_node_modules_css_loader_dist_cjs_js_ref_7_oneOf_1_1_node_modules_vue_loader_lib_loaders_stylePostLoader_js_node_modules_postcss_loader_src_index_js_ref_7_oneOf_1_2_node_modules_cache_loader_dist_cjs_js_ref_1_0_node_modules_vue_loader_lib_index_js_vue_loader_options_VTabs_vue_vue_type_style_index_0_lang_css___WEBPACK_IMPORTED_MODULE_0__);
215
362
  /* unused harmony reexport * */
216
363
 
217
364
 
218
365
  /***/ }),
219
366
 
220
- /***/ "19aa":
367
+ /***/ "1626":
221
368
  /***/ (function(module, exports) {
222
369
 
223
- module.exports = function (it, Constructor, name) {
224
- if (!(it instanceof Constructor)) {
225
- throw TypeError('Incorrect ' + (name ? name + ' ' : '') + 'invocation');
226
- } return it;
370
+ // `IsCallable` abstract operation
371
+ // https://tc39.es/ecma262/#sec-iscallable
372
+ module.exports = function (argument) {
373
+ return typeof argument == 'function';
227
374
  };
228
375
 
229
376
 
230
377
  /***/ }),
231
378
 
232
- /***/ "1be4":
379
+ /***/ "19aa":
233
380
  /***/ (function(module, exports, __webpack_require__) {
234
381
 
235
- var getBuiltIn = __webpack_require__("d066");
382
+ var global = __webpack_require__("da84");
383
+ var isPrototypeOf = __webpack_require__("3a9b");
236
384
 
237
- module.exports = getBuiltIn('document', 'documentElement');
385
+ var TypeError = global.TypeError;
386
+
387
+ module.exports = function (it, Prototype) {
388
+ if (isPrototypeOf(Prototype, it)) return it;
389
+ throw TypeError('Incorrect invocation');
390
+ };
238
391
 
239
392
 
240
393
  /***/ }),
241
394
 
242
- /***/ "1c0b":
243
- /***/ (function(module, exports) {
395
+ /***/ "1a2d":
396
+ /***/ (function(module, exports, __webpack_require__) {
244
397
 
245
- module.exports = function (it) {
246
- if (typeof it != 'function') {
247
- throw TypeError(String(it) + ' is not a function');
248
- } return it;
398
+ var uncurryThis = __webpack_require__("e330");
399
+ var toObject = __webpack_require__("7b0b");
400
+
401
+ var hasOwnProperty = uncurryThis({}.hasOwnProperty);
402
+
403
+ // `HasOwnProperty` abstract operation
404
+ // https://tc39.es/ecma262/#sec-hasownproperty
405
+ module.exports = Object.hasOwn || function hasOwn(it, key) {
406
+ return hasOwnProperty(toObject(it), key);
249
407
  };
250
408
 
251
409
 
410
+ /***/ }),
411
+
412
+ /***/ "1be4":
413
+ /***/ (function(module, exports, __webpack_require__) {
414
+
415
+ var getBuiltIn = __webpack_require__("d066");
416
+
417
+ module.exports = getBuiltIn('document', 'documentElement');
418
+
419
+
252
420
  /***/ }),
253
421
 
254
422
  /***/ "1c7e":
@@ -272,7 +440,7 @@ try {
272
440
  iteratorWithReturn[ITERATOR] = function () {
273
441
  return this;
274
442
  };
275
- // eslint-disable-next-line no-throw-literal -- required for testing
443
+ // eslint-disable-next-line es/no-array-from, no-throw-literal -- required for testing
276
444
  Array.from(iteratorWithReturn, function () { throw 2; });
277
445
  } catch (error) { /* empty */ }
278
446
 
@@ -301,13 +469,17 @@ module.exports = function (exec, SKIP_CLOSING) {
301
469
 
302
470
  var userAgent = __webpack_require__("342f");
303
471
 
304
- module.exports = /(iphone|ipod|ipad).*applewebkit/i.test(userAgent);
472
+ module.exports = /(?:ipad|iphone|ipod).*applewebkit/i.test(userAgent);
305
473
 
306
474
 
307
475
  /***/ }),
308
476
 
309
477
  /***/ "1d80":
310
- /***/ (function(module, exports) {
478
+ /***/ (function(module, exports, __webpack_require__) {
479
+
480
+ var global = __webpack_require__("da84");
481
+
482
+ var TypeError = global.TypeError;
311
483
 
312
484
  // `RequireObjectCoercible` abstract operation
313
485
  // https://tc39.es/ecma262/#sec-requireobjectcoercible
@@ -348,28 +520,37 @@ module.exports = function (METHOD_NAME) {
348
520
  /***/ "2266":
349
521
  /***/ (function(module, exports, __webpack_require__) {
350
522
 
523
+ var global = __webpack_require__("da84");
524
+ var bind = __webpack_require__("0366");
525
+ var call = __webpack_require__("c65b");
351
526
  var anObject = __webpack_require__("825a");
527
+ var tryToString = __webpack_require__("0d51");
352
528
  var isArrayIteratorMethod = __webpack_require__("e95a");
353
- var toLength = __webpack_require__("50c4");
354
- var bind = __webpack_require__("0366");
529
+ var lengthOfArrayLike = __webpack_require__("07fa");
530
+ var isPrototypeOf = __webpack_require__("3a9b");
531
+ var getIterator = __webpack_require__("9a1f");
355
532
  var getIteratorMethod = __webpack_require__("35a1");
356
533
  var iteratorClose = __webpack_require__("2a62");
357
534
 
535
+ var TypeError = global.TypeError;
536
+
358
537
  var Result = function (stopped, result) {
359
538
  this.stopped = stopped;
360
539
  this.result = result;
361
540
  };
362
541
 
542
+ var ResultPrototype = Result.prototype;
543
+
363
544
  module.exports = function (iterable, unboundFunction, options) {
364
545
  var that = options && options.that;
365
546
  var AS_ENTRIES = !!(options && options.AS_ENTRIES);
366
547
  var IS_ITERATOR = !!(options && options.IS_ITERATOR);
367
548
  var INTERRUPTED = !!(options && options.INTERRUPTED);
368
- var fn = bind(unboundFunction, that, 1 + AS_ENTRIES + INTERRUPTED);
549
+ var fn = bind(unboundFunction, that);
369
550
  var iterator, iterFn, index, length, result, next, step;
370
551
 
371
552
  var stop = function (condition) {
372
- if (iterator) iteratorClose(iterator);
553
+ if (iterator) iteratorClose(iterator, 'normal', condition);
373
554
  return new Result(true, condition);
374
555
  };
375
556
 
@@ -384,26 +565,25 @@ module.exports = function (iterable, unboundFunction, options) {
384
565
  iterator = iterable;
385
566
  } else {
386
567
  iterFn = getIteratorMethod(iterable);
387
- if (typeof iterFn != 'function') throw TypeError('Target is not iterable');
568
+ if (!iterFn) throw TypeError(tryToString(iterable) + ' is not iterable');
388
569
  // optimisation for array iterators
389
570
  if (isArrayIteratorMethod(iterFn)) {
390
- for (index = 0, length = toLength(iterable.length); length > index; index++) {
571
+ for (index = 0, length = lengthOfArrayLike(iterable); length > index; index++) {
391
572
  result = callFn(iterable[index]);
392
- if (result && result instanceof Result) return result;
573
+ if (result && isPrototypeOf(ResultPrototype, result)) return result;
393
574
  } return new Result(false);
394
575
  }
395
- iterator = iterFn.call(iterable);
576
+ iterator = getIterator(iterable, iterFn);
396
577
  }
397
578
 
398
579
  next = iterator.next;
399
- while (!(step = next.call(iterator)).done) {
580
+ while (!(step = call(next, iterator)).done) {
400
581
  try {
401
582
  result = callFn(step.value);
402
583
  } catch (error) {
403
- iteratorClose(iterator);
404
- throw error;
584
+ iteratorClose(iterator, 'throw', error);
405
585
  }
406
- if (typeof result == 'object' && result && result instanceof Result) return result;
586
+ if (typeof result == 'object' && result && isPrototypeOf(ResultPrototype, result)) return result;
407
587
  } return new Result(false);
408
588
  };
409
589
 
@@ -413,7 +593,7 @@ module.exports = function (iterable, unboundFunction, options) {
413
593
  /***/ "23cb":
414
594
  /***/ (function(module, exports, __webpack_require__) {
415
595
 
416
- var toInteger = __webpack_require__("a691");
596
+ var toIntegerOrInfinity = __webpack_require__("5926");
417
597
 
418
598
  var max = Math.max;
419
599
  var min = Math.min;
@@ -422,7 +602,7 @@ var min = Math.min;
422
602
  // Let integer be ? ToInteger(index).
423
603
  // If integer < 0, let result be max((length + integer), 0); else let result be min(integer, length).
424
604
  module.exports = function (index, length) {
425
- var integer = toInteger(index);
605
+ var integer = toIntegerOrInfinity(index);
426
606
  return integer < 0 ? max(integer + length, 0) : min(integer, length);
427
607
  };
428
608
 
@@ -453,6 +633,7 @@ var isForced = __webpack_require__("94ca");
453
633
  options.sham - add a flag to not completely full polyfills
454
634
  options.enumerable - export as enumerable property
455
635
  options.noTargetGet - prevent calling a getter on target
636
+ options.name - the .name of the function if it does not match the key
456
637
  */
457
638
  module.exports = function (options, source) {
458
639
  var TARGET = options.target;
@@ -475,7 +656,7 @@ module.exports = function (options, source) {
475
656
  FORCED = isForced(GLOBAL ? key : TARGET + (STATIC ? '.' : '#') + key, options.forced);
476
657
  // contained in target
477
658
  if (!FORCED && targetProperty !== undefined) {
478
- if (typeof sourceProperty === typeof targetProperty) continue;
659
+ if (typeof sourceProperty == typeof targetProperty) continue;
479
660
  copyConstructorProperties(sourceProperty, targetProperty);
480
661
  }
481
662
  // add a flag to not completely full polyfills
@@ -500,6 +681,7 @@ var hiddenKeys = enumBugKeys.concat('length', 'prototype');
500
681
 
501
682
  // `Object.getOwnPropertyNames` method
502
683
  // https://tc39.es/ecma262/#sec-object.getownpropertynames
684
+ // eslint-disable-next-line es/no-object-getownpropertynames -- safe
503
685
  exports.f = Object.getOwnPropertyNames || function getOwnPropertyNames(O) {
504
686
  return internalObjectKeys(O, hiddenKeys);
505
687
  };
@@ -537,43 +719,84 @@ module.exports = function (CONSTRUCTOR_NAME) {
537
719
  /***/ "2a62":
538
720
  /***/ (function(module, exports, __webpack_require__) {
539
721
 
722
+ var call = __webpack_require__("c65b");
540
723
  var anObject = __webpack_require__("825a");
724
+ var getMethod = __webpack_require__("dc4a");
541
725
 
542
- module.exports = function (iterator) {
543
- var returnMethod = iterator['return'];
544
- if (returnMethod !== undefined) {
545
- return anObject(returnMethod.call(iterator)).value;
726
+ module.exports = function (iterator, kind, value) {
727
+ var innerResult, innerError;
728
+ anObject(iterator);
729
+ try {
730
+ innerResult = getMethod(iterator, 'return');
731
+ if (!innerResult) {
732
+ if (kind === 'throw') throw value;
733
+ return value;
734
+ }
735
+ innerResult = call(innerResult, iterator);
736
+ } catch (error) {
737
+ innerError = true;
738
+ innerResult = error;
546
739
  }
740
+ if (kind === 'throw') throw value;
741
+ if (innerError) throw innerResult;
742
+ anObject(innerResult);
743
+ return value;
547
744
  };
548
745
 
549
746
 
747
+ /***/ }),
748
+
749
+ /***/ "2ba4":
750
+ /***/ (function(module, exports, __webpack_require__) {
751
+
752
+ var NATIVE_BIND = __webpack_require__("40d5");
753
+
754
+ var FunctionPrototype = Function.prototype;
755
+ var apply = FunctionPrototype.apply;
756
+ var call = FunctionPrototype.call;
757
+
758
+ // eslint-disable-next-line es/no-reflect -- safe
759
+ module.exports = typeof Reflect == 'object' && Reflect.apply || (NATIVE_BIND ? call.bind(apply) : function () {
760
+ return call.apply(apply, arguments);
761
+ });
762
+
763
+
550
764
  /***/ }),
551
765
 
552
766
  /***/ "2cf4":
553
767
  /***/ (function(module, exports, __webpack_require__) {
554
768
 
555
769
  var global = __webpack_require__("da84");
556
- var fails = __webpack_require__("d039");
770
+ var apply = __webpack_require__("2ba4");
557
771
  var bind = __webpack_require__("0366");
772
+ var isCallable = __webpack_require__("1626");
773
+ var hasOwn = __webpack_require__("1a2d");
774
+ var fails = __webpack_require__("d039");
558
775
  var html = __webpack_require__("1be4");
776
+ var arraySlice = __webpack_require__("f36a");
559
777
  var createElement = __webpack_require__("cc12");
560
778
  var IS_IOS = __webpack_require__("1cdc");
561
779
  var IS_NODE = __webpack_require__("605d");
562
780
 
563
- var location = global.location;
564
781
  var set = global.setImmediate;
565
782
  var clear = global.clearImmediate;
566
783
  var process = global.process;
567
- var MessageChannel = global.MessageChannel;
568
784
  var Dispatch = global.Dispatch;
785
+ var Function = global.Function;
786
+ var MessageChannel = global.MessageChannel;
787
+ var String = global.String;
569
788
  var counter = 0;
570
789
  var queue = {};
571
790
  var ONREADYSTATECHANGE = 'onreadystatechange';
572
- var defer, channel, port;
791
+ var location, defer, channel, port;
792
+
793
+ try {
794
+ // Deno throws a ReferenceError on `location` access without `--location` flag
795
+ location = global.location;
796
+ } catch (error) { /* empty */ }
573
797
 
574
798
  var run = function (id) {
575
- // eslint-disable-next-line no-prototype-builtins -- safe
576
- if (queue.hasOwnProperty(id)) {
799
+ if (hasOwn(queue, id)) {
577
800
  var fn = queue[id];
578
801
  delete queue[id];
579
802
  fn();
@@ -592,18 +815,15 @@ var listener = function (event) {
592
815
 
593
816
  var post = function (id) {
594
817
  // old engines have not location.origin
595
- global.postMessage(id + '', location.protocol + '//' + location.host);
818
+ global.postMessage(String(id), location.protocol + '//' + location.host);
596
819
  };
597
820
 
598
821
  // Node.js 0.9+ & IE10+ has setImmediate, otherwise:
599
822
  if (!set || !clear) {
600
823
  set = function setImmediate(fn) {
601
- var args = [];
602
- var i = 1;
603
- while (arguments.length > i) args.push(arguments[i++]);
824
+ var args = arraySlice(arguments, 1);
604
825
  queue[++counter] = function () {
605
- // eslint-disable-next-line no-new-func -- spec requirement
606
- (typeof fn == 'function' ? fn : Function(fn)).apply(undefined, args);
826
+ apply(isCallable(fn) ? fn : Function(fn), undefined, args);
607
827
  };
608
828
  defer(counter);
609
829
  return counter;
@@ -627,12 +847,12 @@ if (!set || !clear) {
627
847
  channel = new MessageChannel();
628
848
  port = channel.port2;
629
849
  channel.port1.onmessage = listener;
630
- defer = bind(port.postMessage, port, 1);
850
+ defer = bind(port.postMessage, port);
631
851
  // Browsers with postMessage, skip WebWorkers
632
852
  // IE8 has postMessage, but it's sync & typeof its postMessage is 'object'
633
853
  } else if (
634
854
  global.addEventListener &&
635
- typeof postMessage == 'function' &&
855
+ isCallable(global.postMessage) &&
636
856
  !global.importScripts &&
637
857
  location && location.protocol !== 'file:' &&
638
858
  !fails(post)
@@ -670,22 +890,29 @@ var global = __webpack_require__("da84");
670
890
  var userAgent = __webpack_require__("342f");
671
891
 
672
892
  var process = global.process;
673
- var versions = process && process.versions;
893
+ var Deno = global.Deno;
894
+ var versions = process && process.versions || Deno && Deno.version;
674
895
  var v8 = versions && versions.v8;
675
896
  var match, version;
676
897
 
677
898
  if (v8) {
678
899
  match = v8.split('.');
679
- version = match[0] + match[1];
680
- } else if (userAgent) {
900
+ // in old Chrome, versions of V8 isn't V8 = Chrome / 10
901
+ // but their correct versions are not interesting for us
902
+ version = match[0] > 0 && match[0] < 4 ? 1 : +(match[0] + match[1]);
903
+ }
904
+
905
+ // BrowserFS NodeJS `process` polyfill incorrectly set `.v8` to `0.0`
906
+ // so check `userAgent` even if `.v8` exists, but 0
907
+ if (!version && userAgent) {
681
908
  match = userAgent.match(/Edge\/(\d+)/);
682
909
  if (!match || match[1] >= 74) {
683
910
  match = userAgent.match(/Chrome\/(\d+)/);
684
- if (match) version = match[1];
911
+ if (match) version = +match[1];
685
912
  }
686
913
  }
687
914
 
688
- module.exports = version && +version;
915
+ module.exports = version;
689
916
 
690
917
 
691
918
  /***/ }),
@@ -704,14 +931,15 @@ module.exports = getBuiltIn('navigator', 'userAgent') || '';
704
931
  /***/ (function(module, exports, __webpack_require__) {
705
932
 
706
933
  var classof = __webpack_require__("f5df");
934
+ var getMethod = __webpack_require__("dc4a");
707
935
  var Iterators = __webpack_require__("3f8c");
708
936
  var wellKnownSymbol = __webpack_require__("b622");
709
937
 
710
938
  var ITERATOR = wellKnownSymbol('iterator');
711
939
 
712
940
  module.exports = function (it) {
713
- if (it != undefined) return it[ITERATOR]
714
- || it['@@iterator']
941
+ if (it != undefined) return getMethod(it, ITERATOR)
942
+ || getMethod(it, '@@iterator')
715
943
  || Iterators[classof(it)];
716
944
  };
717
945
 
@@ -722,34 +950,51 @@ module.exports = function (it) {
722
950
  /***/ (function(module, exports, __webpack_require__) {
723
951
 
724
952
  var DESCRIPTORS = __webpack_require__("83ab");
953
+ var V8_PROTOTYPE_DEFINE_BUG = __webpack_require__("aed9");
725
954
  var definePropertyModule = __webpack_require__("9bf2");
726
955
  var anObject = __webpack_require__("825a");
956
+ var toIndexedObject = __webpack_require__("fc6a");
727
957
  var objectKeys = __webpack_require__("df75");
728
958
 
729
959
  // `Object.defineProperties` method
730
960
  // https://tc39.es/ecma262/#sec-object.defineproperties
731
- module.exports = DESCRIPTORS ? Object.defineProperties : function defineProperties(O, Properties) {
961
+ // eslint-disable-next-line es/no-object-defineproperties -- safe
962
+ exports.f = DESCRIPTORS && !V8_PROTOTYPE_DEFINE_BUG ? Object.defineProperties : function defineProperties(O, Properties) {
732
963
  anObject(O);
964
+ var props = toIndexedObject(Properties);
733
965
  var keys = objectKeys(Properties);
734
966
  var length = keys.length;
735
967
  var index = 0;
736
968
  var key;
737
- while (length > index) definePropertyModule.f(O, key = keys[index++], Properties[key]);
969
+ while (length > index) definePropertyModule.f(O, key = keys[index++], props[key]);
738
970
  return O;
739
971
  };
740
972
 
741
973
 
974
+ /***/ }),
975
+
976
+ /***/ "3a9b":
977
+ /***/ (function(module, exports, __webpack_require__) {
978
+
979
+ var uncurryThis = __webpack_require__("e330");
980
+
981
+ module.exports = uncurryThis({}.isPrototypeOf);
982
+
983
+
742
984
  /***/ }),
743
985
 
744
986
  /***/ "3bbe":
745
987
  /***/ (function(module, exports, __webpack_require__) {
746
988
 
747
- var isObject = __webpack_require__("861d");
989
+ var global = __webpack_require__("da84");
990
+ var isCallable = __webpack_require__("1626");
748
991
 
749
- module.exports = function (it) {
750
- if (!isObject(it) && it !== null) {
751
- throw TypeError("Can't set " + String(it) + ' as a prototype');
752
- } return it;
992
+ var String = global.String;
993
+ var TypeError = global.TypeError;
994
+
995
+ module.exports = function (argument) {
996
+ if (typeof argument == 'object' || isCallable(argument)) return argument;
997
+ throw TypeError("Can't set " + String(argument) + ' as a prototype');
753
998
  };
754
999
 
755
1000
 
@@ -761,6 +1006,7 @@ module.exports = function (it) {
761
1006
  "use strict";
762
1007
 
763
1008
  var charAt = __webpack_require__("6547").charAt;
1009
+ var toString = __webpack_require__("577e");
764
1010
  var InternalStateModule = __webpack_require__("69f3");
765
1011
  var defineIterator = __webpack_require__("7dd0");
766
1012
 
@@ -773,7 +1019,7 @@ var getInternalState = InternalStateModule.getterFor(STRING_ITERATOR);
773
1019
  defineIterator(String, 'String', function (iterated) {
774
1020
  setInternalState(this, {
775
1021
  type: STRING_ITERATOR,
776
- string: String(iterated),
1022
+ string: toString(iterated),
777
1023
  index: 0
778
1024
  });
779
1025
  // `%StringIteratorPrototype%.next` method
@@ -798,6 +1044,32 @@ defineIterator(String, 'String', function (iterated) {
798
1044
  module.exports = {};
799
1045
 
800
1046
 
1047
+ /***/ }),
1048
+
1049
+ /***/ "408a":
1050
+ /***/ (function(module, exports, __webpack_require__) {
1051
+
1052
+ var uncurryThis = __webpack_require__("e330");
1053
+
1054
+ // `thisNumberValue` abstract operation
1055
+ // https://tc39.es/ecma262/#sec-thisnumbervalue
1056
+ module.exports = uncurryThis(1.0.valueOf);
1057
+
1058
+
1059
+ /***/ }),
1060
+
1061
+ /***/ "40d5":
1062
+ /***/ (function(module, exports, __webpack_require__) {
1063
+
1064
+ var fails = __webpack_require__("d039");
1065
+
1066
+ module.exports = !fails(function () {
1067
+ var test = (function () { /* empty */ }).bind();
1068
+ // eslint-disable-next-line no-prototype-builtins -- safe
1069
+ return typeof test != 'function' || test.hasOwnProperty('prototype');
1070
+ });
1071
+
1072
+
801
1073
  /***/ }),
802
1074
 
803
1075
  /***/ "428f":
@@ -813,10 +1085,13 @@ module.exports = global;
813
1085
  /***/ "44ad":
814
1086
  /***/ (function(module, exports, __webpack_require__) {
815
1087
 
1088
+ var global = __webpack_require__("da84");
1089
+ var uncurryThis = __webpack_require__("e330");
816
1090
  var fails = __webpack_require__("d039");
817
1091
  var classof = __webpack_require__("c6b6");
818
1092
 
819
- var split = ''.split;
1093
+ var Object = global.Object;
1094
+ var split = uncurryThis(''.split);
820
1095
 
821
1096
  // fallback for non-array-like ES3 and non-enumerable old V8 strings
822
1097
  module.exports = fails(function () {
@@ -824,7 +1099,7 @@ module.exports = fails(function () {
824
1099
  // eslint-disable-next-line no-prototype-builtins -- safe
825
1100
  return !Object('z').propertyIsEnumerable(0);
826
1101
  }) ? function (it) {
827
- return classof(it) == 'String' ? split.call(it, '') : Object(it);
1102
+ return classof(it) == 'String' ? split(it, '') : Object(it);
828
1103
  } : Object;
829
1104
 
830
1105
 
@@ -865,7 +1140,7 @@ var global = __webpack_require__("da84");
865
1140
  module.exports = function (a, b) {
866
1141
  var console = global.console;
867
1142
  if (console && console.error) {
868
- arguments.length === 1 ? console.error(a) : console.error(a, b);
1143
+ arguments.length == 1 ? console.error(a) : console.error(a, b);
869
1144
  }
870
1145
  };
871
1146
 
@@ -876,7 +1151,7 @@ module.exports = function (a, b) {
876
1151
  /***/ (function(module, exports, __webpack_require__) {
877
1152
 
878
1153
  var anObject = __webpack_require__("825a");
879
- var aFunction = __webpack_require__("1c0b");
1154
+ var aConstructor = __webpack_require__("5087");
880
1155
  var wellKnownSymbol = __webpack_require__("b622");
881
1156
 
882
1157
  var SPECIES = wellKnownSymbol('species');
@@ -886,7 +1161,30 @@ var SPECIES = wellKnownSymbol('species');
886
1161
  module.exports = function (O, defaultConstructor) {
887
1162
  var C = anObject(O).constructor;
888
1163
  var S;
889
- return C === undefined || (S = anObject(C)[SPECIES]) == undefined ? defaultConstructor : aFunction(S);
1164
+ return C === undefined || (S = anObject(C)[SPECIES]) == undefined ? defaultConstructor : aConstructor(S);
1165
+ };
1166
+
1167
+
1168
+ /***/ }),
1169
+
1170
+ /***/ "485a":
1171
+ /***/ (function(module, exports, __webpack_require__) {
1172
+
1173
+ var global = __webpack_require__("da84");
1174
+ var call = __webpack_require__("c65b");
1175
+ var isCallable = __webpack_require__("1626");
1176
+ var isObject = __webpack_require__("861d");
1177
+
1178
+ var TypeError = global.TypeError;
1179
+
1180
+ // `OrdinaryToPrimitive` abstract operation
1181
+ // https://tc39.es/ecma262/#sec-ordinarytoprimitive
1182
+ module.exports = function (input, pref) {
1183
+ var fn, val;
1184
+ if (pref === 'string' && isCallable(fn = input.toString) && !isObject(val = call(fn, input))) return val;
1185
+ if (isCallable(fn = input.valueOf) && !isObject(val = call(fn, input))) return val;
1186
+ if (pref !== 'string' && isCallable(fn = input.toString) && !isObject(val = call(fn, input))) return val;
1187
+ throw TypeError("Can't convert object to primitive value");
890
1188
  };
891
1189
 
892
1190
 
@@ -895,16 +1193,18 @@ module.exports = function (O, defaultConstructor) {
895
1193
  /***/ "4930":
896
1194
  /***/ (function(module, exports, __webpack_require__) {
897
1195
 
898
- var IS_NODE = __webpack_require__("605d");
1196
+ /* eslint-disable es/no-symbol -- required for testing */
899
1197
  var V8_VERSION = __webpack_require__("2d00");
900
1198
  var fails = __webpack_require__("d039");
901
1199
 
1200
+ // eslint-disable-next-line es/no-object-getownpropertysymbols -- required for testing
902
1201
  module.exports = !!Object.getOwnPropertySymbols && !fails(function () {
903
- /* global Symbol -- required for testing */
904
- return !Symbol.sham &&
905
- // Chrome 38 Symbol has incorrect toString conversion
1202
+ var symbol = Symbol();
1203
+ // Chrome 38 Symbol has incorrect toString conversion
1204
+ // `get-own-property-symbols` polyfill symbols converted to object are not Symbol instances
1205
+ return !String(symbol) || !(Object(symbol) instanceof Symbol) ||
906
1206
  // Chrome 38-40 symbols are not inherited from DOM collections prototypes to instances
907
- (IS_NODE ? V8_VERSION === 38 : V8_VERSION > 37 && V8_VERSION < 41);
1207
+ !Symbol.sham && V8_VERSION && V8_VERSION < 41;
908
1208
  });
909
1209
 
910
1210
 
@@ -914,14 +1214,14 @@ module.exports = !!Object.getOwnPropertySymbols && !fails(function () {
914
1214
  /***/ (function(module, exports, __webpack_require__) {
915
1215
 
916
1216
  var toIndexedObject = __webpack_require__("fc6a");
917
- var toLength = __webpack_require__("50c4");
918
1217
  var toAbsoluteIndex = __webpack_require__("23cb");
1218
+ var lengthOfArrayLike = __webpack_require__("07fa");
919
1219
 
920
1220
  // `Array.prototype.{ indexOf, includes }` methods implementation
921
1221
  var createMethod = function (IS_INCLUDES) {
922
1222
  return function ($this, el, fromIndex) {
923
1223
  var O = toIndexedObject($this);
924
- var length = toLength(O.length);
1224
+ var length = lengthOfArrayLike(O);
925
1225
  var index = toAbsoluteIndex(fromIndex, length);
926
1226
  var value;
927
1227
  // Array#includes uses SameValueZero equality algorithm
@@ -947,6 +1247,30 @@ module.exports = {
947
1247
  };
948
1248
 
949
1249
 
1250
+ /***/ }),
1251
+
1252
+ /***/ "4dae":
1253
+ /***/ (function(module, exports, __webpack_require__) {
1254
+
1255
+ var global = __webpack_require__("da84");
1256
+ var toAbsoluteIndex = __webpack_require__("23cb");
1257
+ var lengthOfArrayLike = __webpack_require__("07fa");
1258
+ var createProperty = __webpack_require__("8418");
1259
+
1260
+ var Array = global.Array;
1261
+ var max = Math.max;
1262
+
1263
+ module.exports = function (O, start, end) {
1264
+ var length = lengthOfArrayLike(O);
1265
+ var k = toAbsoluteIndex(start, length);
1266
+ var fin = toAbsoluteIndex(end === undefined ? length : end, length);
1267
+ var result = Array(max(fin - k, 0));
1268
+ for (var n = 0; k < fin; k++, n++) createProperty(result, n, O[k]);
1269
+ result.length = n;
1270
+ return result;
1271
+ };
1272
+
1273
+
950
1274
  /***/ }),
951
1275
 
952
1276
  /***/ "4df4":
@@ -954,38 +1278,44 @@ module.exports = {
954
1278
 
955
1279
  "use strict";
956
1280
 
1281
+ var global = __webpack_require__("da84");
957
1282
  var bind = __webpack_require__("0366");
1283
+ var call = __webpack_require__("c65b");
958
1284
  var toObject = __webpack_require__("7b0b");
959
1285
  var callWithSafeIterationClosing = __webpack_require__("9bdd");
960
1286
  var isArrayIteratorMethod = __webpack_require__("e95a");
961
- var toLength = __webpack_require__("50c4");
1287
+ var isConstructor = __webpack_require__("68ee");
1288
+ var lengthOfArrayLike = __webpack_require__("07fa");
962
1289
  var createProperty = __webpack_require__("8418");
1290
+ var getIterator = __webpack_require__("9a1f");
963
1291
  var getIteratorMethod = __webpack_require__("35a1");
964
1292
 
1293
+ var Array = global.Array;
1294
+
965
1295
  // `Array.from` method implementation
966
1296
  // https://tc39.es/ecma262/#sec-array.from
967
1297
  module.exports = function from(arrayLike /* , mapfn = undefined, thisArg = undefined */) {
968
1298
  var O = toObject(arrayLike);
969
- var C = typeof this == 'function' ? this : Array;
1299
+ var IS_CONSTRUCTOR = isConstructor(this);
970
1300
  var argumentsLength = arguments.length;
971
1301
  var mapfn = argumentsLength > 1 ? arguments[1] : undefined;
972
1302
  var mapping = mapfn !== undefined;
1303
+ if (mapping) mapfn = bind(mapfn, argumentsLength > 2 ? arguments[2] : undefined);
973
1304
  var iteratorMethod = getIteratorMethod(O);
974
1305
  var index = 0;
975
1306
  var length, result, step, iterator, next, value;
976
- if (mapping) mapfn = bind(mapfn, argumentsLength > 2 ? arguments[2] : undefined, 2);
977
1307
  // if the target is not iterable or it's an array with the default iterator - use a simple case
978
- if (iteratorMethod != undefined && !(C == Array && isArrayIteratorMethod(iteratorMethod))) {
979
- iterator = iteratorMethod.call(O);
1308
+ if (iteratorMethod && !(this == Array && isArrayIteratorMethod(iteratorMethod))) {
1309
+ iterator = getIterator(O, iteratorMethod);
980
1310
  next = iterator.next;
981
- result = new C();
982
- for (;!(step = next.call(iterator)).done; index++) {
1311
+ result = IS_CONSTRUCTOR ? new this() : [];
1312
+ for (;!(step = call(next, iterator)).done; index++) {
983
1313
  value = mapping ? callWithSafeIterationClosing(iterator, mapfn, [step.value, index], true) : step.value;
984
1314
  createProperty(result, index, value);
985
1315
  }
986
1316
  } else {
987
- length = toLength(O.length);
988
- result = new C(length);
1317
+ length = lengthOfArrayLike(O);
1318
+ result = IS_CONSTRUCTOR ? new this(length) : Array(length);
989
1319
  for (;length > index; index++) {
990
1320
  value = mapping ? mapfn(O[index], index) : O[index];
991
1321
  createProperty(result, index, value);
@@ -998,29 +1328,35 @@ module.exports = function from(arrayLike /* , mapfn = undefined, thisArg = undef
998
1328
 
999
1329
  /***/ }),
1000
1330
 
1001
- /***/ "50c4":
1331
+ /***/ "5087":
1002
1332
  /***/ (function(module, exports, __webpack_require__) {
1003
1333
 
1004
- var toInteger = __webpack_require__("a691");
1334
+ var global = __webpack_require__("da84");
1335
+ var isConstructor = __webpack_require__("68ee");
1336
+ var tryToString = __webpack_require__("0d51");
1005
1337
 
1006
- var min = Math.min;
1338
+ var TypeError = global.TypeError;
1007
1339
 
1008
- // `ToLength` abstract operation
1009
- // https://tc39.es/ecma262/#sec-tolength
1340
+ // `Assert: IsConstructor(argument) is true`
1010
1341
  module.exports = function (argument) {
1011
- return argument > 0 ? min(toInteger(argument), 0x1FFFFFFFFFFFFF) : 0; // 2 ** 53 - 1 == 9007199254740991
1342
+ if (isConstructor(argument)) return argument;
1343
+ throw TypeError(tryToString(argument) + ' is not a constructor');
1012
1344
  };
1013
1345
 
1014
1346
 
1015
1347
  /***/ }),
1016
1348
 
1017
- /***/ "5135":
1018
- /***/ (function(module, exports) {
1349
+ /***/ "50c4":
1350
+ /***/ (function(module, exports, __webpack_require__) {
1351
+
1352
+ var toIntegerOrInfinity = __webpack_require__("5926");
1019
1353
 
1020
- var hasOwnProperty = {}.hasOwnProperty;
1354
+ var min = Math.min;
1021
1355
 
1022
- module.exports = function (it, key) {
1023
- return hasOwnProperty.call(it, key);
1356
+ // `ToLength` abstract operation
1357
+ // https://tc39.es/ecma262/#sec-tolength
1358
+ module.exports = function (argument) {
1359
+ return argument > 0 ? min(toIntegerOrInfinity(argument), 0x1FFFFFFFFFFFFF) : 0; // 2 ** 53 - 1 == 9007199254740991
1024
1360
  };
1025
1361
 
1026
1362
 
@@ -1035,9 +1371,11 @@ var store = __webpack_require__("c6cd");
1035
1371
  (module.exports = function (key, value) {
1036
1372
  return store[key] || (store[key] = value !== undefined ? value : {});
1037
1373
  })('versions', []).push({
1038
- version: '3.9.1',
1374
+ version: '3.20.3',
1039
1375
  mode: IS_PURE ? 'pure' : 'global',
1040
- copyright: '© 2021 Denis Pushkarev (zloirock.ru)'
1376
+ copyright: '© 2014-2022 Denis Pushkarev (zloirock.ru)',
1377
+ license: 'https://github.com/zloirock/core-js/blob/v3.20.3/LICENSE',
1378
+ source: 'https://github.com/zloirock/core-js'
1041
1379
  });
1042
1380
 
1043
1381
 
@@ -1047,15 +1385,117 @@ var store = __webpack_require__("c6cd");
1047
1385
  /***/ (function(module, exports, __webpack_require__) {
1048
1386
 
1049
1387
  var getBuiltIn = __webpack_require__("d066");
1388
+ var uncurryThis = __webpack_require__("e330");
1050
1389
  var getOwnPropertyNamesModule = __webpack_require__("241c");
1051
1390
  var getOwnPropertySymbolsModule = __webpack_require__("7418");
1052
1391
  var anObject = __webpack_require__("825a");
1053
1392
 
1393
+ var concat = uncurryThis([].concat);
1394
+
1054
1395
  // all object keys, includes non-enumerable and symbols
1055
1396
  module.exports = getBuiltIn('Reflect', 'ownKeys') || function ownKeys(it) {
1056
1397
  var keys = getOwnPropertyNamesModule.f(anObject(it));
1057
1398
  var getOwnPropertySymbols = getOwnPropertySymbolsModule.f;
1058
- return getOwnPropertySymbols ? keys.concat(getOwnPropertySymbols(it)) : keys;
1399
+ return getOwnPropertySymbols ? concat(keys, getOwnPropertySymbols(it)) : keys;
1400
+ };
1401
+
1402
+
1403
+ /***/ }),
1404
+
1405
+ /***/ "577e":
1406
+ /***/ (function(module, exports, __webpack_require__) {
1407
+
1408
+ var global = __webpack_require__("da84");
1409
+ var classof = __webpack_require__("f5df");
1410
+
1411
+ var String = global.String;
1412
+
1413
+ module.exports = function (argument) {
1414
+ if (classof(argument) === 'Symbol') throw TypeError('Cannot convert a Symbol value to a string');
1415
+ return String(argument);
1416
+ };
1417
+
1418
+
1419
+ /***/ }),
1420
+
1421
+ /***/ "5899":
1422
+ /***/ (function(module, exports) {
1423
+
1424
+ // a string of all valid unicode whitespaces
1425
+ module.exports = '\u0009\u000A\u000B\u000C\u000D\u0020\u00A0\u1680\u2000\u2001\u2002' +
1426
+ '\u2003\u2004\u2005\u2006\u2007\u2008\u2009\u200A\u202F\u205F\u3000\u2028\u2029\uFEFF';
1427
+
1428
+
1429
+ /***/ }),
1430
+
1431
+ /***/ "58a8":
1432
+ /***/ (function(module, exports, __webpack_require__) {
1433
+
1434
+ var uncurryThis = __webpack_require__("e330");
1435
+ var requireObjectCoercible = __webpack_require__("1d80");
1436
+ var toString = __webpack_require__("577e");
1437
+ var whitespaces = __webpack_require__("5899");
1438
+
1439
+ var replace = uncurryThis(''.replace);
1440
+ var whitespace = '[' + whitespaces + ']';
1441
+ var ltrim = RegExp('^' + whitespace + whitespace + '*');
1442
+ var rtrim = RegExp(whitespace + whitespace + '*$');
1443
+
1444
+ // `String.prototype.{ trim, trimStart, trimEnd, trimLeft, trimRight }` methods implementation
1445
+ var createMethod = function (TYPE) {
1446
+ return function ($this) {
1447
+ var string = toString(requireObjectCoercible($this));
1448
+ if (TYPE & 1) string = replace(string, ltrim, '');
1449
+ if (TYPE & 2) string = replace(string, rtrim, '');
1450
+ return string;
1451
+ };
1452
+ };
1453
+
1454
+ module.exports = {
1455
+ // `String.prototype.{ trimLeft, trimStart }` methods
1456
+ // https://tc39.es/ecma262/#sec-string.prototype.trimstart
1457
+ start: createMethod(1),
1458
+ // `String.prototype.{ trimRight, trimEnd }` methods
1459
+ // https://tc39.es/ecma262/#sec-string.prototype.trimend
1460
+ end: createMethod(2),
1461
+ // `String.prototype.trim` method
1462
+ // https://tc39.es/ecma262/#sec-string.prototype.trim
1463
+ trim: createMethod(3)
1464
+ };
1465
+
1466
+
1467
+ /***/ }),
1468
+
1469
+ /***/ "5926":
1470
+ /***/ (function(module, exports) {
1471
+
1472
+ var ceil = Math.ceil;
1473
+ var floor = Math.floor;
1474
+
1475
+ // `ToIntegerOrInfinity` abstract operation
1476
+ // https://tc39.es/ecma262/#sec-tointegerorinfinity
1477
+ module.exports = function (argument) {
1478
+ var number = +argument;
1479
+ // eslint-disable-next-line no-self-compare -- safe
1480
+ return number !== number || number === 0 ? 0 : (number > 0 ? floor : ceil)(number);
1481
+ };
1482
+
1483
+
1484
+ /***/ }),
1485
+
1486
+ /***/ "59ed":
1487
+ /***/ (function(module, exports, __webpack_require__) {
1488
+
1489
+ var global = __webpack_require__("da84");
1490
+ var isCallable = __webpack_require__("1626");
1491
+ var tryToString = __webpack_require__("0d51");
1492
+
1493
+ var TypeError = global.TypeError;
1494
+
1495
+ // `Assert: IsCallable(argument) is true`
1496
+ module.exports = function (argument) {
1497
+ if (isCallable(argument)) return argument;
1498
+ throw TypeError(tryToString(argument) + ' is not a function');
1059
1499
  };
1060
1500
 
1061
1501
 
@@ -1074,6 +1514,30 @@ module.exports = function (bitmap, value) {
1074
1514
  };
1075
1515
 
1076
1516
 
1517
+ /***/ }),
1518
+
1519
+ /***/ "5e77":
1520
+ /***/ (function(module, exports, __webpack_require__) {
1521
+
1522
+ var DESCRIPTORS = __webpack_require__("83ab");
1523
+ var hasOwn = __webpack_require__("1a2d");
1524
+
1525
+ var FunctionPrototype = Function.prototype;
1526
+ // eslint-disable-next-line es/no-object-getownpropertydescriptor -- safe
1527
+ var getDescriptor = DESCRIPTORS && Object.getOwnPropertyDescriptor;
1528
+
1529
+ var EXISTS = hasOwn(FunctionPrototype, 'name');
1530
+ // additional protection from minified / mangled / dropped function names
1531
+ var PROPER = EXISTS && (function something() { /* empty */ }).name === 'something';
1532
+ var CONFIGURABLE = EXISTS && (!DESCRIPTORS || (DESCRIPTORS && getDescriptor(FunctionPrototype, 'name').configurable));
1533
+
1534
+ module.exports = {
1535
+ EXISTS: EXISTS,
1536
+ PROPER: PROPER,
1537
+ CONFIGURABLE: CONFIGURABLE
1538
+ };
1539
+
1540
+
1077
1541
  /***/ }),
1078
1542
 
1079
1543
  /***/ "605d":
@@ -1085,27 +1549,44 @@ var global = __webpack_require__("da84");
1085
1549
  module.exports = classof(global.process) == 'process';
1086
1550
 
1087
1551
 
1552
+ /***/ }),
1553
+
1554
+ /***/ "6069":
1555
+ /***/ (function(module, exports) {
1556
+
1557
+ module.exports = typeof window == 'object';
1558
+
1559
+
1088
1560
  /***/ }),
1089
1561
 
1090
1562
  /***/ "6547":
1091
1563
  /***/ (function(module, exports, __webpack_require__) {
1092
1564
 
1093
- var toInteger = __webpack_require__("a691");
1565
+ var uncurryThis = __webpack_require__("e330");
1566
+ var toIntegerOrInfinity = __webpack_require__("5926");
1567
+ var toString = __webpack_require__("577e");
1094
1568
  var requireObjectCoercible = __webpack_require__("1d80");
1095
1569
 
1096
- // `String.prototype.{ codePointAt, at }` methods implementation
1570
+ var charAt = uncurryThis(''.charAt);
1571
+ var charCodeAt = uncurryThis(''.charCodeAt);
1572
+ var stringSlice = uncurryThis(''.slice);
1573
+
1097
1574
  var createMethod = function (CONVERT_TO_STRING) {
1098
1575
  return function ($this, pos) {
1099
- var S = String(requireObjectCoercible($this));
1100
- var position = toInteger(pos);
1576
+ var S = toString(requireObjectCoercible($this));
1577
+ var position = toIntegerOrInfinity(pos);
1101
1578
  var size = S.length;
1102
1579
  var first, second;
1103
1580
  if (position < 0 || position >= size) return CONVERT_TO_STRING ? '' : undefined;
1104
- first = S.charCodeAt(position);
1581
+ first = charCodeAt(S, position);
1105
1582
  return first < 0xD800 || first > 0xDBFF || position + 1 === size
1106
- || (second = S.charCodeAt(position + 1)) < 0xDC00 || second > 0xDFFF
1107
- ? CONVERT_TO_STRING ? S.charAt(position) : first
1108
- : CONVERT_TO_STRING ? S.slice(position, position + 2) : (first - 0xD800 << 10) + (second - 0xDC00) + 0x10000;
1583
+ || (second = charCodeAt(S, position + 1)) < 0xDC00 || second > 0xDFFF
1584
+ ? CONVERT_TO_STRING
1585
+ ? charAt(S, position)
1586
+ : first
1587
+ : CONVERT_TO_STRING
1588
+ ? stringSlice(S, position, position + 2)
1589
+ : (first - 0xD800 << 10) + (second - 0xDC00) + 0x10000;
1109
1590
  };
1110
1591
  };
1111
1592
 
@@ -1124,27 +1605,73 @@ module.exports = {
1124
1605
  /***/ "65f0":
1125
1606
  /***/ (function(module, exports, __webpack_require__) {
1126
1607
 
1127
- var isObject = __webpack_require__("861d");
1128
- var isArray = __webpack_require__("e8b5");
1129
- var wellKnownSymbol = __webpack_require__("b622");
1130
-
1131
- var SPECIES = wellKnownSymbol('species');
1608
+ var arraySpeciesConstructor = __webpack_require__("0b42");
1132
1609
 
1133
1610
  // `ArraySpeciesCreate` abstract operation
1134
1611
  // https://tc39.es/ecma262/#sec-arrayspeciescreate
1135
1612
  module.exports = function (originalArray, length) {
1136
- var C;
1137
- if (isArray(originalArray)) {
1138
- C = originalArray.constructor;
1139
- // cross-realm fallback
1140
- if (typeof C == 'function' && (C === Array || isArray(C.prototype))) C = undefined;
1141
- else if (isObject(C)) {
1142
- C = C[SPECIES];
1143
- if (C === null) C = undefined;
1144
- }
1145
- } return new (C === undefined ? Array : C)(length === 0 ? 0 : length);
1613
+ return new (arraySpeciesConstructor(originalArray))(length === 0 ? 0 : length);
1614
+ };
1615
+
1616
+
1617
+ /***/ }),
1618
+
1619
+ /***/ "68ee":
1620
+ /***/ (function(module, exports, __webpack_require__) {
1621
+
1622
+ var uncurryThis = __webpack_require__("e330");
1623
+ var fails = __webpack_require__("d039");
1624
+ var isCallable = __webpack_require__("1626");
1625
+ var classof = __webpack_require__("f5df");
1626
+ var getBuiltIn = __webpack_require__("d066");
1627
+ var inspectSource = __webpack_require__("8925");
1628
+
1629
+ var noop = function () { /* empty */ };
1630
+ var empty = [];
1631
+ var construct = getBuiltIn('Reflect', 'construct');
1632
+ var constructorRegExp = /^\s*(?:class|function)\b/;
1633
+ var exec = uncurryThis(constructorRegExp.exec);
1634
+ var INCORRECT_TO_STRING = !constructorRegExp.exec(noop);
1635
+
1636
+ var isConstructorModern = function isConstructor(argument) {
1637
+ if (!isCallable(argument)) return false;
1638
+ try {
1639
+ construct(noop, empty, argument);
1640
+ return true;
1641
+ } catch (error) {
1642
+ return false;
1643
+ }
1644
+ };
1645
+
1646
+ var isConstructorLegacy = function isConstructor(argument) {
1647
+ if (!isCallable(argument)) return false;
1648
+ switch (classof(argument)) {
1649
+ case 'AsyncFunction':
1650
+ case 'GeneratorFunction':
1651
+ case 'AsyncGeneratorFunction': return false;
1652
+ }
1653
+ try {
1654
+ // we can't check .prototype since constructors produced by .bind haven't it
1655
+ // `Function#toString` throws on some built-it function in some legacy engines
1656
+ // (for example, `DOMQuad` and similar in FF41-)
1657
+ return INCORRECT_TO_STRING || !!exec(constructorRegExp, inspectSource(argument));
1658
+ } catch (error) {
1659
+ return true;
1660
+ }
1146
1661
  };
1147
1662
 
1663
+ isConstructorLegacy.sham = true;
1664
+
1665
+ // `IsConstructor` abstract operation
1666
+ // https://tc39.es/ecma262/#sec-isconstructor
1667
+ module.exports = !construct || fails(function () {
1668
+ var called;
1669
+ return isConstructorModern(isConstructorModern.call)
1670
+ || !isConstructorModern(Object)
1671
+ || !isConstructorModern(function () { called = true; })
1672
+ || called;
1673
+ }) ? isConstructorLegacy : isConstructorModern;
1674
+
1148
1675
 
1149
1676
  /***/ }),
1150
1677
 
@@ -1153,13 +1680,16 @@ module.exports = function (originalArray, length) {
1153
1680
 
1154
1681
  var NATIVE_WEAK_MAP = __webpack_require__("7f9a");
1155
1682
  var global = __webpack_require__("da84");
1683
+ var uncurryThis = __webpack_require__("e330");
1156
1684
  var isObject = __webpack_require__("861d");
1157
1685
  var createNonEnumerableProperty = __webpack_require__("9112");
1158
- var objectHas = __webpack_require__("5135");
1686
+ var hasOwn = __webpack_require__("1a2d");
1159
1687
  var shared = __webpack_require__("c6cd");
1160
1688
  var sharedKey = __webpack_require__("f772");
1161
1689
  var hiddenKeys = __webpack_require__("d012");
1162
1690
 
1691
+ var OBJECT_ALREADY_INITIALIZED = 'Object already initialized';
1692
+ var TypeError = global.TypeError;
1163
1693
  var WeakMap = global.WeakMap;
1164
1694
  var set, get, has;
1165
1695
 
@@ -1176,35 +1706,37 @@ var getterFor = function (TYPE) {
1176
1706
  };
1177
1707
  };
1178
1708
 
1179
- if (NATIVE_WEAK_MAP) {
1709
+ if (NATIVE_WEAK_MAP || shared.state) {
1180
1710
  var store = shared.state || (shared.state = new WeakMap());
1181
- var wmget = store.get;
1182
- var wmhas = store.has;
1183
- var wmset = store.set;
1711
+ var wmget = uncurryThis(store.get);
1712
+ var wmhas = uncurryThis(store.has);
1713
+ var wmset = uncurryThis(store.set);
1184
1714
  set = function (it, metadata) {
1715
+ if (wmhas(store, it)) throw new TypeError(OBJECT_ALREADY_INITIALIZED);
1185
1716
  metadata.facade = it;
1186
- wmset.call(store, it, metadata);
1717
+ wmset(store, it, metadata);
1187
1718
  return metadata;
1188
1719
  };
1189
1720
  get = function (it) {
1190
- return wmget.call(store, it) || {};
1721
+ return wmget(store, it) || {};
1191
1722
  };
1192
1723
  has = function (it) {
1193
- return wmhas.call(store, it);
1724
+ return wmhas(store, it);
1194
1725
  };
1195
1726
  } else {
1196
1727
  var STATE = sharedKey('state');
1197
1728
  hiddenKeys[STATE] = true;
1198
1729
  set = function (it, metadata) {
1730
+ if (hasOwn(it, STATE)) throw new TypeError(OBJECT_ALREADY_INITIALIZED);
1199
1731
  metadata.facade = it;
1200
1732
  createNonEnumerableProperty(it, STATE, metadata);
1201
1733
  return metadata;
1202
1734
  };
1203
1735
  get = function (it) {
1204
- return objectHas(it, STATE) ? it[STATE] : {};
1736
+ return hasOwn(it, STATE) ? it[STATE] : {};
1205
1737
  };
1206
1738
  has = function (it) {
1207
- return objectHas(it, STATE);
1739
+ return hasOwn(it, STATE);
1208
1740
  };
1209
1741
  }
1210
1742
 
@@ -1223,11 +1755,13 @@ module.exports = {
1223
1755
  /***/ (function(module, exports, __webpack_require__) {
1224
1756
 
1225
1757
  var global = __webpack_require__("da84");
1758
+ var isCallable = __webpack_require__("1626");
1759
+ var hasOwn = __webpack_require__("1a2d");
1226
1760
  var createNonEnumerableProperty = __webpack_require__("9112");
1227
- var has = __webpack_require__("5135");
1228
1761
  var setGlobal = __webpack_require__("ce4e");
1229
1762
  var inspectSource = __webpack_require__("8925");
1230
1763
  var InternalStateModule = __webpack_require__("69f3");
1764
+ var CONFIGURABLE_FUNCTION_NAME = __webpack_require__("5e77").CONFIGURABLE;
1231
1765
 
1232
1766
  var getInternalState = InternalStateModule.get;
1233
1767
  var enforceInternalState = InternalStateModule.enforce;
@@ -1237,14 +1771,18 @@ var TEMPLATE = String(String).split('String');
1237
1771
  var unsafe = options ? !!options.unsafe : false;
1238
1772
  var simple = options ? !!options.enumerable : false;
1239
1773
  var noTargetGet = options ? !!options.noTargetGet : false;
1774
+ var name = options && options.name !== undefined ? options.name : key;
1240
1775
  var state;
1241
- if (typeof value == 'function') {
1242
- if (typeof key == 'string' && !has(value, 'name')) {
1243
- createNonEnumerableProperty(value, 'name', key);
1776
+ if (isCallable(value)) {
1777
+ if (String(name).slice(0, 7) === 'Symbol(') {
1778
+ name = '[' + String(name).replace(/^Symbol\(([^)]*)\)/, '$1') + ']';
1779
+ }
1780
+ if (!hasOwn(value, 'name') || (CONFIGURABLE_FUNCTION_NAME && value.name !== name)) {
1781
+ createNonEnumerableProperty(value, 'name', name);
1244
1782
  }
1245
1783
  state = enforceInternalState(value);
1246
1784
  if (!state.source) {
1247
- state.source = TEMPLATE.join(typeof key == 'string' ? key : '');
1785
+ state.source = TEMPLATE.join(typeof name == 'string' ? name : '');
1248
1786
  }
1249
1787
  }
1250
1788
  if (O === global) {
@@ -1260,15 +1798,41 @@ var TEMPLATE = String(String).split('String');
1260
1798
  else createNonEnumerableProperty(O, key, value);
1261
1799
  // add fake Function#toString for correct work wrapped methods / constructors with methods like LoDash isNative
1262
1800
  })(Function.prototype, 'toString', function toString() {
1263
- return typeof this == 'function' && getInternalState(this).source || inspectSource(this);
1801
+ return isCallable(this) && getInternalState(this).source || inspectSource(this);
1264
1802
  });
1265
1803
 
1266
1804
 
1805
+ /***/ }),
1806
+
1807
+ /***/ "7156":
1808
+ /***/ (function(module, exports, __webpack_require__) {
1809
+
1810
+ var isCallable = __webpack_require__("1626");
1811
+ var isObject = __webpack_require__("861d");
1812
+ var setPrototypeOf = __webpack_require__("d2bb");
1813
+
1814
+ // makes subclassing work correct for wrapped built-ins
1815
+ module.exports = function ($this, dummy, Wrapper) {
1816
+ var NewTarget, NewTargetPrototype;
1817
+ if (
1818
+ // it can work only with native `setPrototypeOf`
1819
+ setPrototypeOf &&
1820
+ // we haven't completely correct pre-ES6 way for getting `new.target`, so use this
1821
+ isCallable(NewTarget = dummy.constructor) &&
1822
+ NewTarget !== Wrapper &&
1823
+ isObject(NewTargetPrototype = NewTarget.prototype) &&
1824
+ NewTargetPrototype !== Wrapper.prototype
1825
+ ) setPrototypeOf($this, NewTargetPrototype);
1826
+ return $this;
1827
+ };
1828
+
1829
+
1267
1830
  /***/ }),
1268
1831
 
1269
1832
  /***/ "7418":
1270
1833
  /***/ (function(module, exports) {
1271
1834
 
1835
+ // eslint-disable-next-line es/no-object-getownpropertysymbols -- safe
1272
1836
  exports.f = Object.getOwnPropertySymbols;
1273
1837
 
1274
1838
 
@@ -1278,13 +1842,13 @@ exports.f = Object.getOwnPropertySymbols;
1278
1842
  /***/ (function(module, exports, __webpack_require__) {
1279
1843
 
1280
1844
  var path = __webpack_require__("428f");
1281
- var has = __webpack_require__("5135");
1845
+ var hasOwn = __webpack_require__("1a2d");
1282
1846
  var wrappedWellKnownSymbolModule = __webpack_require__("e538");
1283
1847
  var defineProperty = __webpack_require__("9bf2").f;
1284
1848
 
1285
1849
  module.exports = function (NAME) {
1286
1850
  var Symbol = path.Symbol || (path.Symbol = {});
1287
- if (!has(Symbol, NAME)) defineProperty(Symbol, NAME, {
1851
+ if (!hasOwn(Symbol, NAME)) defineProperty(Symbol, NAME, {
1288
1852
  value: wrappedWellKnownSymbolModule.f(NAME)
1289
1853
  });
1290
1854
  };
@@ -1307,13 +1871,30 @@ module.exports = [
1307
1871
  ];
1308
1872
 
1309
1873
 
1874
+ /***/ }),
1875
+
1876
+ /***/ "785a":
1877
+ /***/ (function(module, exports, __webpack_require__) {
1878
+
1879
+ // in old WebKit versions, `element.classList` is not an instance of global `DOMTokenList`
1880
+ var documentCreateElement = __webpack_require__("cc12");
1881
+
1882
+ var classList = documentCreateElement('span').classList;
1883
+ var DOMTokenListPrototype = classList && classList.constructor && classList.constructor.prototype;
1884
+
1885
+ module.exports = DOMTokenListPrototype === Object.prototype ? undefined : DOMTokenListPrototype;
1886
+
1887
+
1310
1888
  /***/ }),
1311
1889
 
1312
1890
  /***/ "7b0b":
1313
1891
  /***/ (function(module, exports, __webpack_require__) {
1314
1892
 
1893
+ var global = __webpack_require__("da84");
1315
1894
  var requireObjectCoercible = __webpack_require__("1d80");
1316
1895
 
1896
+ var Object = global.Object;
1897
+
1317
1898
  // `ToObject` abstract operation
1318
1899
  // https://tc39.es/ecma262/#sec-toobject
1319
1900
  module.exports = function (argument) {
@@ -1326,8 +1907,9 @@ module.exports = function (argument) {
1326
1907
  /***/ "7c73":
1327
1908
  /***/ (function(module, exports, __webpack_require__) {
1328
1909
 
1910
+ /* global ActiveXObject -- old IE, WSH */
1329
1911
  var anObject = __webpack_require__("825a");
1330
- var defineProperties = __webpack_require__("37e8");
1912
+ var definePropertiesModule = __webpack_require__("37e8");
1331
1913
  var enumBugKeys = __webpack_require__("7839");
1332
1914
  var hiddenKeys = __webpack_require__("d012");
1333
1915
  var html = __webpack_require__("1be4");
@@ -1380,10 +1962,13 @@ var NullProtoObjectViaIFrame = function () {
1380
1962
  var activeXDocument;
1381
1963
  var NullProtoObject = function () {
1382
1964
  try {
1383
- /* global ActiveXObject -- old IE */
1384
- activeXDocument = document.domain && new ActiveXObject('htmlfile');
1965
+ activeXDocument = new ActiveXObject('htmlfile');
1385
1966
  } catch (error) { /* ignore */ }
1386
- NullProtoObject = activeXDocument ? NullProtoObjectViaActiveX(activeXDocument) : NullProtoObjectViaIFrame();
1967
+ NullProtoObject = typeof document != 'undefined'
1968
+ ? document.domain && activeXDocument
1969
+ ? NullProtoObjectViaActiveX(activeXDocument) // old IE
1970
+ : NullProtoObjectViaIFrame()
1971
+ : NullProtoObjectViaActiveX(activeXDocument); // WSH
1387
1972
  var length = enumBugKeys.length;
1388
1973
  while (length--) delete NullProtoObject[PROTOTYPE][enumBugKeys[length]];
1389
1974
  return NullProtoObject();
@@ -1402,10 +1987,39 @@ module.exports = Object.create || function create(O, Properties) {
1402
1987
  // add "__proto__" for Object.getPrototypeOf polyfill
1403
1988
  result[IE_PROTO] = O;
1404
1989
  } else result = NullProtoObject();
1405
- return Properties === undefined ? result : defineProperties(result, Properties);
1990
+ return Properties === undefined ? result : definePropertiesModule.f(result, Properties);
1406
1991
  };
1407
1992
 
1408
1993
 
1994
+ /***/ }),
1995
+
1996
+ /***/ "7db0":
1997
+ /***/ (function(module, exports, __webpack_require__) {
1998
+
1999
+ "use strict";
2000
+
2001
+ var $ = __webpack_require__("23e7");
2002
+ var $find = __webpack_require__("b727").find;
2003
+ var addToUnscopables = __webpack_require__("44d2");
2004
+
2005
+ var FIND = 'find';
2006
+ var SKIPS_HOLES = true;
2007
+
2008
+ // Shouldn't skip holes
2009
+ if (FIND in []) Array(1)[FIND](function () { SKIPS_HOLES = false; });
2010
+
2011
+ // `Array.prototype.find` method
2012
+ // https://tc39.es/ecma262/#sec-array.prototype.find
2013
+ $({ target: 'Array', proto: true, forced: SKIPS_HOLES }, {
2014
+ find: function find(callbackfn /* , that = undefined */) {
2015
+ return $find(this, callbackfn, arguments.length > 1 ? arguments[1] : undefined);
2016
+ }
2017
+ });
2018
+
2019
+ // https://tc39.es/ecma262/#sec-array.prototype-@@unscopables
2020
+ addToUnscopables(FIND);
2021
+
2022
+
1409
2023
  /***/ }),
1410
2024
 
1411
2025
  /***/ "7dd0":
@@ -1414,6 +2028,10 @@ module.exports = Object.create || function create(O, Properties) {
1414
2028
  "use strict";
1415
2029
 
1416
2030
  var $ = __webpack_require__("23e7");
2031
+ var call = __webpack_require__("c65b");
2032
+ var IS_PURE = __webpack_require__("c430");
2033
+ var FunctionName = __webpack_require__("5e77");
2034
+ var isCallable = __webpack_require__("1626");
1417
2035
  var createIteratorConstructor = __webpack_require__("9ed3");
1418
2036
  var getPrototypeOf = __webpack_require__("e163");
1419
2037
  var setPrototypeOf = __webpack_require__("d2bb");
@@ -1421,10 +2039,11 @@ var setToStringTag = __webpack_require__("d44e");
1421
2039
  var createNonEnumerableProperty = __webpack_require__("9112");
1422
2040
  var redefine = __webpack_require__("6eeb");
1423
2041
  var wellKnownSymbol = __webpack_require__("b622");
1424
- var IS_PURE = __webpack_require__("c430");
1425
2042
  var Iterators = __webpack_require__("3f8c");
1426
2043
  var IteratorsCore = __webpack_require__("ae93");
1427
2044
 
2045
+ var PROPER_FUNCTION_NAME = FunctionName.PROPER;
2046
+ var CONFIGURABLE_FUNCTION_NAME = FunctionName.CONFIGURABLE;
1428
2047
  var IteratorPrototype = IteratorsCore.IteratorPrototype;
1429
2048
  var BUGGY_SAFARI_ITERATORS = IteratorsCore.BUGGY_SAFARI_ITERATORS;
1430
2049
  var ITERATOR = wellKnownSymbol('iterator');
@@ -1460,12 +2079,12 @@ module.exports = function (Iterable, NAME, IteratorConstructor, next, DEFAULT, I
1460
2079
  // fix native
1461
2080
  if (anyNativeIterator) {
1462
2081
  CurrentIteratorPrototype = getPrototypeOf(anyNativeIterator.call(new Iterable()));
1463
- if (IteratorPrototype !== Object.prototype && CurrentIteratorPrototype.next) {
2082
+ if (CurrentIteratorPrototype !== Object.prototype && CurrentIteratorPrototype.next) {
1464
2083
  if (!IS_PURE && getPrototypeOf(CurrentIteratorPrototype) !== IteratorPrototype) {
1465
2084
  if (setPrototypeOf) {
1466
2085
  setPrototypeOf(CurrentIteratorPrototype, IteratorPrototype);
1467
- } else if (typeof CurrentIteratorPrototype[ITERATOR] != 'function') {
1468
- createNonEnumerableProperty(CurrentIteratorPrototype, ITERATOR, returnThis);
2086
+ } else if (!isCallable(CurrentIteratorPrototype[ITERATOR])) {
2087
+ redefine(CurrentIteratorPrototype, ITERATOR, returnThis);
1469
2088
  }
1470
2089
  }
1471
2090
  // Set @@toStringTag to native iterators
@@ -1474,17 +2093,15 @@ module.exports = function (Iterable, NAME, IteratorConstructor, next, DEFAULT, I
1474
2093
  }
1475
2094
  }
1476
2095
 
1477
- // fix Array#{values, @@iterator}.name in V8 / FF
1478
- if (DEFAULT == VALUES && nativeIterator && nativeIterator.name !== VALUES) {
1479
- INCORRECT_VALUES_NAME = true;
1480
- defaultIterator = function values() { return nativeIterator.call(this); };
1481
- }
1482
-
1483
- // define iterator
1484
- if ((!IS_PURE || FORCED) && IterablePrototype[ITERATOR] !== defaultIterator) {
1485
- createNonEnumerableProperty(IterablePrototype, ITERATOR, defaultIterator);
2096
+ // fix Array.prototype.{ values, @@iterator }.name in V8 / FF
2097
+ if (PROPER_FUNCTION_NAME && DEFAULT == VALUES && nativeIterator && nativeIterator.name !== VALUES) {
2098
+ if (!IS_PURE && CONFIGURABLE_FUNCTION_NAME) {
2099
+ createNonEnumerableProperty(IterablePrototype, 'name', VALUES);
2100
+ } else {
2101
+ INCORRECT_VALUES_NAME = true;
2102
+ defaultIterator = function values() { return call(nativeIterator, this); };
2103
+ }
1486
2104
  }
1487
- Iterators[NAME] = defaultIterator;
1488
2105
 
1489
2106
  // export additional methods
1490
2107
  if (DEFAULT) {
@@ -1500,6 +2117,12 @@ module.exports = function (Iterable, NAME, IteratorConstructor, next, DEFAULT, I
1500
2117
  } else $({ target: NAME, proto: true, forced: BUGGY_SAFARI_ITERATORS || INCORRECT_VALUES_NAME }, methods);
1501
2118
  }
1502
2119
 
2120
+ // define iterator
2121
+ if ((!IS_PURE || FORCED) && IterablePrototype[ITERATOR] !== defaultIterator) {
2122
+ redefine(IterablePrototype, ITERATOR, defaultIterator, { name: DEFAULT });
2123
+ }
2124
+ Iterators[NAME] = defaultIterator;
2125
+
1503
2126
  return methods;
1504
2127
  };
1505
2128
 
@@ -1510,11 +2133,12 @@ module.exports = function (Iterable, NAME, IteratorConstructor, next, DEFAULT, I
1510
2133
  /***/ (function(module, exports, __webpack_require__) {
1511
2134
 
1512
2135
  var global = __webpack_require__("da84");
2136
+ var isCallable = __webpack_require__("1626");
1513
2137
  var inspectSource = __webpack_require__("8925");
1514
2138
 
1515
2139
  var WeakMap = global.WeakMap;
1516
2140
 
1517
- module.exports = typeof WeakMap === 'function' && /native code/.test(inspectSource(WeakMap));
2141
+ module.exports = isCallable(WeakMap) && /native code/.test(inspectSource(WeakMap));
1518
2142
 
1519
2143
 
1520
2144
  /***/ }),
@@ -1522,12 +2146,16 @@ module.exports = typeof WeakMap === 'function' && /native code/.test(inspectSour
1522
2146
  /***/ "825a":
1523
2147
  /***/ (function(module, exports, __webpack_require__) {
1524
2148
 
2149
+ var global = __webpack_require__("da84");
1525
2150
  var isObject = __webpack_require__("861d");
1526
2151
 
1527
- module.exports = function (it) {
1528
- if (!isObject(it)) {
1529
- throw TypeError(String(it) + ' is not an object');
1530
- } return it;
2152
+ var String = global.String;
2153
+ var TypeError = global.TypeError;
2154
+
2155
+ // `Assert: Type(argument) is Object`
2156
+ module.exports = function (argument) {
2157
+ if (isObject(argument)) return argument;
2158
+ throw TypeError(String(argument) + ' is not an object');
1531
2159
  };
1532
2160
 
1533
2161
 
@@ -1540,6 +2168,7 @@ var fails = __webpack_require__("d039");
1540
2168
 
1541
2169
  // Detect IE8's incomplete defineProperty implementation
1542
2170
  module.exports = !fails(function () {
2171
+ // eslint-disable-next-line es/no-object-defineproperty -- required for testing
1543
2172
  return Object.defineProperty({}, 1, { get: function () { return 7; } })[1] != 7;
1544
2173
  });
1545
2174
 
@@ -1551,12 +2180,12 @@ module.exports = !fails(function () {
1551
2180
 
1552
2181
  "use strict";
1553
2182
 
1554
- var toPrimitive = __webpack_require__("c04e");
2183
+ var toPropertyKey = __webpack_require__("a04b");
1555
2184
  var definePropertyModule = __webpack_require__("9bf2");
1556
2185
  var createPropertyDescriptor = __webpack_require__("5c6c");
1557
2186
 
1558
2187
  module.exports = function (object, key, value) {
1559
- var propertyKey = toPrimitive(key);
2188
+ var propertyKey = toPropertyKey(key);
1560
2189
  if (propertyKey in object) definePropertyModule.f(object, propertyKey, createPropertyDescriptor(0, value));
1561
2190
  else object[propertyKey] = value;
1562
2191
  };
@@ -1565,10 +2194,12 @@ module.exports = function (object, key, value) {
1565
2194
  /***/ }),
1566
2195
 
1567
2196
  /***/ "861d":
1568
- /***/ (function(module, exports) {
2197
+ /***/ (function(module, exports, __webpack_require__) {
2198
+
2199
+ var isCallable = __webpack_require__("1626");
1569
2200
 
1570
2201
  module.exports = function (it) {
1571
- return typeof it === 'object' ? it !== null : typeof it === 'function';
2202
+ return typeof it == 'object' ? it !== null : isCallable(it);
1572
2203
  };
1573
2204
 
1574
2205
 
@@ -1662,14 +2293,16 @@ var __WEBPACK_AMD_DEFINE_FACTORY__, __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_
1662
2293
  /***/ "8925":
1663
2294
  /***/ (function(module, exports, __webpack_require__) {
1664
2295
 
2296
+ var uncurryThis = __webpack_require__("e330");
2297
+ var isCallable = __webpack_require__("1626");
1665
2298
  var store = __webpack_require__("c6cd");
1666
2299
 
1667
- var functionToString = Function.toString;
2300
+ var functionToString = uncurryThis(Function.toString);
1668
2301
 
1669
- // this helper broken in `3.4.1-3.4.4`, so we can't use `shared` helper
1670
- if (typeof store.inspectSource != 'function') {
2302
+ // this helper broken in `core-js@3.4.1-3.4.4`, so we can't use `shared` helper
2303
+ if (!isCallable(store.inspectSource)) {
1671
2304
  store.inspectSource = function (it) {
1672
- return functionToString.call(it);
2305
+ return functionToString(it);
1673
2306
  };
1674
2307
  }
1675
2308
 
@@ -1679,13 +2312,16 @@ module.exports = store.inspectSource;
1679
2312
  /***/ }),
1680
2313
 
1681
2314
  /***/ "90e3":
1682
- /***/ (function(module, exports) {
2315
+ /***/ (function(module, exports, __webpack_require__) {
2316
+
2317
+ var uncurryThis = __webpack_require__("e330");
1683
2318
 
1684
2319
  var id = 0;
1685
2320
  var postfix = Math.random();
2321
+ var toString = uncurryThis(1.0.toString);
1686
2322
 
1687
2323
  module.exports = function (key) {
1688
- return 'Symbol(' + String(key === undefined ? '' : key) + ')_' + (++id + postfix).toString(36);
2324
+ return 'Symbol(' + (key === undefined ? '' : key) + ')_' + toString(++id + postfix, 36);
1689
2325
  };
1690
2326
 
1691
2327
 
@@ -1706,12 +2342,138 @@ module.exports = DESCRIPTORS ? function (object, key, value) {
1706
2342
  };
1707
2343
 
1708
2344
 
2345
+ /***/ }),
2346
+
2347
+ /***/ "9263":
2348
+ /***/ (function(module, exports, __webpack_require__) {
2349
+
2350
+ "use strict";
2351
+
2352
+ /* eslint-disable regexp/no-empty-capturing-group, regexp/no-empty-group, regexp/no-lazy-ends -- testing */
2353
+ /* eslint-disable regexp/no-useless-quantifier -- testing */
2354
+ var call = __webpack_require__("c65b");
2355
+ var uncurryThis = __webpack_require__("e330");
2356
+ var toString = __webpack_require__("577e");
2357
+ var regexpFlags = __webpack_require__("ad6d");
2358
+ var stickyHelpers = __webpack_require__("9f7f");
2359
+ var shared = __webpack_require__("5692");
2360
+ var create = __webpack_require__("7c73");
2361
+ var getInternalState = __webpack_require__("69f3").get;
2362
+ var UNSUPPORTED_DOT_ALL = __webpack_require__("fce3");
2363
+ var UNSUPPORTED_NCG = __webpack_require__("107c");
2364
+
2365
+ var nativeReplace = shared('native-string-replace', String.prototype.replace);
2366
+ var nativeExec = RegExp.prototype.exec;
2367
+ var patchedExec = nativeExec;
2368
+ var charAt = uncurryThis(''.charAt);
2369
+ var indexOf = uncurryThis(''.indexOf);
2370
+ var replace = uncurryThis(''.replace);
2371
+ var stringSlice = uncurryThis(''.slice);
2372
+
2373
+ var UPDATES_LAST_INDEX_WRONG = (function () {
2374
+ var re1 = /a/;
2375
+ var re2 = /b*/g;
2376
+ call(nativeExec, re1, 'a');
2377
+ call(nativeExec, re2, 'a');
2378
+ return re1.lastIndex !== 0 || re2.lastIndex !== 0;
2379
+ })();
2380
+
2381
+ var UNSUPPORTED_Y = stickyHelpers.BROKEN_CARET;
2382
+
2383
+ // nonparticipating capturing group, copied from es5-shim's String#split patch.
2384
+ var NPCG_INCLUDED = /()??/.exec('')[1] !== undefined;
2385
+
2386
+ var PATCH = UPDATES_LAST_INDEX_WRONG || NPCG_INCLUDED || UNSUPPORTED_Y || UNSUPPORTED_DOT_ALL || UNSUPPORTED_NCG;
2387
+
2388
+ if (PATCH) {
2389
+ patchedExec = function exec(string) {
2390
+ var re = this;
2391
+ var state = getInternalState(re);
2392
+ var str = toString(string);
2393
+ var raw = state.raw;
2394
+ var result, reCopy, lastIndex, match, i, object, group;
2395
+
2396
+ if (raw) {
2397
+ raw.lastIndex = re.lastIndex;
2398
+ result = call(patchedExec, raw, str);
2399
+ re.lastIndex = raw.lastIndex;
2400
+ return result;
2401
+ }
2402
+
2403
+ var groups = state.groups;
2404
+ var sticky = UNSUPPORTED_Y && re.sticky;
2405
+ var flags = call(regexpFlags, re);
2406
+ var source = re.source;
2407
+ var charsAdded = 0;
2408
+ var strCopy = str;
2409
+
2410
+ if (sticky) {
2411
+ flags = replace(flags, 'y', '');
2412
+ if (indexOf(flags, 'g') === -1) {
2413
+ flags += 'g';
2414
+ }
2415
+
2416
+ strCopy = stringSlice(str, re.lastIndex);
2417
+ // Support anchored sticky behavior.
2418
+ if (re.lastIndex > 0 && (!re.multiline || re.multiline && charAt(str, re.lastIndex - 1) !== '\n')) {
2419
+ source = '(?: ' + source + ')';
2420
+ strCopy = ' ' + strCopy;
2421
+ charsAdded++;
2422
+ }
2423
+ // ^(? + rx + ) is needed, in combination with some str slicing, to
2424
+ // simulate the 'y' flag.
2425
+ reCopy = new RegExp('^(?:' + source + ')', flags);
2426
+ }
2427
+
2428
+ if (NPCG_INCLUDED) {
2429
+ reCopy = new RegExp('^' + source + '$(?!\\s)', flags);
2430
+ }
2431
+ if (UPDATES_LAST_INDEX_WRONG) lastIndex = re.lastIndex;
2432
+
2433
+ match = call(nativeExec, sticky ? reCopy : re, strCopy);
2434
+
2435
+ if (sticky) {
2436
+ if (match) {
2437
+ match.input = stringSlice(match.input, charsAdded);
2438
+ match[0] = stringSlice(match[0], charsAdded);
2439
+ match.index = re.lastIndex;
2440
+ re.lastIndex += match[0].length;
2441
+ } else re.lastIndex = 0;
2442
+ } else if (UPDATES_LAST_INDEX_WRONG && match) {
2443
+ re.lastIndex = re.global ? match.index + match[0].length : lastIndex;
2444
+ }
2445
+ if (NPCG_INCLUDED && match && match.length > 1) {
2446
+ // Fix browsers whose `exec` methods don't consistently return `undefined`
2447
+ // for NPCG, like IE8. NOTE: This doesn' work for /(.?)?/
2448
+ call(nativeReplace, match[0], reCopy, function () {
2449
+ for (i = 1; i < arguments.length - 2; i++) {
2450
+ if (arguments[i] === undefined) match[i] = undefined;
2451
+ }
2452
+ });
2453
+ }
2454
+
2455
+ if (match && groups) {
2456
+ match.groups = object = create(null);
2457
+ for (i = 0; i < groups.length; i++) {
2458
+ group = groups[i];
2459
+ object[group[0]] = match[group[1]];
2460
+ }
2461
+ }
2462
+
2463
+ return match;
2464
+ };
2465
+ }
2466
+
2467
+ module.exports = patchedExec;
2468
+
2469
+
1709
2470
  /***/ }),
1710
2471
 
1711
2472
  /***/ "94ca":
1712
2473
  /***/ (function(module, exports, __webpack_require__) {
1713
2474
 
1714
2475
  var fails = __webpack_require__("d039");
2476
+ var isCallable = __webpack_require__("1626");
1715
2477
 
1716
2478
  var replacement = /#|\.prototype\./;
1717
2479
 
@@ -1719,7 +2481,7 @@ var isForced = function (feature, detection) {
1719
2481
  var value = data[normalize(feature)];
1720
2482
  return value == POLYFILL ? true
1721
2483
  : value == NATIVE ? false
1722
- : typeof detection == 'function' ? fails(detection)
2484
+ : isCallable(detection) ? fails(detection)
1723
2485
  : !!detection;
1724
2486
  };
1725
2487
 
@@ -1827,9 +2589,9 @@ var runtime = (function (exports) {
1827
2589
  // This is a polyfill for %IteratorPrototype% for environments that
1828
2590
  // don't natively support it.
1829
2591
  var IteratorPrototype = {};
1830
- IteratorPrototype[iteratorSymbol] = function () {
2592
+ define(IteratorPrototype, iteratorSymbol, function () {
1831
2593
  return this;
1832
- };
2594
+ });
1833
2595
 
1834
2596
  var getProto = Object.getPrototypeOf;
1835
2597
  var NativeIteratorPrototype = getProto && getProto(getProto(values([])));
@@ -1843,8 +2605,9 @@ var runtime = (function (exports) {
1843
2605
 
1844
2606
  var Gp = GeneratorFunctionPrototype.prototype =
1845
2607
  Generator.prototype = Object.create(IteratorPrototype);
1846
- GeneratorFunction.prototype = Gp.constructor = GeneratorFunctionPrototype;
1847
- GeneratorFunctionPrototype.constructor = GeneratorFunction;
2608
+ GeneratorFunction.prototype = GeneratorFunctionPrototype;
2609
+ define(Gp, "constructor", GeneratorFunctionPrototype);
2610
+ define(GeneratorFunctionPrototype, "constructor", GeneratorFunction);
1848
2611
  GeneratorFunction.displayName = define(
1849
2612
  GeneratorFunctionPrototype,
1850
2613
  toStringTagSymbol,
@@ -1958,9 +2721,9 @@ var runtime = (function (exports) {
1958
2721
  }
1959
2722
 
1960
2723
  defineIteratorMethods(AsyncIterator.prototype);
1961
- AsyncIterator.prototype[asyncIteratorSymbol] = function () {
2724
+ define(AsyncIterator.prototype, asyncIteratorSymbol, function () {
1962
2725
  return this;
1963
- };
2726
+ });
1964
2727
  exports.AsyncIterator = AsyncIterator;
1965
2728
 
1966
2729
  // Note that simple async functions are implemented on top of
@@ -2153,13 +2916,13 @@ var runtime = (function (exports) {
2153
2916
  // iterator prototype chain incorrectly implement this, causing the Generator
2154
2917
  // object to not be returned from this call. This ensures that doesn't happen.
2155
2918
  // See https://github.com/facebook/regenerator/issues/274 for more details.
2156
- Gp[iteratorSymbol] = function() {
2919
+ define(Gp, iteratorSymbol, function() {
2157
2920
  return this;
2158
- };
2921
+ });
2159
2922
 
2160
- Gp.toString = function() {
2923
+ define(Gp, "toString", function() {
2161
2924
  return "[object Generator]";
2162
- };
2925
+ });
2163
2926
 
2164
2927
  function pushTryEntry(locs) {
2165
2928
  var entry = { tryLoc: locs[0] };
@@ -2478,17 +3241,43 @@ try {
2478
3241
  } catch (accidentalStrictMode) {
2479
3242
  // This module should not be running in strict mode, so the above
2480
3243
  // assignment should always work unless something is misconfigured. Just
2481
- // in case runtime.js accidentally runs in strict mode, we can escape
3244
+ // in case runtime.js accidentally runs in strict mode, in modern engines
3245
+ // we can explicitly access globalThis. In older engines we can escape
2482
3246
  // strict mode using a global Function call. This could conceivably fail
2483
3247
  // if a Content Security Policy forbids using Function, but in that case
2484
3248
  // the proper solution is to fix the accidental strict mode problem. If
2485
3249
  // you've misconfigured your bundler to force strict mode and applied a
2486
3250
  // CSP to forbid Function, and you're not willing to fix either of those
2487
3251
  // problems, please detail your unique predicament in a GitHub issue.
2488
- Function("r", "regeneratorRuntime = r")(runtime);
3252
+ if (typeof globalThis === "object") {
3253
+ globalThis.regeneratorRuntime = runtime;
3254
+ } else {
3255
+ Function("r", "regeneratorRuntime = r")(runtime);
3256
+ }
2489
3257
  }
2490
3258
 
2491
3259
 
3260
+ /***/ }),
3261
+
3262
+ /***/ "9a1f":
3263
+ /***/ (function(module, exports, __webpack_require__) {
3264
+
3265
+ var global = __webpack_require__("da84");
3266
+ var call = __webpack_require__("c65b");
3267
+ var aCallable = __webpack_require__("59ed");
3268
+ var anObject = __webpack_require__("825a");
3269
+ var tryToString = __webpack_require__("0d51");
3270
+ var getIteratorMethod = __webpack_require__("35a1");
3271
+
3272
+ var TypeError = global.TypeError;
3273
+
3274
+ module.exports = function (argument, usingIterator) {
3275
+ var iteratorMethod = arguments.length < 2 ? getIteratorMethod(argument) : usingIterator;
3276
+ if (aCallable(iteratorMethod)) return anObject(call(iteratorMethod, argument));
3277
+ throw TypeError(tryToString(argument) + ' is not iterable');
3278
+ };
3279
+
3280
+
2492
3281
  /***/ }),
2493
3282
 
2494
3283
  /***/ "9bdd":
@@ -2501,10 +3290,8 @@ var iteratorClose = __webpack_require__("2a62");
2501
3290
  module.exports = function (iterator, fn, value, ENTRIES) {
2502
3291
  try {
2503
3292
  return ENTRIES ? fn(anObject(value)[0], value[1]) : fn(value);
2504
- // 7.4.6 IteratorClose(iterator, completion)
2505
3293
  } catch (error) {
2506
- iteratorClose(iterator);
2507
- throw error;
3294
+ iteratorClose(iterator, 'throw', error);
2508
3295
  }
2509
3296
  };
2510
3297
 
@@ -2514,21 +3301,45 @@ module.exports = function (iterator, fn, value, ENTRIES) {
2514
3301
  /***/ "9bf2":
2515
3302
  /***/ (function(module, exports, __webpack_require__) {
2516
3303
 
3304
+ var global = __webpack_require__("da84");
2517
3305
  var DESCRIPTORS = __webpack_require__("83ab");
2518
3306
  var IE8_DOM_DEFINE = __webpack_require__("0cfb");
3307
+ var V8_PROTOTYPE_DEFINE_BUG = __webpack_require__("aed9");
2519
3308
  var anObject = __webpack_require__("825a");
2520
- var toPrimitive = __webpack_require__("c04e");
3309
+ var toPropertyKey = __webpack_require__("a04b");
2521
3310
 
2522
- var nativeDefineProperty = Object.defineProperty;
3311
+ var TypeError = global.TypeError;
3312
+ // eslint-disable-next-line es/no-object-defineproperty -- safe
3313
+ var $defineProperty = Object.defineProperty;
3314
+ // eslint-disable-next-line es/no-object-getownpropertydescriptor -- safe
3315
+ var $getOwnPropertyDescriptor = Object.getOwnPropertyDescriptor;
3316
+ var ENUMERABLE = 'enumerable';
3317
+ var CONFIGURABLE = 'configurable';
3318
+ var WRITABLE = 'writable';
2523
3319
 
2524
3320
  // `Object.defineProperty` method
2525
3321
  // https://tc39.es/ecma262/#sec-object.defineproperty
2526
- exports.f = DESCRIPTORS ? nativeDefineProperty : function defineProperty(O, P, Attributes) {
3322
+ exports.f = DESCRIPTORS ? V8_PROTOTYPE_DEFINE_BUG ? function defineProperty(O, P, Attributes) {
3323
+ anObject(O);
3324
+ P = toPropertyKey(P);
3325
+ anObject(Attributes);
3326
+ if (typeof O === 'function' && P === 'prototype' && 'value' in Attributes && WRITABLE in Attributes && !Attributes[WRITABLE]) {
3327
+ var current = $getOwnPropertyDescriptor(O, P);
3328
+ if (current && current[WRITABLE]) {
3329
+ O[P] = Attributes.value;
3330
+ Attributes = {
3331
+ configurable: CONFIGURABLE in Attributes ? Attributes[CONFIGURABLE] : current[CONFIGURABLE],
3332
+ enumerable: ENUMERABLE in Attributes ? Attributes[ENUMERABLE] : current[ENUMERABLE],
3333
+ writable: false
3334
+ };
3335
+ }
3336
+ } return $defineProperty(O, P, Attributes);
3337
+ } : $defineProperty : function defineProperty(O, P, Attributes) {
2527
3338
  anObject(O);
2528
- P = toPrimitive(P, true);
3339
+ P = toPropertyKey(P);
2529
3340
  anObject(Attributes);
2530
3341
  if (IE8_DOM_DEFINE) try {
2531
- return nativeDefineProperty(O, P, Attributes);
3342
+ return $defineProperty(O, P, Attributes);
2532
3343
  } catch (error) { /* empty */ }
2533
3344
  if ('get' in Attributes || 'set' in Attributes) throw TypeError('Accessors not supported');
2534
3345
  if ('value' in Attributes) O[P] = Attributes.value;
@@ -2551,15 +3362,68 @@ var Iterators = __webpack_require__("3f8c");
2551
3362
 
2552
3363
  var returnThis = function () { return this; };
2553
3364
 
2554
- module.exports = function (IteratorConstructor, NAME, next) {
3365
+ module.exports = function (IteratorConstructor, NAME, next, ENUMERABLE_NEXT) {
2555
3366
  var TO_STRING_TAG = NAME + ' Iterator';
2556
- IteratorConstructor.prototype = create(IteratorPrototype, { next: createPropertyDescriptor(1, next) });
3367
+ IteratorConstructor.prototype = create(IteratorPrototype, { next: createPropertyDescriptor(+!ENUMERABLE_NEXT, next) });
2557
3368
  setToStringTag(IteratorConstructor, TO_STRING_TAG, false, true);
2558
3369
  Iterators[TO_STRING_TAG] = returnThis;
2559
3370
  return IteratorConstructor;
2560
3371
  };
2561
3372
 
2562
3373
 
3374
+ /***/ }),
3375
+
3376
+ /***/ "9f7f":
3377
+ /***/ (function(module, exports, __webpack_require__) {
3378
+
3379
+ var fails = __webpack_require__("d039");
3380
+ var global = __webpack_require__("da84");
3381
+
3382
+ // babel-minify and Closure Compiler transpiles RegExp('a', 'y') -> /a/y and it causes SyntaxError
3383
+ var $RegExp = global.RegExp;
3384
+
3385
+ var UNSUPPORTED_Y = fails(function () {
3386
+ var re = $RegExp('a', 'y');
3387
+ re.lastIndex = 2;
3388
+ return re.exec('abcd') != null;
3389
+ });
3390
+
3391
+ // UC Browser bug
3392
+ // https://github.com/zloirock/core-js/issues/1008
3393
+ var MISSED_STICKY = UNSUPPORTED_Y || fails(function () {
3394
+ return !$RegExp('a', 'y').sticky;
3395
+ });
3396
+
3397
+ var BROKEN_CARET = UNSUPPORTED_Y || fails(function () {
3398
+ // https://bugzilla.mozilla.org/show_bug.cgi?id=773687
3399
+ var re = $RegExp('^r', 'gy');
3400
+ re.lastIndex = 2;
3401
+ return re.exec('str') != null;
3402
+ });
3403
+
3404
+ module.exports = {
3405
+ BROKEN_CARET: BROKEN_CARET,
3406
+ MISSED_STICKY: MISSED_STICKY,
3407
+ UNSUPPORTED_Y: UNSUPPORTED_Y
3408
+ };
3409
+
3410
+
3411
+ /***/ }),
3412
+
3413
+ /***/ "a04b":
3414
+ /***/ (function(module, exports, __webpack_require__) {
3415
+
3416
+ var toPrimitive = __webpack_require__("c04e");
3417
+ var isSymbol = __webpack_require__("d9b5");
3418
+
3419
+ // `ToPropertyKey` abstract operation
3420
+ // https://tc39.es/ecma262/#sec-topropertykey
3421
+ module.exports = function (argument) {
3422
+ var key = toPrimitive(argument, 'string');
3423
+ return isSymbol(key) ? key : key + '';
3424
+ };
3425
+
3426
+
2563
3427
  /***/ }),
2564
3428
 
2565
3429
  /***/ "a4b4":
@@ -2580,18 +3444,24 @@ module.exports = /web0s(?!.*chrome)/i.test(userAgent);
2580
3444
  var $ = __webpack_require__("23e7");
2581
3445
  var global = __webpack_require__("da84");
2582
3446
  var getBuiltIn = __webpack_require__("d066");
3447
+ var apply = __webpack_require__("2ba4");
3448
+ var call = __webpack_require__("c65b");
3449
+ var uncurryThis = __webpack_require__("e330");
2583
3450
  var IS_PURE = __webpack_require__("c430");
2584
3451
  var DESCRIPTORS = __webpack_require__("83ab");
2585
3452
  var NATIVE_SYMBOL = __webpack_require__("4930");
2586
- var USE_SYMBOL_AS_UID = __webpack_require__("fdbf");
2587
3453
  var fails = __webpack_require__("d039");
2588
- var has = __webpack_require__("5135");
3454
+ var hasOwn = __webpack_require__("1a2d");
2589
3455
  var isArray = __webpack_require__("e8b5");
3456
+ var isCallable = __webpack_require__("1626");
2590
3457
  var isObject = __webpack_require__("861d");
3458
+ var isPrototypeOf = __webpack_require__("3a9b");
3459
+ var isSymbol = __webpack_require__("d9b5");
2591
3460
  var anObject = __webpack_require__("825a");
2592
3461
  var toObject = __webpack_require__("7b0b");
2593
3462
  var toIndexedObject = __webpack_require__("fc6a");
2594
- var toPrimitive = __webpack_require__("c04e");
3463
+ var toPropertyKey = __webpack_require__("a04b");
3464
+ var $toString = __webpack_require__("577e");
2595
3465
  var createPropertyDescriptor = __webpack_require__("5c6c");
2596
3466
  var nativeObjectCreate = __webpack_require__("7c73");
2597
3467
  var objectKeys = __webpack_require__("df75");
@@ -2600,8 +3470,9 @@ var getOwnPropertyNamesExternal = __webpack_require__("057f");
2600
3470
  var getOwnPropertySymbolsModule = __webpack_require__("7418");
2601
3471
  var getOwnPropertyDescriptorModule = __webpack_require__("06cf");
2602
3472
  var definePropertyModule = __webpack_require__("9bf2");
3473
+ var definePropertiesModule = __webpack_require__("37e8");
2603
3474
  var propertyIsEnumerableModule = __webpack_require__("d1e7");
2604
- var createNonEnumerableProperty = __webpack_require__("9112");
3475
+ var arraySlice = __webpack_require__("f36a");
2605
3476
  var redefine = __webpack_require__("6eeb");
2606
3477
  var shared = __webpack_require__("5692");
2607
3478
  var sharedKey = __webpack_require__("f772");
@@ -2618,21 +3489,28 @@ var HIDDEN = sharedKey('hidden');
2618
3489
  var SYMBOL = 'Symbol';
2619
3490
  var PROTOTYPE = 'prototype';
2620
3491
  var TO_PRIMITIVE = wellKnownSymbol('toPrimitive');
3492
+
2621
3493
  var setInternalState = InternalStateModule.set;
2622
3494
  var getInternalState = InternalStateModule.getterFor(SYMBOL);
3495
+
2623
3496
  var ObjectPrototype = Object[PROTOTYPE];
2624
3497
  var $Symbol = global.Symbol;
3498
+ var SymbolPrototype = $Symbol && $Symbol[PROTOTYPE];
3499
+ var TypeError = global.TypeError;
3500
+ var QObject = global.QObject;
2625
3501
  var $stringify = getBuiltIn('JSON', 'stringify');
2626
3502
  var nativeGetOwnPropertyDescriptor = getOwnPropertyDescriptorModule.f;
2627
3503
  var nativeDefineProperty = definePropertyModule.f;
2628
3504
  var nativeGetOwnPropertyNames = getOwnPropertyNamesExternal.f;
2629
3505
  var nativePropertyIsEnumerable = propertyIsEnumerableModule.f;
3506
+ var push = uncurryThis([].push);
3507
+
2630
3508
  var AllSymbols = shared('symbols');
2631
3509
  var ObjectPrototypeSymbols = shared('op-symbols');
2632
3510
  var StringToSymbolRegistry = shared('string-to-symbol-registry');
2633
3511
  var SymbolToStringRegistry = shared('symbol-to-string-registry');
2634
3512
  var WellKnownSymbolsStore = shared('wks');
2635
- var QObject = global.QObject;
3513
+
2636
3514
  // Don't use setters in Qt Script, https://github.com/zloirock/core-js/issues/173
2637
3515
  var USE_SETTER = !QObject || !QObject[PROTOTYPE] || !QObject[PROTOTYPE].findChild;
2638
3516
 
@@ -2651,7 +3529,7 @@ var setSymbolDescriptor = DESCRIPTORS && fails(function () {
2651
3529
  } : nativeDefineProperty;
2652
3530
 
2653
3531
  var wrap = function (tag, description) {
2654
- var symbol = AllSymbols[tag] = nativeObjectCreate($Symbol[PROTOTYPE]);
3532
+ var symbol = AllSymbols[tag] = nativeObjectCreate(SymbolPrototype);
2655
3533
  setInternalState(symbol, {
2656
3534
  type: SYMBOL,
2657
3535
  tag: tag,
@@ -2661,23 +3539,17 @@ var wrap = function (tag, description) {
2661
3539
  return symbol;
2662
3540
  };
2663
3541
 
2664
- var isSymbol = USE_SYMBOL_AS_UID ? function (it) {
2665
- return typeof it == 'symbol';
2666
- } : function (it) {
2667
- return Object(it) instanceof $Symbol;
2668
- };
2669
-
2670
3542
  var $defineProperty = function defineProperty(O, P, Attributes) {
2671
3543
  if (O === ObjectPrototype) $defineProperty(ObjectPrototypeSymbols, P, Attributes);
2672
3544
  anObject(O);
2673
- var key = toPrimitive(P, true);
3545
+ var key = toPropertyKey(P);
2674
3546
  anObject(Attributes);
2675
- if (has(AllSymbols, key)) {
3547
+ if (hasOwn(AllSymbols, key)) {
2676
3548
  if (!Attributes.enumerable) {
2677
- if (!has(O, HIDDEN)) nativeDefineProperty(O, HIDDEN, createPropertyDescriptor(1, {}));
3549
+ if (!hasOwn(O, HIDDEN)) nativeDefineProperty(O, HIDDEN, createPropertyDescriptor(1, {}));
2678
3550
  O[HIDDEN][key] = true;
2679
3551
  } else {
2680
- if (has(O, HIDDEN) && O[HIDDEN][key]) O[HIDDEN][key] = false;
3552
+ if (hasOwn(O, HIDDEN) && O[HIDDEN][key]) O[HIDDEN][key] = false;
2681
3553
  Attributes = nativeObjectCreate(Attributes, { enumerable: createPropertyDescriptor(0, false) });
2682
3554
  } return setSymbolDescriptor(O, key, Attributes);
2683
3555
  } return nativeDefineProperty(O, key, Attributes);
@@ -2688,7 +3560,7 @@ var $defineProperties = function defineProperties(O, Properties) {
2688
3560
  var properties = toIndexedObject(Properties);
2689
3561
  var keys = objectKeys(properties).concat($getOwnPropertySymbols(properties));
2690
3562
  $forEach(keys, function (key) {
2691
- if (!DESCRIPTORS || $propertyIsEnumerable.call(properties, key)) $defineProperty(O, key, properties[key]);
3563
+ if (!DESCRIPTORS || call($propertyIsEnumerable, properties, key)) $defineProperty(O, key, properties[key]);
2692
3564
  });
2693
3565
  return O;
2694
3566
  };
@@ -2698,18 +3570,19 @@ var $create = function create(O, Properties) {
2698
3570
  };
2699
3571
 
2700
3572
  var $propertyIsEnumerable = function propertyIsEnumerable(V) {
2701
- var P = toPrimitive(V, true);
2702
- var enumerable = nativePropertyIsEnumerable.call(this, P);
2703
- if (this === ObjectPrototype && has(AllSymbols, P) && !has(ObjectPrototypeSymbols, P)) return false;
2704
- return enumerable || !has(this, P) || !has(AllSymbols, P) || has(this, HIDDEN) && this[HIDDEN][P] ? enumerable : true;
3573
+ var P = toPropertyKey(V);
3574
+ var enumerable = call(nativePropertyIsEnumerable, this, P);
3575
+ if (this === ObjectPrototype && hasOwn(AllSymbols, P) && !hasOwn(ObjectPrototypeSymbols, P)) return false;
3576
+ return enumerable || !hasOwn(this, P) || !hasOwn(AllSymbols, P) || hasOwn(this, HIDDEN) && this[HIDDEN][P]
3577
+ ? enumerable : true;
2705
3578
  };
2706
3579
 
2707
3580
  var $getOwnPropertyDescriptor = function getOwnPropertyDescriptor(O, P) {
2708
3581
  var it = toIndexedObject(O);
2709
- var key = toPrimitive(P, true);
2710
- if (it === ObjectPrototype && has(AllSymbols, key) && !has(ObjectPrototypeSymbols, key)) return;
3582
+ var key = toPropertyKey(P);
3583
+ if (it === ObjectPrototype && hasOwn(AllSymbols, key) && !hasOwn(ObjectPrototypeSymbols, key)) return;
2711
3584
  var descriptor = nativeGetOwnPropertyDescriptor(it, key);
2712
- if (descriptor && has(AllSymbols, key) && !(has(it, HIDDEN) && it[HIDDEN][key])) {
3585
+ if (descriptor && hasOwn(AllSymbols, key) && !(hasOwn(it, HIDDEN) && it[HIDDEN][key])) {
2713
3586
  descriptor.enumerable = true;
2714
3587
  }
2715
3588
  return descriptor;
@@ -2719,7 +3592,7 @@ var $getOwnPropertyNames = function getOwnPropertyNames(O) {
2719
3592
  var names = nativeGetOwnPropertyNames(toIndexedObject(O));
2720
3593
  var result = [];
2721
3594
  $forEach(names, function (key) {
2722
- if (!has(AllSymbols, key) && !has(hiddenKeys, key)) result.push(key);
3595
+ if (!hasOwn(AllSymbols, key) && !hasOwn(hiddenKeys, key)) push(result, key);
2723
3596
  });
2724
3597
  return result;
2725
3598
  };
@@ -2729,8 +3602,8 @@ var $getOwnPropertySymbols = function getOwnPropertySymbols(O) {
2729
3602
  var names = nativeGetOwnPropertyNames(IS_OBJECT_PROTOTYPE ? ObjectPrototypeSymbols : toIndexedObject(O));
2730
3603
  var result = [];
2731
3604
  $forEach(names, function (key) {
2732
- if (has(AllSymbols, key) && (!IS_OBJECT_PROTOTYPE || has(ObjectPrototype, key))) {
2733
- result.push(AllSymbols[key]);
3605
+ if (hasOwn(AllSymbols, key) && (!IS_OBJECT_PROTOTYPE || hasOwn(ObjectPrototype, key))) {
3606
+ push(result, AllSymbols[key]);
2734
3607
  }
2735
3608
  });
2736
3609
  return result;
@@ -2740,19 +3613,21 @@ var $getOwnPropertySymbols = function getOwnPropertySymbols(O) {
2740
3613
  // https://tc39.es/ecma262/#sec-symbol-constructor
2741
3614
  if (!NATIVE_SYMBOL) {
2742
3615
  $Symbol = function Symbol() {
2743
- if (this instanceof $Symbol) throw TypeError('Symbol is not a constructor');
2744
- var description = !arguments.length || arguments[0] === undefined ? undefined : String(arguments[0]);
3616
+ if (isPrototypeOf(SymbolPrototype, this)) throw TypeError('Symbol is not a constructor');
3617
+ var description = !arguments.length || arguments[0] === undefined ? undefined : $toString(arguments[0]);
2745
3618
  var tag = uid(description);
2746
3619
  var setter = function (value) {
2747
- if (this === ObjectPrototype) setter.call(ObjectPrototypeSymbols, value);
2748
- if (has(this, HIDDEN) && has(this[HIDDEN], tag)) this[HIDDEN][tag] = false;
3620
+ if (this === ObjectPrototype) call(setter, ObjectPrototypeSymbols, value);
3621
+ if (hasOwn(this, HIDDEN) && hasOwn(this[HIDDEN], tag)) this[HIDDEN][tag] = false;
2749
3622
  setSymbolDescriptor(this, tag, createPropertyDescriptor(1, value));
2750
3623
  };
2751
3624
  if (DESCRIPTORS && USE_SETTER) setSymbolDescriptor(ObjectPrototype, tag, { configurable: true, set: setter });
2752
3625
  return wrap(tag, description);
2753
3626
  };
2754
3627
 
2755
- redefine($Symbol[PROTOTYPE], 'toString', function toString() {
3628
+ SymbolPrototype = $Symbol[PROTOTYPE];
3629
+
3630
+ redefine(SymbolPrototype, 'toString', function toString() {
2756
3631
  return getInternalState(this).tag;
2757
3632
  });
2758
3633
 
@@ -2762,6 +3637,7 @@ if (!NATIVE_SYMBOL) {
2762
3637
 
2763
3638
  propertyIsEnumerableModule.f = $propertyIsEnumerable;
2764
3639
  definePropertyModule.f = $defineProperty;
3640
+ definePropertiesModule.f = $defineProperties;
2765
3641
  getOwnPropertyDescriptorModule.f = $getOwnPropertyDescriptor;
2766
3642
  getOwnPropertyNamesModule.f = getOwnPropertyNamesExternal.f = $getOwnPropertyNames;
2767
3643
  getOwnPropertySymbolsModule.f = $getOwnPropertySymbols;
@@ -2772,7 +3648,7 @@ if (!NATIVE_SYMBOL) {
2772
3648
 
2773
3649
  if (DESCRIPTORS) {
2774
3650
  // https://github.com/tc39/proposal-Symbol-description
2775
- nativeDefineProperty($Symbol[PROTOTYPE], 'description', {
3651
+ nativeDefineProperty(SymbolPrototype, 'description', {
2776
3652
  configurable: true,
2777
3653
  get: function description() {
2778
3654
  return getInternalState(this).description;
@@ -2796,8 +3672,8 @@ $({ target: SYMBOL, stat: true, forced: !NATIVE_SYMBOL }, {
2796
3672
  // `Symbol.for` method
2797
3673
  // https://tc39.es/ecma262/#sec-symbol.for
2798
3674
  'for': function (key) {
2799
- var string = String(key);
2800
- if (has(StringToSymbolRegistry, string)) return StringToSymbolRegistry[string];
3675
+ var string = $toString(key);
3676
+ if (hasOwn(StringToSymbolRegistry, string)) return StringToSymbolRegistry[string];
2801
3677
  var symbol = $Symbol(string);
2802
3678
  StringToSymbolRegistry[string] = symbol;
2803
3679
  SymbolToStringRegistry[symbol] = string;
@@ -2807,7 +3683,7 @@ $({ target: SYMBOL, stat: true, forced: !NATIVE_SYMBOL }, {
2807
3683
  // https://tc39.es/ecma262/#sec-symbol.keyfor
2808
3684
  keyFor: function keyFor(sym) {
2809
3685
  if (!isSymbol(sym)) throw TypeError(sym + ' is not a symbol');
2810
- if (has(SymbolToStringRegistry, sym)) return SymbolToStringRegistry[sym];
3686
+ if (hasOwn(SymbolToStringRegistry, sym)) return SymbolToStringRegistry[sym];
2811
3687
  },
2812
3688
  useSetter: function () { USE_SETTER = true; },
2813
3689
  useSimple: function () { USE_SETTER = false; }
@@ -2861,26 +3737,28 @@ if ($stringify) {
2861
3737
  $({ target: 'JSON', stat: true, forced: FORCED_JSON_STRINGIFY }, {
2862
3738
  // eslint-disable-next-line no-unused-vars -- required for `.length`
2863
3739
  stringify: function stringify(it, replacer, space) {
2864
- var args = [it];
2865
- var index = 1;
2866
- var $replacer;
2867
- while (arguments.length > index) args.push(arguments[index++]);
2868
- $replacer = replacer;
3740
+ var args = arraySlice(arguments);
3741
+ var $replacer = replacer;
2869
3742
  if (!isObject(replacer) && it === undefined || isSymbol(it)) return; // IE8 returns string on undefined
2870
3743
  if (!isArray(replacer)) replacer = function (key, value) {
2871
- if (typeof $replacer == 'function') value = $replacer.call(this, key, value);
3744
+ if (isCallable($replacer)) value = call($replacer, this, key, value);
2872
3745
  if (!isSymbol(value)) return value;
2873
3746
  };
2874
3747
  args[1] = replacer;
2875
- return $stringify.apply(null, args);
3748
+ return apply($stringify, null, args);
2876
3749
  }
2877
3750
  });
2878
3751
  }
2879
3752
 
2880
3753
  // `Symbol.prototype[@@toPrimitive]` method
2881
3754
  // https://tc39.es/ecma262/#sec-symbol.prototype-@@toprimitive
2882
- if (!$Symbol[PROTOTYPE][TO_PRIMITIVE]) {
2883
- createNonEnumerableProperty($Symbol[PROTOTYPE], TO_PRIMITIVE, $Symbol[PROTOTYPE].valueOf);
3755
+ if (!SymbolPrototype[TO_PRIMITIVE]) {
3756
+ var valueOf = SymbolPrototype.valueOf;
3757
+ // eslint-disable-next-line no-unused-vars -- required for .length
3758
+ redefine(SymbolPrototype, TO_PRIMITIVE, function (hint) {
3759
+ // TODO: improve hint logic
3760
+ return call(valueOf, this);
3761
+ });
2884
3762
  }
2885
3763
  // `Symbol.prototype[@@toStringTag]` property
2886
3764
  // https://tc39.es/ecma262/#sec-symbol.prototype-@@tostringtag
@@ -2899,6 +3777,7 @@ var from = __webpack_require__("4df4");
2899
3777
  var checkCorrectnessOfIteration = __webpack_require__("1c7e");
2900
3778
 
2901
3779
  var INCORRECT_ITERATION = !checkCorrectnessOfIteration(function (iterable) {
3780
+ // eslint-disable-next-line es/no-array-from -- required for testing
2902
3781
  Array.from(iterable);
2903
3782
  });
2904
3783
 
@@ -2911,16 +3790,155 @@ $({ target: 'Array', stat: true, forced: INCORRECT_ITERATION }, {
2911
3790
 
2912
3791
  /***/ }),
2913
3792
 
2914
- /***/ "a691":
2915
- /***/ (function(module, exports) {
3793
+ /***/ "a9e3":
3794
+ /***/ (function(module, exports, __webpack_require__) {
2916
3795
 
2917
- var ceil = Math.ceil;
2918
- var floor = Math.floor;
3796
+ "use strict";
2919
3797
 
2920
- // `ToInteger` abstract operation
2921
- // https://tc39.es/ecma262/#sec-tointeger
2922
- module.exports = function (argument) {
2923
- return isNaN(argument = +argument) ? 0 : (argument > 0 ? floor : ceil)(argument);
3798
+ var DESCRIPTORS = __webpack_require__("83ab");
3799
+ var global = __webpack_require__("da84");
3800
+ var uncurryThis = __webpack_require__("e330");
3801
+ var isForced = __webpack_require__("94ca");
3802
+ var redefine = __webpack_require__("6eeb");
3803
+ var hasOwn = __webpack_require__("1a2d");
3804
+ var inheritIfRequired = __webpack_require__("7156");
3805
+ var isPrototypeOf = __webpack_require__("3a9b");
3806
+ var isSymbol = __webpack_require__("d9b5");
3807
+ var toPrimitive = __webpack_require__("c04e");
3808
+ var fails = __webpack_require__("d039");
3809
+ var getOwnPropertyNames = __webpack_require__("241c").f;
3810
+ var getOwnPropertyDescriptor = __webpack_require__("06cf").f;
3811
+ var defineProperty = __webpack_require__("9bf2").f;
3812
+ var thisNumberValue = __webpack_require__("408a");
3813
+ var trim = __webpack_require__("58a8").trim;
3814
+
3815
+ var NUMBER = 'Number';
3816
+ var NativeNumber = global[NUMBER];
3817
+ var NumberPrototype = NativeNumber.prototype;
3818
+ var TypeError = global.TypeError;
3819
+ var arraySlice = uncurryThis(''.slice);
3820
+ var charCodeAt = uncurryThis(''.charCodeAt);
3821
+
3822
+ // `ToNumeric` abstract operation
3823
+ // https://tc39.es/ecma262/#sec-tonumeric
3824
+ var toNumeric = function (value) {
3825
+ var primValue = toPrimitive(value, 'number');
3826
+ return typeof primValue == 'bigint' ? primValue : toNumber(primValue);
3827
+ };
3828
+
3829
+ // `ToNumber` abstract operation
3830
+ // https://tc39.es/ecma262/#sec-tonumber
3831
+ var toNumber = function (argument) {
3832
+ var it = toPrimitive(argument, 'number');
3833
+ var first, third, radix, maxCode, digits, length, index, code;
3834
+ if (isSymbol(it)) throw TypeError('Cannot convert a Symbol value to a number');
3835
+ if (typeof it == 'string' && it.length > 2) {
3836
+ it = trim(it);
3837
+ first = charCodeAt(it, 0);
3838
+ if (first === 43 || first === 45) {
3839
+ third = charCodeAt(it, 2);
3840
+ if (third === 88 || third === 120) return NaN; // Number('+0x1') should be NaN, old V8 fix
3841
+ } else if (first === 48) {
3842
+ switch (charCodeAt(it, 1)) {
3843
+ case 66: case 98: radix = 2; maxCode = 49; break; // fast equal of /^0b[01]+$/i
3844
+ case 79: case 111: radix = 8; maxCode = 55; break; // fast equal of /^0o[0-7]+$/i
3845
+ default: return +it;
3846
+ }
3847
+ digits = arraySlice(it, 2);
3848
+ length = digits.length;
3849
+ for (index = 0; index < length; index++) {
3850
+ code = charCodeAt(digits, index);
3851
+ // parseInt parses a string to a first unavailable symbol
3852
+ // but ToNumber should return NaN if a string contains unavailable symbols
3853
+ if (code < 48 || code > maxCode) return NaN;
3854
+ } return parseInt(digits, radix);
3855
+ }
3856
+ } return +it;
3857
+ };
3858
+
3859
+ // `Number` constructor
3860
+ // https://tc39.es/ecma262/#sec-number-constructor
3861
+ if (isForced(NUMBER, !NativeNumber(' 0o1') || !NativeNumber('0b1') || NativeNumber('+0x1'))) {
3862
+ var NumberWrapper = function Number(value) {
3863
+ var n = arguments.length < 1 ? 0 : NativeNumber(toNumeric(value));
3864
+ var dummy = this;
3865
+ // check on 1..constructor(foo) case
3866
+ return isPrototypeOf(NumberPrototype, dummy) && fails(function () { thisNumberValue(dummy); })
3867
+ ? inheritIfRequired(Object(n), dummy, NumberWrapper) : n;
3868
+ };
3869
+ for (var keys = DESCRIPTORS ? getOwnPropertyNames(NativeNumber) : (
3870
+ // ES3:
3871
+ 'MAX_VALUE,MIN_VALUE,NaN,NEGATIVE_INFINITY,POSITIVE_INFINITY,' +
3872
+ // ES2015 (in case, if modules with ES2015 Number statics required before):
3873
+ 'EPSILON,MAX_SAFE_INTEGER,MIN_SAFE_INTEGER,isFinite,isInteger,isNaN,isSafeInteger,parseFloat,parseInt,' +
3874
+ // ESNext
3875
+ 'fromString,range'
3876
+ ).split(','), j = 0, key; keys.length > j; j++) {
3877
+ if (hasOwn(NativeNumber, key = keys[j]) && !hasOwn(NumberWrapper, key)) {
3878
+ defineProperty(NumberWrapper, key, getOwnPropertyDescriptor(NativeNumber, key));
3879
+ }
3880
+ }
3881
+ NumberWrapper.prototype = NumberPrototype;
3882
+ NumberPrototype.constructor = NumberWrapper;
3883
+ redefine(global, NUMBER, NumberWrapper);
3884
+ }
3885
+
3886
+
3887
+ /***/ }),
3888
+
3889
+ /***/ "ab36":
3890
+ /***/ (function(module, exports, __webpack_require__) {
3891
+
3892
+ var isObject = __webpack_require__("861d");
3893
+ var createNonEnumerableProperty = __webpack_require__("9112");
3894
+
3895
+ // `InstallErrorCause` abstract operation
3896
+ // https://tc39.es/proposal-error-cause/#sec-errorobjects-install-error-cause
3897
+ module.exports = function (O, options) {
3898
+ if (isObject(options) && 'cause' in options) {
3899
+ createNonEnumerableProperty(O, 'cause', options.cause);
3900
+ }
3901
+ };
3902
+
3903
+
3904
+ /***/ }),
3905
+
3906
+ /***/ "ac1f":
3907
+ /***/ (function(module, exports, __webpack_require__) {
3908
+
3909
+ "use strict";
3910
+
3911
+ var $ = __webpack_require__("23e7");
3912
+ var exec = __webpack_require__("9263");
3913
+
3914
+ // `RegExp.prototype.exec` method
3915
+ // https://tc39.es/ecma262/#sec-regexp.prototype.exec
3916
+ $({ target: 'RegExp', proto: true, forced: /./.exec !== exec }, {
3917
+ exec: exec
3918
+ });
3919
+
3920
+
3921
+ /***/ }),
3922
+
3923
+ /***/ "ad6d":
3924
+ /***/ (function(module, exports, __webpack_require__) {
3925
+
3926
+ "use strict";
3927
+
3928
+ var anObject = __webpack_require__("825a");
3929
+
3930
+ // `RegExp.prototype.flags` getter implementation
3931
+ // https://tc39.es/ecma262/#sec-get-regexp.prototype.flags
3932
+ module.exports = function () {
3933
+ var that = anObject(this);
3934
+ var result = '';
3935
+ if (that.global) result += 'g';
3936
+ if (that.ignoreCase) result += 'i';
3937
+ if (that.multiline) result += 'm';
3938
+ if (that.dotAll) result += 's';
3939
+ if (that.unicode) result += 'u';
3940
+ if (that.sticky) result += 'y';
3941
+ return result;
2924
3942
  };
2925
3943
 
2926
3944
 
@@ -2932,21 +3950,21 @@ module.exports = function (argument) {
2932
3950
  "use strict";
2933
3951
 
2934
3952
  var fails = __webpack_require__("d039");
3953
+ var isCallable = __webpack_require__("1626");
3954
+ var create = __webpack_require__("7c73");
2935
3955
  var getPrototypeOf = __webpack_require__("e163");
2936
- var createNonEnumerableProperty = __webpack_require__("9112");
2937
- var has = __webpack_require__("5135");
3956
+ var redefine = __webpack_require__("6eeb");
2938
3957
  var wellKnownSymbol = __webpack_require__("b622");
2939
3958
  var IS_PURE = __webpack_require__("c430");
2940
3959
 
2941
3960
  var ITERATOR = wellKnownSymbol('iterator');
2942
3961
  var BUGGY_SAFARI_ITERATORS = false;
2943
3962
 
2944
- var returnThis = function () { return this; };
2945
-
2946
3963
  // `%IteratorPrototype%` object
2947
3964
  // https://tc39.es/ecma262/#sec-%iteratorprototype%-object
2948
3965
  var IteratorPrototype, PrototypeOfArrayIteratorPrototype, arrayIterator;
2949
3966
 
3967
+ /* eslint-disable es/no-array-prototype-keys -- safe */
2950
3968
  if ([].keys) {
2951
3969
  arrayIterator = [].keys();
2952
3970
  // Safari 8 has buggy iterators w/o `next`
@@ -2964,10 +3982,14 @@ var NEW_ITERATOR_PROTOTYPE = IteratorPrototype == undefined || fails(function ()
2964
3982
  });
2965
3983
 
2966
3984
  if (NEW_ITERATOR_PROTOTYPE) IteratorPrototype = {};
3985
+ else if (IS_PURE) IteratorPrototype = create(IteratorPrototype);
2967
3986
 
2968
- // 25.1.2.1.1 %IteratorPrototype%[@@iterator]()
2969
- if ((!IS_PURE || NEW_ITERATOR_PROTOTYPE) && !has(IteratorPrototype, ITERATOR)) {
2970
- createNonEnumerableProperty(IteratorPrototype, ITERATOR, returnThis);
3987
+ // `%IteratorPrototype%[@@iterator]()` method
3988
+ // https://tc39.es/ecma262/#sec-%iteratorprototype%-@@iterator
3989
+ if (!isCallable(IteratorPrototype[ITERATOR])) {
3990
+ redefine(IteratorPrototype, ITERATOR, function () {
3991
+ return this;
3992
+ });
2971
3993
  }
2972
3994
 
2973
3995
  module.exports = {
@@ -2976,6 +3998,25 @@ module.exports = {
2976
3998
  };
2977
3999
 
2978
4000
 
4001
+ /***/ }),
4002
+
4003
+ /***/ "aed9":
4004
+ /***/ (function(module, exports, __webpack_require__) {
4005
+
4006
+ var DESCRIPTORS = __webpack_require__("83ab");
4007
+ var fails = __webpack_require__("d039");
4008
+
4009
+ // V8 ~ Chrome 36-
4010
+ // https://bugs.chromium.org/p/v8/issues/detail?id=3334
4011
+ module.exports = DESCRIPTORS && fails(function () {
4012
+ // eslint-disable-next-line es/no-object-defineproperty -- required for testing
4013
+ return Object.defineProperty(function () { /* empty */ }, 'prototype', {
4014
+ value: 42,
4015
+ writable: false
4016
+ }).prototype != 42;
4017
+ });
4018
+
4019
+
2979
4020
  /***/ }),
2980
4021
 
2981
4022
  /***/ "b041":
@@ -2999,21 +4040,24 @@ module.exports = TO_STRING_TAG_SUPPORT ? {}.toString : function toString() {
2999
4040
  /***/ (function(module, exports, __webpack_require__) {
3000
4041
 
3001
4042
  var DESCRIPTORS = __webpack_require__("83ab");
4043
+ var FUNCTION_NAME_EXISTS = __webpack_require__("5e77").EXISTS;
4044
+ var uncurryThis = __webpack_require__("e330");
3002
4045
  var defineProperty = __webpack_require__("9bf2").f;
3003
4046
 
3004
4047
  var FunctionPrototype = Function.prototype;
3005
- var FunctionPrototypeToString = FunctionPrototype.toString;
3006
- var nameRE = /^\s*function ([^ (]*)/;
4048
+ var functionToString = uncurryThis(FunctionPrototype.toString);
4049
+ var nameRE = /function\b(?:\s|\/\*[\S\s]*?\*\/|\/\/[^\n\r]*[\n\r]+)*([^\s(/]*)/;
4050
+ var regExpExec = uncurryThis(nameRE.exec);
3007
4051
  var NAME = 'name';
3008
4052
 
3009
4053
  // Function instances `.name` property
3010
4054
  // https://tc39.es/ecma262/#sec-function-instances-name
3011
- if (DESCRIPTORS && !(NAME in FunctionPrototype)) {
4055
+ if (DESCRIPTORS && !FUNCTION_NAME_EXISTS) {
3012
4056
  defineProperty(FunctionPrototype, NAME, {
3013
4057
  configurable: true,
3014
4058
  get: function () {
3015
4059
  try {
3016
- return FunctionPrototypeToString.call(this).match(nameRE)[1];
4060
+ return regExpExec(nameRE, functionToString(this))[1];
3017
4061
  } catch (error) {
3018
4062
  return '';
3019
4063
  }
@@ -3028,9 +4072,11 @@ if (DESCRIPTORS && !(NAME in FunctionPrototype)) {
3028
4072
  /***/ (function(module, exports, __webpack_require__) {
3029
4073
 
3030
4074
  var global = __webpack_require__("da84");
4075
+ var bind = __webpack_require__("0366");
3031
4076
  var getOwnPropertyDescriptor = __webpack_require__("06cf").f;
3032
4077
  var macrotask = __webpack_require__("2cf4").set;
3033
4078
  var IS_IOS = __webpack_require__("1cdc");
4079
+ var IS_IOS_PEBBLE = __webpack_require__("d4c3");
3034
4080
  var IS_WEBOS_WEBKIT = __webpack_require__("a4b4");
3035
4081
  var IS_NODE = __webpack_require__("605d");
3036
4082
 
@@ -3073,12 +4119,14 @@ if (!queueMicrotask) {
3073
4119
  node.data = toggle = !toggle;
3074
4120
  };
3075
4121
  // environments with maybe non-completely correct, but existent Promise
3076
- } else if (Promise && Promise.resolve) {
4122
+ } else if (!IS_IOS_PEBBLE && Promise && Promise.resolve) {
3077
4123
  // Promise.resolve without an argument throws an error in LG WebOS 2
3078
4124
  promise = Promise.resolve(undefined);
3079
- then = promise.then;
4125
+ // workaround of WebKit ~ iOS Safari 10.1 bug
4126
+ promise.constructor = Promise;
4127
+ then = bind(promise.then, promise);
3080
4128
  notify = function () {
3081
- then.call(promise, flush);
4129
+ then(flush);
3082
4130
  };
3083
4131
  // Node.js without promises
3084
4132
  } else if (IS_NODE) {
@@ -3092,9 +4140,10 @@ if (!queueMicrotask) {
3092
4140
  // - onreadystatechange
3093
4141
  // - setTimeout
3094
4142
  } else {
4143
+ // strange IE + webpack dev server bug - use .bind(global)
4144
+ macrotask = bind(macrotask, global);
3095
4145
  notify = function () {
3096
- // strange IE + webpack dev server bug - use .call(global)
3097
- macrotask.call(global, flush);
4146
+ macrotask(flush);
3098
4147
  };
3099
4148
  }
3100
4149
  }
@@ -3116,21 +4165,25 @@ module.exports = queueMicrotask || function (fn) {
3116
4165
 
3117
4166
  var global = __webpack_require__("da84");
3118
4167
  var shared = __webpack_require__("5692");
3119
- var has = __webpack_require__("5135");
4168
+ var hasOwn = __webpack_require__("1a2d");
3120
4169
  var uid = __webpack_require__("90e3");
3121
4170
  var NATIVE_SYMBOL = __webpack_require__("4930");
3122
4171
  var USE_SYMBOL_AS_UID = __webpack_require__("fdbf");
3123
4172
 
3124
4173
  var WellKnownSymbolsStore = shared('wks');
3125
4174
  var Symbol = global.Symbol;
4175
+ var symbolFor = Symbol && Symbol['for'];
3126
4176
  var createWellKnownSymbol = USE_SYMBOL_AS_UID ? Symbol : Symbol && Symbol.withoutSetter || uid;
3127
4177
 
3128
4178
  module.exports = function (name) {
3129
- if (!has(WellKnownSymbolsStore, name) || !(NATIVE_SYMBOL || typeof WellKnownSymbolsStore[name] == 'string')) {
3130
- if (NATIVE_SYMBOL && has(Symbol, name)) {
4179
+ if (!hasOwn(WellKnownSymbolsStore, name) || !(NATIVE_SYMBOL || typeof WellKnownSymbolsStore[name] == 'string')) {
4180
+ var description = 'Symbol.' + name;
4181
+ if (NATIVE_SYMBOL && hasOwn(Symbol, name)) {
3131
4182
  WellKnownSymbolsStore[name] = Symbol[name];
4183
+ } else if (USE_SYMBOL_AS_UID && symbolFor) {
4184
+ WellKnownSymbolsStore[name] = symbolFor(description);
3132
4185
  } else {
3133
- WellKnownSymbolsStore[name] = createWellKnownSymbol('Symbol.' + name);
4186
+ WellKnownSymbolsStore[name] = createWellKnownSymbol(description);
3134
4187
  }
3135
4188
  } return WellKnownSymbolsStore[name];
3136
4189
  };
@@ -3142,30 +4195,31 @@ module.exports = function (name) {
3142
4195
  /***/ (function(module, exports, __webpack_require__) {
3143
4196
 
3144
4197
  var bind = __webpack_require__("0366");
4198
+ var uncurryThis = __webpack_require__("e330");
3145
4199
  var IndexedObject = __webpack_require__("44ad");
3146
4200
  var toObject = __webpack_require__("7b0b");
3147
- var toLength = __webpack_require__("50c4");
4201
+ var lengthOfArrayLike = __webpack_require__("07fa");
3148
4202
  var arraySpeciesCreate = __webpack_require__("65f0");
3149
4203
 
3150
- var push = [].push;
4204
+ var push = uncurryThis([].push);
3151
4205
 
3152
- // `Array.prototype.{ forEach, map, filter, some, every, find, findIndex, filterOut }` methods implementation
4206
+ // `Array.prototype.{ forEach, map, filter, some, every, find, findIndex, filterReject }` methods implementation
3153
4207
  var createMethod = function (TYPE) {
3154
4208
  var IS_MAP = TYPE == 1;
3155
4209
  var IS_FILTER = TYPE == 2;
3156
4210
  var IS_SOME = TYPE == 3;
3157
4211
  var IS_EVERY = TYPE == 4;
3158
4212
  var IS_FIND_INDEX = TYPE == 6;
3159
- var IS_FILTER_OUT = TYPE == 7;
4213
+ var IS_FILTER_REJECT = TYPE == 7;
3160
4214
  var NO_HOLES = TYPE == 5 || IS_FIND_INDEX;
3161
4215
  return function ($this, callbackfn, that, specificCreate) {
3162
4216
  var O = toObject($this);
3163
4217
  var self = IndexedObject(O);
3164
- var boundFunction = bind(callbackfn, that, 3);
3165
- var length = toLength(self.length);
4218
+ var boundFunction = bind(callbackfn, that);
4219
+ var length = lengthOfArrayLike(self);
3166
4220
  var index = 0;
3167
4221
  var create = specificCreate || arraySpeciesCreate;
3168
- var target = IS_MAP ? create($this, length) : IS_FILTER || IS_FILTER_OUT ? create($this, 0) : undefined;
4222
+ var target = IS_MAP ? create($this, length) : IS_FILTER || IS_FILTER_REJECT ? create($this, 0) : undefined;
3169
4223
  var value, result;
3170
4224
  for (;length > index; index++) if (NO_HOLES || index in self) {
3171
4225
  value = self[index];
@@ -3176,10 +4230,10 @@ var createMethod = function (TYPE) {
3176
4230
  case 3: return true; // some
3177
4231
  case 5: return value; // find
3178
4232
  case 6: return index; // findIndex
3179
- case 2: push.call(target, value); // filter
4233
+ case 2: push(target, value); // filter
3180
4234
  } else switch (TYPE) {
3181
4235
  case 4: return false; // every
3182
- case 7: push.call(target, value); // filterOut
4236
+ case 7: push(target, value); // filterReject
3183
4237
  }
3184
4238
  }
3185
4239
  }
@@ -3209,30 +4263,59 @@ module.exports = {
3209
4263
  // `Array.prototype.findIndex` method
3210
4264
  // https://tc39.es/ecma262/#sec-array.prototype.findIndex
3211
4265
  findIndex: createMethod(6),
3212
- // `Array.prototype.filterOut` method
4266
+ // `Array.prototype.filterReject` method
3213
4267
  // https://github.com/tc39/proposal-array-filtering
3214
- filterOut: createMethod(7)
4268
+ filterReject: createMethod(7)
3215
4269
  };
3216
4270
 
3217
4271
 
4272
+ /***/ }),
4273
+
4274
+ /***/ "b980":
4275
+ /***/ (function(module, exports, __webpack_require__) {
4276
+
4277
+ var fails = __webpack_require__("d039");
4278
+ var createPropertyDescriptor = __webpack_require__("5c6c");
4279
+
4280
+ module.exports = !fails(function () {
4281
+ var error = Error('a');
4282
+ if (!('stack' in error)) return true;
4283
+ // eslint-disable-next-line es/no-object-defineproperty -- safe
4284
+ Object.defineProperty(error, 'stack', createPropertyDescriptor(1, 7));
4285
+ return error.stack !== 7;
4286
+ });
4287
+
4288
+
3218
4289
  /***/ }),
3219
4290
 
3220
4291
  /***/ "c04e":
3221
4292
  /***/ (function(module, exports, __webpack_require__) {
3222
4293
 
4294
+ var global = __webpack_require__("da84");
4295
+ var call = __webpack_require__("c65b");
3223
4296
  var isObject = __webpack_require__("861d");
4297
+ var isSymbol = __webpack_require__("d9b5");
4298
+ var getMethod = __webpack_require__("dc4a");
4299
+ var ordinaryToPrimitive = __webpack_require__("485a");
4300
+ var wellKnownSymbol = __webpack_require__("b622");
4301
+
4302
+ var TypeError = global.TypeError;
4303
+ var TO_PRIMITIVE = wellKnownSymbol('toPrimitive');
3224
4304
 
3225
4305
  // `ToPrimitive` abstract operation
3226
4306
  // https://tc39.es/ecma262/#sec-toprimitive
3227
- // instead of the ES6 spec version, we didn't implement @@toPrimitive case
3228
- // and the second argument - flag - preferred type is a string
3229
- module.exports = function (input, PREFERRED_STRING) {
3230
- if (!isObject(input)) return input;
3231
- var fn, val;
3232
- if (PREFERRED_STRING && typeof (fn = input.toString) == 'function' && !isObject(val = fn.call(input))) return val;
3233
- if (typeof (fn = input.valueOf) == 'function' && !isObject(val = fn.call(input))) return val;
3234
- if (!PREFERRED_STRING && typeof (fn = input.toString) == 'function' && !isObject(val = fn.call(input))) return val;
3235
- throw TypeError("Can't convert object to primitive value");
4307
+ module.exports = function (input, pref) {
4308
+ if (!isObject(input) || isSymbol(input)) return input;
4309
+ var exoticToPrim = getMethod(input, TO_PRIMITIVE);
4310
+ var result;
4311
+ if (exoticToPrim) {
4312
+ if (pref === undefined) pref = 'default';
4313
+ result = call(exoticToPrim, input, pref);
4314
+ if (!isObject(result) || isSymbol(result)) return result;
4315
+ throw TypeError("Can't convert object to primitive value");
4316
+ }
4317
+ if (pref === undefined) pref = 'number';
4318
+ return ordinaryToPrimitive(input, pref);
3236
4319
  };
3237
4320
 
3238
4321
 
@@ -3244,15 +4327,32 @@ module.exports = function (input, PREFERRED_STRING) {
3244
4327
  module.exports = false;
3245
4328
 
3246
4329
 
4330
+ /***/ }),
4331
+
4332
+ /***/ "c65b":
4333
+ /***/ (function(module, exports, __webpack_require__) {
4334
+
4335
+ var NATIVE_BIND = __webpack_require__("40d5");
4336
+
4337
+ var call = Function.prototype.call;
4338
+
4339
+ module.exports = NATIVE_BIND ? call.bind(call) : function () {
4340
+ return call.apply(call, arguments);
4341
+ };
4342
+
4343
+
3247
4344
  /***/ }),
3248
4345
 
3249
4346
  /***/ "c6b6":
3250
- /***/ (function(module, exports) {
4347
+ /***/ (function(module, exports, __webpack_require__) {
3251
4348
 
3252
- var toString = {}.toString;
4349
+ var uncurryThis = __webpack_require__("e330");
4350
+
4351
+ var toString = uncurryThis({}.toString);
4352
+ var stringSlice = uncurryThis(''.slice);
3253
4353
 
3254
4354
  module.exports = function (it) {
3255
- return toString.call(it).slice(8, -1);
4355
+ return stringSlice(toString(it), 8, -1);
3256
4356
  };
3257
4357
 
3258
4358
 
@@ -3270,6 +4370,26 @@ var store = global[SHARED] || setGlobal(SHARED, {});
3270
4370
  module.exports = store;
3271
4371
 
3272
4372
 
4373
+ /***/ }),
4374
+
4375
+ /***/ "c770":
4376
+ /***/ (function(module, exports, __webpack_require__) {
4377
+
4378
+ var uncurryThis = __webpack_require__("e330");
4379
+
4380
+ var replace = uncurryThis(''.replace);
4381
+
4382
+ var TEST = (function (arg) { return String(Error(arg).stack); })('zxcasd');
4383
+ var V8_OR_CHAKRA_STACK_ENTRY = /\n\s*at [^:]*:[^\n]*/;
4384
+ var IS_V8_OR_CHAKRA_STACK = V8_OR_CHAKRA_STACK_ENTRY.test(TEST);
4385
+
4386
+ module.exports = function (stack, dropEntries) {
4387
+ if (IS_V8_OR_CHAKRA_STACK && typeof stack == 'string') {
4388
+ while (dropEntries--) stack = replace(stack, V8_OR_CHAKRA_STACK_ENTRY, '');
4389
+ } return stack;
4390
+ };
4391
+
4392
+
3273
4393
  /***/ }),
3274
4394
 
3275
4395
  /***/ "c8ba":
@@ -3302,20 +4422,23 @@ module.exports = g;
3302
4422
  /***/ "ca84":
3303
4423
  /***/ (function(module, exports, __webpack_require__) {
3304
4424
 
3305
- var has = __webpack_require__("5135");
4425
+ var uncurryThis = __webpack_require__("e330");
4426
+ var hasOwn = __webpack_require__("1a2d");
3306
4427
  var toIndexedObject = __webpack_require__("fc6a");
3307
4428
  var indexOf = __webpack_require__("4d64").indexOf;
3308
4429
  var hiddenKeys = __webpack_require__("d012");
3309
4430
 
4431
+ var push = uncurryThis([].push);
4432
+
3310
4433
  module.exports = function (object, names) {
3311
4434
  var O = toIndexedObject(object);
3312
4435
  var i = 0;
3313
4436
  var result = [];
3314
4437
  var key;
3315
- for (key in O) !has(hiddenKeys, key) && has(O, key) && result.push(key);
4438
+ for (key in O) !hasOwn(hiddenKeys, key) && hasOwn(O, key) && push(result, key);
3316
4439
  // Don't enum bug & hidden keys
3317
- while (names.length > i) if (has(O, key = names[i++])) {
3318
- ~indexOf(result, key) || result.push(key);
4440
+ while (names.length > i) if (hasOwn(O, key = names[i++])) {
4441
+ ~indexOf(result, key) || push(result, key);
3319
4442
  }
3320
4443
  return result;
3321
4444
  };
@@ -3363,11 +4486,13 @@ module.exports = function (C, x) {
3363
4486
  /***/ (function(module, exports, __webpack_require__) {
3364
4487
 
3365
4488
  var global = __webpack_require__("da84");
3366
- var createNonEnumerableProperty = __webpack_require__("9112");
4489
+
4490
+ // eslint-disable-next-line es/no-object-defineproperty -- safe
4491
+ var defineProperty = Object.defineProperty;
3367
4492
 
3368
4493
  module.exports = function (key, value) {
3369
4494
  try {
3370
- createNonEnumerableProperty(global, key, value);
4495
+ defineProperty(global, key, { value: value, configurable: true, writable: true });
3371
4496
  } catch (error) {
3372
4497
  global[key] = value;
3373
4498
  } return value;
@@ -3401,16 +4526,15 @@ module.exports = function (exec) {
3401
4526
  /***/ "d066":
3402
4527
  /***/ (function(module, exports, __webpack_require__) {
3403
4528
 
3404
- var path = __webpack_require__("428f");
3405
4529
  var global = __webpack_require__("da84");
4530
+ var isCallable = __webpack_require__("1626");
3406
4531
 
3407
- var aFunction = function (variable) {
3408
- return typeof variable == 'function' ? variable : undefined;
4532
+ var aFunction = function (argument) {
4533
+ return isCallable(argument) ? argument : undefined;
3409
4534
  };
3410
4535
 
3411
4536
  module.exports = function (namespace, method) {
3412
- return arguments.length < 2 ? aFunction(path[namespace]) || aFunction(global[namespace])
3413
- : path[namespace] && path[namespace][method] || global[namespace] && global[namespace][method];
4537
+ return arguments.length < 2 ? aFunction(global[namespace]) : global[namespace] && global[namespace][method];
3414
4538
  };
3415
4539
 
3416
4540
 
@@ -3421,18 +4545,19 @@ module.exports = function (namespace, method) {
3421
4545
 
3422
4546
  "use strict";
3423
4547
 
3424
- var nativePropertyIsEnumerable = {}.propertyIsEnumerable;
4548
+ var $propertyIsEnumerable = {}.propertyIsEnumerable;
4549
+ // eslint-disable-next-line es/no-object-getownpropertydescriptor -- safe
3425
4550
  var getOwnPropertyDescriptor = Object.getOwnPropertyDescriptor;
3426
4551
 
3427
4552
  // Nashorn ~ JDK8 bug
3428
- var NASHORN_BUG = getOwnPropertyDescriptor && !nativePropertyIsEnumerable.call({ 1: 2 }, 1);
4553
+ var NASHORN_BUG = getOwnPropertyDescriptor && !$propertyIsEnumerable.call({ 1: 2 }, 1);
3429
4554
 
3430
4555
  // `Object.prototype.propertyIsEnumerable` method implementation
3431
4556
  // https://tc39.es/ecma262/#sec-object.prototype.propertyisenumerable
3432
4557
  exports.f = NASHORN_BUG ? function propertyIsEnumerable(V) {
3433
4558
  var descriptor = getOwnPropertyDescriptor(this, V);
3434
4559
  return !!descriptor && descriptor.enumerable;
3435
- } : nativePropertyIsEnumerable;
4560
+ } : $propertyIsEnumerable;
3436
4561
 
3437
4562
 
3438
4563
  /***/ }),
@@ -3453,25 +4578,28 @@ defineWellKnownSymbol('iterator');
3453
4578
  /***/ (function(module, exports, __webpack_require__) {
3454
4579
 
3455
4580
  /* eslint-disable no-proto -- safe */
4581
+ var uncurryThis = __webpack_require__("e330");
3456
4582
  var anObject = __webpack_require__("825a");
3457
4583
  var aPossiblePrototype = __webpack_require__("3bbe");
3458
4584
 
3459
4585
  // `Object.setPrototypeOf` method
3460
4586
  // https://tc39.es/ecma262/#sec-object.setprototypeof
3461
4587
  // Works with __proto__ only. Old v8 can't work with null proto objects.
4588
+ // eslint-disable-next-line es/no-object-setprototypeof -- safe
3462
4589
  module.exports = Object.setPrototypeOf || ('__proto__' in {} ? function () {
3463
4590
  var CORRECT_SETTER = false;
3464
4591
  var test = {};
3465
4592
  var setter;
3466
4593
  try {
3467
- setter = Object.getOwnPropertyDescriptor(Object.prototype, '__proto__').set;
3468
- setter.call(test, []);
4594
+ // eslint-disable-next-line es/no-object-getownpropertydescriptor -- safe
4595
+ setter = uncurryThis(Object.getOwnPropertyDescriptor(Object.prototype, '__proto__').set);
4596
+ setter(test, []);
3469
4597
  CORRECT_SETTER = test instanceof Array;
3470
4598
  } catch (error) { /* empty */ }
3471
4599
  return function setPrototypeOf(O, proto) {
3472
4600
  anObject(O);
3473
4601
  aPossiblePrototype(proto);
3474
- if (CORRECT_SETTER) setter.call(O, proto);
4602
+ if (CORRECT_SETTER) setter(O, proto);
3475
4603
  else O.__proto__ = proto;
3476
4604
  return O;
3477
4605
  };
@@ -3500,17 +4628,113 @@ if (!TO_STRING_TAG_SUPPORT) {
3500
4628
  /***/ (function(module, exports, __webpack_require__) {
3501
4629
 
3502
4630
  var defineProperty = __webpack_require__("9bf2").f;
3503
- var has = __webpack_require__("5135");
4631
+ var hasOwn = __webpack_require__("1a2d");
3504
4632
  var wellKnownSymbol = __webpack_require__("b622");
3505
4633
 
3506
4634
  var TO_STRING_TAG = wellKnownSymbol('toStringTag');
3507
4635
 
3508
- module.exports = function (it, TAG, STATIC) {
3509
- if (it && !has(it = STATIC ? it : it.prototype, TO_STRING_TAG)) {
3510
- defineProperty(it, TO_STRING_TAG, { configurable: true, value: TAG });
4636
+ module.exports = function (target, TAG, STATIC) {
4637
+ if (target && !STATIC) target = target.prototype;
4638
+ if (target && !hasOwn(target, TO_STRING_TAG)) {
4639
+ defineProperty(target, TO_STRING_TAG, { configurable: true, value: TAG });
4640
+ }
4641
+ };
4642
+
4643
+
4644
+ /***/ }),
4645
+
4646
+ /***/ "d4c3":
4647
+ /***/ (function(module, exports, __webpack_require__) {
4648
+
4649
+ var userAgent = __webpack_require__("342f");
4650
+ var global = __webpack_require__("da84");
4651
+
4652
+ module.exports = /ipad|iphone|ipod/i.test(userAgent) && global.Pebble !== undefined;
4653
+
4654
+
4655
+ /***/ }),
4656
+
4657
+ /***/ "d9b5":
4658
+ /***/ (function(module, exports, __webpack_require__) {
4659
+
4660
+ var global = __webpack_require__("da84");
4661
+ var getBuiltIn = __webpack_require__("d066");
4662
+ var isCallable = __webpack_require__("1626");
4663
+ var isPrototypeOf = __webpack_require__("3a9b");
4664
+ var USE_SYMBOL_AS_UID = __webpack_require__("fdbf");
4665
+
4666
+ var Object = global.Object;
4667
+
4668
+ module.exports = USE_SYMBOL_AS_UID ? function (it) {
4669
+ return typeof it == 'symbol';
4670
+ } : function (it) {
4671
+ var $Symbol = getBuiltIn('Symbol');
4672
+ return isCallable($Symbol) && isPrototypeOf($Symbol.prototype, Object(it));
4673
+ };
4674
+
4675
+
4676
+ /***/ }),
4677
+
4678
+ /***/ "d9e2":
4679
+ /***/ (function(module, exports, __webpack_require__) {
4680
+
4681
+ /* eslint-disable no-unused-vars -- required for functions `.length` */
4682
+ var $ = __webpack_require__("23e7");
4683
+ var global = __webpack_require__("da84");
4684
+ var apply = __webpack_require__("2ba4");
4685
+ var wrapErrorConstructorWithCause = __webpack_require__("e5cb");
4686
+
4687
+ var WEB_ASSEMBLY = 'WebAssembly';
4688
+ var WebAssembly = global[WEB_ASSEMBLY];
4689
+
4690
+ var FORCED = Error('e', { cause: 7 }).cause !== 7;
4691
+
4692
+ var exportGlobalErrorCauseWrapper = function (ERROR_NAME, wrapper) {
4693
+ var O = {};
4694
+ O[ERROR_NAME] = wrapErrorConstructorWithCause(ERROR_NAME, wrapper, FORCED);
4695
+ $({ global: true, forced: FORCED }, O);
4696
+ };
4697
+
4698
+ var exportWebAssemblyErrorCauseWrapper = function (ERROR_NAME, wrapper) {
4699
+ if (WebAssembly && WebAssembly[ERROR_NAME]) {
4700
+ var O = {};
4701
+ O[ERROR_NAME] = wrapErrorConstructorWithCause(WEB_ASSEMBLY + '.' + ERROR_NAME, wrapper, FORCED);
4702
+ $({ target: WEB_ASSEMBLY, stat: true, forced: FORCED }, O);
3511
4703
  }
3512
4704
  };
3513
4705
 
4706
+ // https://github.com/tc39/proposal-error-cause
4707
+ exportGlobalErrorCauseWrapper('Error', function (init) {
4708
+ return function Error(message) { return apply(init, this, arguments); };
4709
+ });
4710
+ exportGlobalErrorCauseWrapper('EvalError', function (init) {
4711
+ return function EvalError(message) { return apply(init, this, arguments); };
4712
+ });
4713
+ exportGlobalErrorCauseWrapper('RangeError', function (init) {
4714
+ return function RangeError(message) { return apply(init, this, arguments); };
4715
+ });
4716
+ exportGlobalErrorCauseWrapper('ReferenceError', function (init) {
4717
+ return function ReferenceError(message) { return apply(init, this, arguments); };
4718
+ });
4719
+ exportGlobalErrorCauseWrapper('SyntaxError', function (init) {
4720
+ return function SyntaxError(message) { return apply(init, this, arguments); };
4721
+ });
4722
+ exportGlobalErrorCauseWrapper('TypeError', function (init) {
4723
+ return function TypeError(message) { return apply(init, this, arguments); };
4724
+ });
4725
+ exportGlobalErrorCauseWrapper('URIError', function (init) {
4726
+ return function URIError(message) { return apply(init, this, arguments); };
4727
+ });
4728
+ exportWebAssemblyErrorCauseWrapper('CompileError', function (init) {
4729
+ return function CompileError(message) { return apply(init, this, arguments); };
4730
+ });
4731
+ exportWebAssemblyErrorCauseWrapper('LinkError', function (init) {
4732
+ return function LinkError(message) { return apply(init, this, arguments); };
4733
+ });
4734
+ exportWebAssemblyErrorCauseWrapper('RuntimeError', function (init) {
4735
+ return function RuntimeError(message) { return apply(init, this, arguments); };
4736
+ });
4737
+
3514
4738
 
3515
4739
  /***/ }),
3516
4740
 
@@ -3523,9 +4747,10 @@ module.exports = function (it, TAG, STATIC) {
3523
4747
 
3524
4748
  // https://github.com/zloirock/core-js/issues/86#issuecomment-115759028
3525
4749
  module.exports =
3526
- /* global globalThis -- safe */
4750
+ // eslint-disable-next-line es/no-global-this -- safe
3527
4751
  check(typeof globalThis == 'object' && globalThis) ||
3528
4752
  check(typeof window == 'object' && window) ||
4753
+ // eslint-disable-next-line no-restricted-globals -- safe
3529
4754
  check(typeof self == 'object' && self) ||
3530
4755
  check(typeof global == 'object' && global) ||
3531
4756
  // eslint-disable-next-line no-new-func -- fallback
@@ -3533,6 +4758,21 @@ module.exports =
3533
4758
 
3534
4759
  /* WEBPACK VAR INJECTION */}.call(this, __webpack_require__("c8ba")))
3535
4760
 
4761
+ /***/ }),
4762
+
4763
+ /***/ "dc4a":
4764
+ /***/ (function(module, exports, __webpack_require__) {
4765
+
4766
+ var aCallable = __webpack_require__("59ed");
4767
+
4768
+ // `GetMethod` abstract operation
4769
+ // https://tc39.es/ecma262/#sec-getmethod
4770
+ module.exports = function (V, P) {
4771
+ var func = V[P];
4772
+ return func == null ? undefined : aCallable(func);
4773
+ };
4774
+
4775
+
3536
4776
  /***/ }),
3537
4777
 
3538
4778
  /***/ "ddb0":
@@ -3540,6 +4780,7 @@ module.exports =
3540
4780
 
3541
4781
  var global = __webpack_require__("da84");
3542
4782
  var DOMIterables = __webpack_require__("fdbc");
4783
+ var DOMTokenListPrototype = __webpack_require__("785a");
3543
4784
  var ArrayIteratorMethods = __webpack_require__("e260");
3544
4785
  var createNonEnumerableProperty = __webpack_require__("9112");
3545
4786
  var wellKnownSymbol = __webpack_require__("b622");
@@ -3548,9 +4789,7 @@ var ITERATOR = wellKnownSymbol('iterator');
3548
4789
  var TO_STRING_TAG = wellKnownSymbol('toStringTag');
3549
4790
  var ArrayValues = ArrayIteratorMethods.values;
3550
4791
 
3551
- for (var COLLECTION_NAME in DOMIterables) {
3552
- var Collection = global[COLLECTION_NAME];
3553
- var CollectionPrototype = Collection && Collection.prototype;
4792
+ var handlePrototype = function (CollectionPrototype, COLLECTION_NAME) {
3554
4793
  if (CollectionPrototype) {
3555
4794
  // some Chrome versions have non-configurable methods on DOMTokenList
3556
4795
  if (CollectionPrototype[ITERATOR] !== ArrayValues) try {
@@ -3570,8 +4809,14 @@ for (var COLLECTION_NAME in DOMIterables) {
3570
4809
  }
3571
4810
  }
3572
4811
  }
4812
+ };
4813
+
4814
+ for (var COLLECTION_NAME in DOMIterables) {
4815
+ handlePrototype(global[COLLECTION_NAME] && global[COLLECTION_NAME].prototype, COLLECTION_NAME);
3573
4816
  }
3574
4817
 
4818
+ handlePrototype(DOMTokenListPrototype, 'DOMTokenList');
4819
+
3575
4820
 
3576
4821
  /***/ }),
3577
4822
 
@@ -3583,6 +4828,7 @@ var enumBugKeys = __webpack_require__("7839");
3583
4828
 
3584
4829
  // `Object.keys` method
3585
4830
  // https://tc39.es/ecma262/#sec-object.keys
4831
+ // eslint-disable-next-line es/no-object-keys -- safe
3586
4832
  module.exports = Object.keys || function keys(O) {
3587
4833
  return internalObjectKeys(O, enumBugKeys);
3588
4834
  };
@@ -3600,42 +4846,51 @@ module.exports = Object.keys || function keys(O) {
3600
4846
  var $ = __webpack_require__("23e7");
3601
4847
  var DESCRIPTORS = __webpack_require__("83ab");
3602
4848
  var global = __webpack_require__("da84");
3603
- var has = __webpack_require__("5135");
3604
- var isObject = __webpack_require__("861d");
4849
+ var uncurryThis = __webpack_require__("e330");
4850
+ var hasOwn = __webpack_require__("1a2d");
4851
+ var isCallable = __webpack_require__("1626");
4852
+ var isPrototypeOf = __webpack_require__("3a9b");
4853
+ var toString = __webpack_require__("577e");
3605
4854
  var defineProperty = __webpack_require__("9bf2").f;
3606
4855
  var copyConstructorProperties = __webpack_require__("e893");
3607
4856
 
3608
4857
  var NativeSymbol = global.Symbol;
4858
+ var SymbolPrototype = NativeSymbol && NativeSymbol.prototype;
3609
4859
 
3610
- if (DESCRIPTORS && typeof NativeSymbol == 'function' && (!('description' in NativeSymbol.prototype) ||
4860
+ if (DESCRIPTORS && isCallable(NativeSymbol) && (!('description' in SymbolPrototype) ||
3611
4861
  // Safari 12 bug
3612
4862
  NativeSymbol().description !== undefined
3613
4863
  )) {
3614
4864
  var EmptyStringDescriptionStore = {};
3615
4865
  // wrap Symbol constructor for correct work with undefined description
3616
4866
  var SymbolWrapper = function Symbol() {
3617
- var description = arguments.length < 1 || arguments[0] === undefined ? undefined : String(arguments[0]);
3618
- var result = this instanceof SymbolWrapper
4867
+ var description = arguments.length < 1 || arguments[0] === undefined ? undefined : toString(arguments[0]);
4868
+ var result = isPrototypeOf(SymbolPrototype, this)
3619
4869
  ? new NativeSymbol(description)
3620
4870
  // in Edge 13, String(Symbol(undefined)) === 'Symbol(undefined)'
3621
4871
  : description === undefined ? NativeSymbol() : NativeSymbol(description);
3622
4872
  if (description === '') EmptyStringDescriptionStore[result] = true;
3623
4873
  return result;
3624
4874
  };
4875
+
3625
4876
  copyConstructorProperties(SymbolWrapper, NativeSymbol);
3626
- var symbolPrototype = SymbolWrapper.prototype = NativeSymbol.prototype;
3627
- symbolPrototype.constructor = SymbolWrapper;
4877
+ SymbolWrapper.prototype = SymbolPrototype;
4878
+ SymbolPrototype.constructor = SymbolWrapper;
3628
4879
 
3629
- var symbolToString = symbolPrototype.toString;
3630
- var native = String(NativeSymbol('test')) == 'Symbol(test)';
4880
+ var NATIVE_SYMBOL = String(NativeSymbol('test')) == 'Symbol(test)';
4881
+ var symbolToString = uncurryThis(SymbolPrototype.toString);
4882
+ var symbolValueOf = uncurryThis(SymbolPrototype.valueOf);
3631
4883
  var regexp = /^Symbol\((.*)\)[^)]+$/;
3632
- defineProperty(symbolPrototype, 'description', {
4884
+ var replace = uncurryThis(''.replace);
4885
+ var stringSlice = uncurryThis(''.slice);
4886
+
4887
+ defineProperty(SymbolPrototype, 'description', {
3633
4888
  configurable: true,
3634
4889
  get: function description() {
3635
- var symbol = isObject(this) ? this.valueOf() : this;
3636
- var string = symbolToString.call(symbol);
3637
- if (has(EmptyStringDescriptionStore, symbol)) return '';
3638
- var desc = native ? string.slice(7, -1) : string.replace(regexp, '$1');
4890
+ var symbol = symbolValueOf(this);
4891
+ var string = symbolToString(symbol);
4892
+ if (hasOwn(EmptyStringDescriptionStore, symbol)) return '';
4893
+ var desc = NATIVE_SYMBOL ? stringSlice(string, 7, -1) : replace(string, regexp, '$1');
3639
4894
  return desc === '' ? undefined : desc;
3640
4895
  }
3641
4896
  });
@@ -3651,22 +4906,26 @@ if (DESCRIPTORS && typeof NativeSymbol == 'function' && (!('description' in Nati
3651
4906
  /***/ "e163":
3652
4907
  /***/ (function(module, exports, __webpack_require__) {
3653
4908
 
3654
- var has = __webpack_require__("5135");
4909
+ var global = __webpack_require__("da84");
4910
+ var hasOwn = __webpack_require__("1a2d");
4911
+ var isCallable = __webpack_require__("1626");
3655
4912
  var toObject = __webpack_require__("7b0b");
3656
4913
  var sharedKey = __webpack_require__("f772");
3657
4914
  var CORRECT_PROTOTYPE_GETTER = __webpack_require__("e177");
3658
4915
 
3659
4916
  var IE_PROTO = sharedKey('IE_PROTO');
4917
+ var Object = global.Object;
3660
4918
  var ObjectPrototype = Object.prototype;
3661
4919
 
3662
4920
  // `Object.getPrototypeOf` method
3663
4921
  // https://tc39.es/ecma262/#sec-object.getprototypeof
3664
4922
  module.exports = CORRECT_PROTOTYPE_GETTER ? Object.getPrototypeOf : function (O) {
3665
- O = toObject(O);
3666
- if (has(O, IE_PROTO)) return O[IE_PROTO];
3667
- if (typeof O.constructor == 'function' && O instanceof O.constructor) {
3668
- return O.constructor.prototype;
3669
- } return O instanceof Object ? ObjectPrototype : null;
4923
+ var object = toObject(O);
4924
+ if (hasOwn(object, IE_PROTO)) return object[IE_PROTO];
4925
+ var constructor = object.constructor;
4926
+ if (isCallable(constructor) && object instanceof constructor) {
4927
+ return constructor.prototype;
4928
+ } return object instanceof Object ? ObjectPrototype : null;
3670
4929
  };
3671
4930
 
3672
4931
 
@@ -3680,6 +4939,7 @@ var fails = __webpack_require__("d039");
3680
4939
  module.exports = !fails(function () {
3681
4940
  function F() { /* empty */ }
3682
4941
  F.prototype.constructor = null;
4942
+ // eslint-disable-next-line es/no-object-getprototypeof -- required for testing
3683
4943
  return Object.getPrototypeOf(new F()) !== F.prototype;
3684
4944
  });
3685
4945
 
@@ -3702,7 +4962,10 @@ var toIndexedObject = __webpack_require__("fc6a");
3702
4962
  var addToUnscopables = __webpack_require__("44d2");
3703
4963
  var Iterators = __webpack_require__("3f8c");
3704
4964
  var InternalStateModule = __webpack_require__("69f3");
4965
+ var defineProperty = __webpack_require__("9bf2").f;
3705
4966
  var defineIterator = __webpack_require__("7dd0");
4967
+ var IS_PURE = __webpack_require__("c430");
4968
+ var DESCRIPTORS = __webpack_require__("83ab");
3706
4969
 
3707
4970
  var ARRAY_ITERATOR = 'Array Iterator';
3708
4971
  var setInternalState = InternalStateModule.set;
@@ -3744,13 +5007,18 @@ module.exports = defineIterator(Array, 'Array', function (iterated, kind) {
3744
5007
  // argumentsList[@@iterator] is %ArrayProto_values%
3745
5008
  // https://tc39.es/ecma262/#sec-createunmappedargumentsobject
3746
5009
  // https://tc39.es/ecma262/#sec-createmappedargumentsobject
3747
- Iterators.Arguments = Iterators.Array;
5010
+ var values = Iterators.Arguments = Iterators.Array;
3748
5011
 
3749
5012
  // https://tc39.es/ecma262/#sec-array.prototype-@@unscopables
3750
5013
  addToUnscopables('keys');
3751
5014
  addToUnscopables('values');
3752
5015
  addToUnscopables('entries');
3753
5016
 
5017
+ // V8 ~ Chrome 45- bug
5018
+ if (!IS_PURE && DESCRIPTORS && values.name !== 'values') try {
5019
+ defineProperty(values, 'name', { value: 'values' });
5020
+ } catch (error) { /* empty */ }
5021
+
3754
5022
 
3755
5023
  /***/ }),
3756
5024
 
@@ -3765,6 +5033,39 @@ module.exports = function (target, src, options) {
3765
5033
  };
3766
5034
 
3767
5035
 
5036
+ /***/ }),
5037
+
5038
+ /***/ "e330":
5039
+ /***/ (function(module, exports, __webpack_require__) {
5040
+
5041
+ var NATIVE_BIND = __webpack_require__("40d5");
5042
+
5043
+ var FunctionPrototype = Function.prototype;
5044
+ var bind = FunctionPrototype.bind;
5045
+ var call = FunctionPrototype.call;
5046
+ var uncurryThis = NATIVE_BIND && bind.bind(call, call);
5047
+
5048
+ module.exports = NATIVE_BIND ? function (fn) {
5049
+ return fn && uncurryThis(fn);
5050
+ } : function (fn) {
5051
+ return fn && function () {
5052
+ return call.apply(fn, arguments);
5053
+ };
5054
+ };
5055
+
5056
+
5057
+ /***/ }),
5058
+
5059
+ /***/ "e391":
5060
+ /***/ (function(module, exports, __webpack_require__) {
5061
+
5062
+ var toString = __webpack_require__("577e");
5063
+
5064
+ module.exports = function (argument, $default) {
5065
+ return argument === undefined ? arguments.length < 2 ? '' : $default : toString(argument);
5066
+ };
5067
+
5068
+
3768
5069
  /***/ }),
3769
5070
 
3770
5071
  /***/ "e538":
@@ -3775,6 +5076,74 @@ var wellKnownSymbol = __webpack_require__("b622");
3775
5076
  exports.f = wellKnownSymbol;
3776
5077
 
3777
5078
 
5079
+ /***/ }),
5080
+
5081
+ /***/ "e5cb":
5082
+ /***/ (function(module, exports, __webpack_require__) {
5083
+
5084
+ "use strict";
5085
+
5086
+ var getBuiltIn = __webpack_require__("d066");
5087
+ var hasOwn = __webpack_require__("1a2d");
5088
+ var createNonEnumerableProperty = __webpack_require__("9112");
5089
+ var isPrototypeOf = __webpack_require__("3a9b");
5090
+ var setPrototypeOf = __webpack_require__("d2bb");
5091
+ var copyConstructorProperties = __webpack_require__("e893");
5092
+ var inheritIfRequired = __webpack_require__("7156");
5093
+ var normalizeStringArgument = __webpack_require__("e391");
5094
+ var installErrorCause = __webpack_require__("ab36");
5095
+ var clearErrorStack = __webpack_require__("c770");
5096
+ var ERROR_STACK_INSTALLABLE = __webpack_require__("b980");
5097
+ var IS_PURE = __webpack_require__("c430");
5098
+
5099
+ module.exports = function (FULL_NAME, wrapper, FORCED, IS_AGGREGATE_ERROR) {
5100
+ var OPTIONS_POSITION = IS_AGGREGATE_ERROR ? 2 : 1;
5101
+ var path = FULL_NAME.split('.');
5102
+ var ERROR_NAME = path[path.length - 1];
5103
+ var OriginalError = getBuiltIn.apply(null, path);
5104
+
5105
+ if (!OriginalError) return;
5106
+
5107
+ var OriginalErrorPrototype = OriginalError.prototype;
5108
+
5109
+ // V8 9.3- bug https://bugs.chromium.org/p/v8/issues/detail?id=12006
5110
+ if (!IS_PURE && hasOwn(OriginalErrorPrototype, 'cause')) delete OriginalErrorPrototype.cause;
5111
+
5112
+ if (!FORCED) return OriginalError;
5113
+
5114
+ var BaseError = getBuiltIn('Error');
5115
+
5116
+ var WrappedError = wrapper(function (a, b) {
5117
+ var message = normalizeStringArgument(IS_AGGREGATE_ERROR ? b : a, undefined);
5118
+ var result = IS_AGGREGATE_ERROR ? new OriginalError(a) : new OriginalError();
5119
+ if (message !== undefined) createNonEnumerableProperty(result, 'message', message);
5120
+ if (ERROR_STACK_INSTALLABLE) createNonEnumerableProperty(result, 'stack', clearErrorStack(result.stack, 2));
5121
+ if (this && isPrototypeOf(OriginalErrorPrototype, this)) inheritIfRequired(result, this, WrappedError);
5122
+ if (arguments.length > OPTIONS_POSITION) installErrorCause(result, arguments[OPTIONS_POSITION]);
5123
+ return result;
5124
+ });
5125
+
5126
+ WrappedError.prototype = OriginalErrorPrototype;
5127
+
5128
+ if (ERROR_NAME !== 'Error') {
5129
+ if (setPrototypeOf) setPrototypeOf(WrappedError, BaseError);
5130
+ else copyConstructorProperties(WrappedError, BaseError, { name: true });
5131
+ }
5132
+
5133
+ copyConstructorProperties(WrappedError, OriginalError);
5134
+
5135
+ if (!IS_PURE) try {
5136
+ // Safari 13- bug: WebAssembly errors does not have a proper `.name`
5137
+ if (OriginalErrorPrototype.name !== ERROR_NAME) {
5138
+ createNonEnumerableProperty(OriginalErrorPrototype, 'name', ERROR_NAME);
5139
+ }
5140
+ OriginalErrorPrototype.constructor = WrappedError;
5141
+ } catch (error) { /* empty */ }
5142
+
5143
+ return WrappedError;
5144
+ };
5145
+
5146
+
3778
5147
  /***/ }),
3779
5148
 
3780
5149
  /***/ "e667":
@@ -3800,13 +5169,16 @@ var $ = __webpack_require__("23e7");
3800
5169
  var IS_PURE = __webpack_require__("c430");
3801
5170
  var global = __webpack_require__("da84");
3802
5171
  var getBuiltIn = __webpack_require__("d066");
5172
+ var call = __webpack_require__("c65b");
3803
5173
  var NativePromise = __webpack_require__("fea9");
3804
5174
  var redefine = __webpack_require__("6eeb");
3805
5175
  var redefineAll = __webpack_require__("e2cc");
5176
+ var setPrototypeOf = __webpack_require__("d2bb");
3806
5177
  var setToStringTag = __webpack_require__("d44e");
3807
5178
  var setSpecies = __webpack_require__("2626");
5179
+ var aCallable = __webpack_require__("59ed");
5180
+ var isCallable = __webpack_require__("1626");
3808
5181
  var isObject = __webpack_require__("861d");
3809
- var aFunction = __webpack_require__("1c0b");
3810
5182
  var anInstance = __webpack_require__("19aa");
3811
5183
  var inspectSource = __webpack_require__("8925");
3812
5184
  var iterate = __webpack_require__("2266");
@@ -3818,26 +5190,31 @@ var promiseResolve = __webpack_require__("cdf9");
3818
5190
  var hostReportErrors = __webpack_require__("44de");
3819
5191
  var newPromiseCapabilityModule = __webpack_require__("f069");
3820
5192
  var perform = __webpack_require__("e667");
5193
+ var Queue = __webpack_require__("01b4");
3821
5194
  var InternalStateModule = __webpack_require__("69f3");
3822
5195
  var isForced = __webpack_require__("94ca");
3823
5196
  var wellKnownSymbol = __webpack_require__("b622");
5197
+ var IS_BROWSER = __webpack_require__("6069");
3824
5198
  var IS_NODE = __webpack_require__("605d");
3825
5199
  var V8_VERSION = __webpack_require__("2d00");
3826
5200
 
3827
5201
  var SPECIES = wellKnownSymbol('species');
3828
5202
  var PROMISE = 'Promise';
3829
- var getInternalState = InternalStateModule.get;
5203
+
5204
+ var getInternalState = InternalStateModule.getterFor(PROMISE);
3830
5205
  var setInternalState = InternalStateModule.set;
3831
5206
  var getInternalPromiseState = InternalStateModule.getterFor(PROMISE);
5207
+ var NativePromisePrototype = NativePromise && NativePromise.prototype;
3832
5208
  var PromiseConstructor = NativePromise;
5209
+ var PromisePrototype = NativePromisePrototype;
3833
5210
  var TypeError = global.TypeError;
3834
5211
  var document = global.document;
3835
5212
  var process = global.process;
3836
- var $fetch = getBuiltIn('fetch');
3837
5213
  var newPromiseCapability = newPromiseCapabilityModule.f;
3838
5214
  var newGenericPromiseCapability = newPromiseCapability;
5215
+
3839
5216
  var DISPATCH_EVENT = !!(document && document.createEvent && global.dispatchEvent);
3840
- var NATIVE_REJECTION_EVENT = typeof PromiseRejectionEvent == 'function';
5217
+ var NATIVE_REJECTION_EVENT = isCallable(global.PromiseRejectionEvent);
3841
5218
  var UNHANDLED_REJECTION = 'unhandledrejection';
3842
5219
  var REJECTION_HANDLED = 'rejectionhandled';
3843
5220
  var PENDING = 0;
@@ -3845,32 +5222,34 @@ var FULFILLED = 1;
3845
5222
  var REJECTED = 2;
3846
5223
  var HANDLED = 1;
3847
5224
  var UNHANDLED = 2;
5225
+ var SUBCLASSING = false;
5226
+
3848
5227
  var Internal, OwnPromiseCapability, PromiseWrapper, nativeThen;
3849
5228
 
3850
5229
  var FORCED = isForced(PROMISE, function () {
3851
- var GLOBAL_CORE_JS_PROMISE = inspectSource(PromiseConstructor) !== String(PromiseConstructor);
3852
- if (!GLOBAL_CORE_JS_PROMISE) {
3853
- // V8 6.6 (Node 10 and Chrome 66) have a bug with resolving custom thenables
3854
- // https://bugs.chromium.org/p/chromium/issues/detail?id=830565
3855
- // We can't detect it synchronously, so just check versions
3856
- if (V8_VERSION === 66) return true;
3857
- // Unhandled rejections tracking support, NodeJS Promise without it fails @@species test
3858
- if (!IS_NODE && !NATIVE_REJECTION_EVENT) return true;
3859
- }
5230
+ var PROMISE_CONSTRUCTOR_SOURCE = inspectSource(PromiseConstructor);
5231
+ var GLOBAL_CORE_JS_PROMISE = PROMISE_CONSTRUCTOR_SOURCE !== String(PromiseConstructor);
5232
+ // V8 6.6 (Node 10 and Chrome 66) have a bug with resolving custom thenables
5233
+ // https://bugs.chromium.org/p/chromium/issues/detail?id=830565
5234
+ // We can't detect it synchronously, so just check versions
5235
+ if (!GLOBAL_CORE_JS_PROMISE && V8_VERSION === 66) return true;
3860
5236
  // We need Promise#finally in the pure version for preventing prototype pollution
3861
- if (IS_PURE && !PromiseConstructor.prototype['finally']) return true;
5237
+ if (IS_PURE && !PromisePrototype['finally']) return true;
3862
5238
  // We can't use @@species feature detection in V8 since it causes
3863
5239
  // deoptimization and performance degradation
3864
5240
  // https://github.com/zloirock/core-js/issues/679
3865
- if (V8_VERSION >= 51 && /native code/.test(PromiseConstructor)) return false;
5241
+ if (V8_VERSION >= 51 && /native code/.test(PROMISE_CONSTRUCTOR_SOURCE)) return false;
3866
5242
  // Detect correctness of subclassing with @@species support
3867
- var promise = PromiseConstructor.resolve(1);
5243
+ var promise = new PromiseConstructor(function (resolve) { resolve(1); });
3868
5244
  var FakePromise = function (exec) {
3869
5245
  exec(function () { /* empty */ }, function () { /* empty */ });
3870
5246
  };
3871
5247
  var constructor = promise.constructor = {};
3872
5248
  constructor[SPECIES] = FakePromise;
3873
- return !(promise.then(function () { /* empty */ }) instanceof FakePromise);
5249
+ SUBCLASSING = promise.then(function () { /* empty */ }) instanceof FakePromise;
5250
+ if (!SUBCLASSING) return true;
5251
+ // Unhandled rejections tracking support, NodeJS Promise without it fails @@species test
5252
+ return !GLOBAL_CORE_JS_PROMISE && IS_BROWSER && !NATIVE_REJECTION_EVENT;
3874
5253
  });
3875
5254
 
3876
5255
  var INCORRECT_ITERATION = FORCED || !checkCorrectnessOfIteration(function (iterable) {
@@ -3880,52 +5259,53 @@ var INCORRECT_ITERATION = FORCED || !checkCorrectnessOfIteration(function (itera
3880
5259
  // helpers
3881
5260
  var isThenable = function (it) {
3882
5261
  var then;
3883
- return isObject(it) && typeof (then = it.then) == 'function' ? then : false;
5262
+ return isObject(it) && isCallable(then = it.then) ? then : false;
5263
+ };
5264
+
5265
+ var callReaction = function (reaction, state) {
5266
+ var value = state.value;
5267
+ var ok = state.state == FULFILLED;
5268
+ var handler = ok ? reaction.ok : reaction.fail;
5269
+ var resolve = reaction.resolve;
5270
+ var reject = reaction.reject;
5271
+ var domain = reaction.domain;
5272
+ var result, then, exited;
5273
+ try {
5274
+ if (handler) {
5275
+ if (!ok) {
5276
+ if (state.rejection === UNHANDLED) onHandleUnhandled(state);
5277
+ state.rejection = HANDLED;
5278
+ }
5279
+ if (handler === true) result = value;
5280
+ else {
5281
+ if (domain) domain.enter();
5282
+ result = handler(value); // can throw
5283
+ if (domain) {
5284
+ domain.exit();
5285
+ exited = true;
5286
+ }
5287
+ }
5288
+ if (result === reaction.promise) {
5289
+ reject(TypeError('Promise-chain cycle'));
5290
+ } else if (then = isThenable(result)) {
5291
+ call(then, result, resolve, reject);
5292
+ } else resolve(result);
5293
+ } else reject(value);
5294
+ } catch (error) {
5295
+ if (domain && !exited) domain.exit();
5296
+ reject(error);
5297
+ }
3884
5298
  };
3885
5299
 
3886
5300
  var notify = function (state, isReject) {
3887
5301
  if (state.notified) return;
3888
5302
  state.notified = true;
3889
- var chain = state.reactions;
3890
5303
  microtask(function () {
3891
- var value = state.value;
3892
- var ok = state.state == FULFILLED;
3893
- var index = 0;
3894
- // variable length - can't use forEach
3895
- while (chain.length > index) {
3896
- var reaction = chain[index++];
3897
- var handler = ok ? reaction.ok : reaction.fail;
3898
- var resolve = reaction.resolve;
3899
- var reject = reaction.reject;
3900
- var domain = reaction.domain;
3901
- var result, then, exited;
3902
- try {
3903
- if (handler) {
3904
- if (!ok) {
3905
- if (state.rejection === UNHANDLED) onHandleUnhandled(state);
3906
- state.rejection = HANDLED;
3907
- }
3908
- if (handler === true) result = value;
3909
- else {
3910
- if (domain) domain.enter();
3911
- result = handler(value); // can throw
3912
- if (domain) {
3913
- domain.exit();
3914
- exited = true;
3915
- }
3916
- }
3917
- if (result === reaction.promise) {
3918
- reject(TypeError('Promise-chain cycle'));
3919
- } else if (then = isThenable(result)) {
3920
- then.call(result, resolve, reject);
3921
- } else resolve(result);
3922
- } else reject(value);
3923
- } catch (error) {
3924
- if (domain && !exited) domain.exit();
3925
- reject(error);
3926
- }
5304
+ var reactions = state.reactions;
5305
+ var reaction;
5306
+ while (reaction = reactions.get()) {
5307
+ callReaction(reaction, state);
3927
5308
  }
3928
- state.reactions = [];
3929
5309
  state.notified = false;
3930
5310
  if (isReject && !state.rejection) onUnhandled(state);
3931
5311
  });
@@ -3945,7 +5325,7 @@ var dispatchEvent = function (name, promise, reason) {
3945
5325
  };
3946
5326
 
3947
5327
  var onUnhandled = function (state) {
3948
- task.call(global, function () {
5328
+ call(task, global, function () {
3949
5329
  var promise = state.facade;
3950
5330
  var value = state.value;
3951
5331
  var IS_UNHANDLED = isUnhandled(state);
@@ -3968,7 +5348,7 @@ var isUnhandled = function (state) {
3968
5348
  };
3969
5349
 
3970
5350
  var onHandleUnhandled = function (state) {
3971
- task.call(global, function () {
5351
+ call(task, global, function () {
3972
5352
  var promise = state.facade;
3973
5353
  if (IS_NODE) {
3974
5354
  process.emit('rejectionHandled', promise);
@@ -4002,7 +5382,7 @@ var internalResolve = function (state, value, unwrap) {
4002
5382
  microtask(function () {
4003
5383
  var wrapper = { done: false };
4004
5384
  try {
4005
- then.call(value,
5385
+ call(then, value,
4006
5386
  bind(internalResolve, wrapper, state),
4007
5387
  bind(internalReject, wrapper, state)
4008
5388
  );
@@ -4024,9 +5404,9 @@ var internalResolve = function (state, value, unwrap) {
4024
5404
  if (FORCED) {
4025
5405
  // 25.4.3.1 Promise(executor)
4026
5406
  PromiseConstructor = function Promise(executor) {
4027
- anInstance(this, PromiseConstructor, PROMISE);
4028
- aFunction(executor);
4029
- Internal.call(this);
5407
+ anInstance(this, PromisePrototype);
5408
+ aCallable(executor);
5409
+ call(Internal, this);
4030
5410
  var state = getInternalState(this);
4031
5411
  try {
4032
5412
  executor(bind(internalResolve, state), bind(internalReject, state));
@@ -4034,6 +5414,7 @@ if (FORCED) {
4034
5414
  internalReject(state, error);
4035
5415
  }
4036
5416
  };
5417
+ PromisePrototype = PromiseConstructor.prototype;
4037
5418
  // eslint-disable-next-line no-unused-vars -- required for `.length`
4038
5419
  Internal = function Promise(executor) {
4039
5420
  setInternalState(this, {
@@ -4041,24 +5422,27 @@ if (FORCED) {
4041
5422
  done: false,
4042
5423
  notified: false,
4043
5424
  parent: false,
4044
- reactions: [],
5425
+ reactions: new Queue(),
4045
5426
  rejection: false,
4046
5427
  state: PENDING,
4047
5428
  value: undefined
4048
5429
  });
4049
5430
  };
4050
- Internal.prototype = redefineAll(PromiseConstructor.prototype, {
5431
+ Internal.prototype = redefineAll(PromisePrototype, {
4051
5432
  // `Promise.prototype.then` method
4052
5433
  // https://tc39.es/ecma262/#sec-promise.prototype.then
5434
+ // eslint-disable-next-line unicorn/no-thenable -- safe
4053
5435
  then: function then(onFulfilled, onRejected) {
4054
5436
  var state = getInternalPromiseState(this);
4055
5437
  var reaction = newPromiseCapability(speciesConstructor(this, PromiseConstructor));
4056
- reaction.ok = typeof onFulfilled == 'function' ? onFulfilled : true;
4057
- reaction.fail = typeof onRejected == 'function' && onRejected;
4058
- reaction.domain = IS_NODE ? process.domain : undefined;
4059
5438
  state.parent = true;
4060
- state.reactions.push(reaction);
4061
- if (state.state != PENDING) notify(state, false);
5439
+ reaction.ok = isCallable(onFulfilled) ? onFulfilled : true;
5440
+ reaction.fail = isCallable(onRejected) && onRejected;
5441
+ reaction.domain = IS_NODE ? process.domain : undefined;
5442
+ if (state.state == PENDING) state.reactions.add(reaction);
5443
+ else microtask(function () {
5444
+ callReaction(reaction, state);
5445
+ });
4062
5446
  return reaction.promise;
4063
5447
  },
4064
5448
  // `Promise.prototype.catch` method
@@ -4080,25 +5464,32 @@ if (FORCED) {
4080
5464
  : newGenericPromiseCapability(C);
4081
5465
  };
4082
5466
 
4083
- if (!IS_PURE && typeof NativePromise == 'function') {
4084
- nativeThen = NativePromise.prototype.then;
4085
-
4086
- // wrap native Promise#then for native async functions
4087
- redefine(NativePromise.prototype, 'then', function then(onFulfilled, onRejected) {
4088
- var that = this;
4089
- return new PromiseConstructor(function (resolve, reject) {
4090
- nativeThen.call(that, resolve, reject);
4091
- }).then(onFulfilled, onRejected);
4092
- // https://github.com/zloirock/core-js/issues/640
4093
- }, { unsafe: true });
4094
-
4095
- // wrap fetch result
4096
- if (typeof $fetch == 'function') $({ global: true, enumerable: true, forced: true }, {
4097
- // eslint-disable-next-line no-unused-vars -- required for `.length`
4098
- fetch: function fetch(input /* , init */) {
4099
- return promiseResolve(PromiseConstructor, $fetch.apply(global, arguments));
4100
- }
4101
- });
5467
+ if (!IS_PURE && isCallable(NativePromise) && NativePromisePrototype !== Object.prototype) {
5468
+ nativeThen = NativePromisePrototype.then;
5469
+
5470
+ if (!SUBCLASSING) {
5471
+ // make `Promise#then` return a polyfilled `Promise` for native promise-based APIs
5472
+ redefine(NativePromisePrototype, 'then', function then(onFulfilled, onRejected) {
5473
+ var that = this;
5474
+ return new PromiseConstructor(function (resolve, reject) {
5475
+ call(nativeThen, that, resolve, reject);
5476
+ }).then(onFulfilled, onRejected);
5477
+ // https://github.com/zloirock/core-js/issues/640
5478
+ }, { unsafe: true });
5479
+
5480
+ // makes sure that native promise-based APIs `Promise#catch` properly works with patched `Promise#then`
5481
+ redefine(NativePromisePrototype, 'catch', PromisePrototype['catch'], { unsafe: true });
5482
+ }
5483
+
5484
+ // make `.constructor === Promise` work for native promise-based APIs
5485
+ try {
5486
+ delete NativePromisePrototype.constructor;
5487
+ } catch (error) { /* empty */ }
5488
+
5489
+ // make `instanceof Promise` work for native promise-based APIs
5490
+ if (setPrototypeOf) {
5491
+ setPrototypeOf(NativePromisePrototype, PromisePrototype);
5492
+ }
4102
5493
  }
4103
5494
  }
4104
5495
 
@@ -4117,7 +5508,7 @@ $({ target: PROMISE, stat: true, forced: FORCED }, {
4117
5508
  // https://tc39.es/ecma262/#sec-promise.reject
4118
5509
  reject: function reject(r) {
4119
5510
  var capability = newPromiseCapability(this);
4120
- capability.reject.call(undefined, r);
5511
+ call(capability.reject, undefined, r);
4121
5512
  return capability.promise;
4122
5513
  }
4123
5514
  });
@@ -4139,16 +5530,15 @@ $({ target: PROMISE, stat: true, forced: INCORRECT_ITERATION }, {
4139
5530
  var resolve = capability.resolve;
4140
5531
  var reject = capability.reject;
4141
5532
  var result = perform(function () {
4142
- var $promiseResolve = aFunction(C.resolve);
5533
+ var $promiseResolve = aCallable(C.resolve);
4143
5534
  var values = [];
4144
5535
  var counter = 0;
4145
5536
  var remaining = 1;
4146
5537
  iterate(iterable, function (promise) {
4147
5538
  var index = counter++;
4148
5539
  var alreadyCalled = false;
4149
- values.push(undefined);
4150
5540
  remaining++;
4151
- $promiseResolve.call(C, promise).then(function (value) {
5541
+ call($promiseResolve, C, promise).then(function (value) {
4152
5542
  if (alreadyCalled) return;
4153
5543
  alreadyCalled = true;
4154
5544
  values[index] = value;
@@ -4167,9 +5557,9 @@ $({ target: PROMISE, stat: true, forced: INCORRECT_ITERATION }, {
4167
5557
  var capability = newPromiseCapability(C);
4168
5558
  var reject = capability.reject;
4169
5559
  var result = perform(function () {
4170
- var $promiseResolve = aFunction(C.resolve);
5560
+ var $promiseResolve = aCallable(C.resolve);
4171
5561
  iterate(iterable, function (promise) {
4172
- $promiseResolve.call(C, promise).then(capability.resolve, reject);
5562
+ call($promiseResolve, C, promise).then(capability.resolve, reject);
4173
5563
  });
4174
5564
  });
4175
5565
  if (result.error) reject(result.value);
@@ -4183,18 +5573,20 @@ $({ target: PROMISE, stat: true, forced: INCORRECT_ITERATION }, {
4183
5573
  /***/ "e893":
4184
5574
  /***/ (function(module, exports, __webpack_require__) {
4185
5575
 
4186
- var has = __webpack_require__("5135");
5576
+ var hasOwn = __webpack_require__("1a2d");
4187
5577
  var ownKeys = __webpack_require__("56ef");
4188
5578
  var getOwnPropertyDescriptorModule = __webpack_require__("06cf");
4189
5579
  var definePropertyModule = __webpack_require__("9bf2");
4190
5580
 
4191
- module.exports = function (target, source) {
5581
+ module.exports = function (target, source, exceptions) {
4192
5582
  var keys = ownKeys(source);
4193
5583
  var defineProperty = definePropertyModule.f;
4194
5584
  var getOwnPropertyDescriptor = getOwnPropertyDescriptorModule.f;
4195
5585
  for (var i = 0; i < keys.length; i++) {
4196
5586
  var key = keys[i];
4197
- if (!has(target, key)) defineProperty(target, key, getOwnPropertyDescriptor(source, key));
5587
+ if (!hasOwn(target, key) && !(exceptions && hasOwn(exceptions, key))) {
5588
+ defineProperty(target, key, getOwnPropertyDescriptor(source, key));
5589
+ }
4198
5590
  }
4199
5591
  };
4200
5592
 
@@ -4208,8 +5600,9 @@ var classof = __webpack_require__("c6b6");
4208
5600
 
4209
5601
  // `IsArray` abstract operation
4210
5602
  // https://tc39.es/ecma262/#sec-isarray
4211
- module.exports = Array.isArray || function isArray(arg) {
4212
- return classof(arg) == 'Array';
5603
+ // eslint-disable-next-line es/no-array-isarray -- safe
5604
+ module.exports = Array.isArray || function isArray(argument) {
5605
+ return classof(argument) == 'Array';
4213
5606
  };
4214
5607
 
4215
5608
 
@@ -4237,7 +5630,7 @@ module.exports = function (it) {
4237
5630
 
4238
5631
  "use strict";
4239
5632
 
4240
- var aFunction = __webpack_require__("1c0b");
5633
+ var aCallable = __webpack_require__("59ed");
4241
5634
 
4242
5635
  var PromiseCapability = function (C) {
4243
5636
  var resolve, reject;
@@ -4246,26 +5639,41 @@ var PromiseCapability = function (C) {
4246
5639
  resolve = $$resolve;
4247
5640
  reject = $$reject;
4248
5641
  });
4249
- this.resolve = aFunction(resolve);
4250
- this.reject = aFunction(reject);
5642
+ this.resolve = aCallable(resolve);
5643
+ this.reject = aCallable(reject);
4251
5644
  };
4252
5645
 
4253
- // 25.4.1.5 NewPromiseCapability(C)
5646
+ // `NewPromiseCapability` abstract operation
5647
+ // https://tc39.es/ecma262/#sec-newpromisecapability
4254
5648
  module.exports.f = function (C) {
4255
5649
  return new PromiseCapability(C);
4256
5650
  };
4257
5651
 
4258
5652
 
5653
+ /***/ }),
5654
+
5655
+ /***/ "f36a":
5656
+ /***/ (function(module, exports, __webpack_require__) {
5657
+
5658
+ var uncurryThis = __webpack_require__("e330");
5659
+
5660
+ module.exports = uncurryThis([].slice);
5661
+
5662
+
4259
5663
  /***/ }),
4260
5664
 
4261
5665
  /***/ "f5df":
4262
5666
  /***/ (function(module, exports, __webpack_require__) {
4263
5667
 
5668
+ var global = __webpack_require__("da84");
4264
5669
  var TO_STRING_TAG_SUPPORT = __webpack_require__("00ee");
5670
+ var isCallable = __webpack_require__("1626");
4265
5671
  var classofRaw = __webpack_require__("c6b6");
4266
5672
  var wellKnownSymbol = __webpack_require__("b622");
4267
5673
 
4268
5674
  var TO_STRING_TAG = wellKnownSymbol('toStringTag');
5675
+ var Object = global.Object;
5676
+
4269
5677
  // ES3 wrong here
4270
5678
  var CORRECT_ARGUMENTS = classofRaw(function () { return arguments; }()) == 'Arguments';
4271
5679
 
@@ -4285,7 +5693,7 @@ module.exports = TO_STRING_TAG_SUPPORT ? classofRaw : function (it) {
4285
5693
  // builtinTag case
4286
5694
  : CORRECT_ARGUMENTS ? classofRaw(O)
4287
5695
  // ES3 arguments fallback
4288
- : (result = classofRaw(O)) == 'Object' && typeof O.callee == 'function' ? 'Arguments' : result;
5696
+ : (result = classofRaw(O)) == 'Object' && isCallable(O.callee) ? 'Arguments' : result;
4289
5697
  };
4290
5698
 
4291
5699
 
@@ -4337,15 +5745,15 @@ if (typeof window !== 'undefined') {
4337
5745
  // Indicate to webpack that this file can be concatenated
4338
5746
  /* harmony default export */ var setPublicPath = (null);
4339
5747
 
4340
- // CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"1f9dbe80-vue-loader-template"}!./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/cache-loader/dist/cjs.js??ref--0-0!./node_modules/vue-loader/lib??vue-loader-options!./src/components/VTabs.vue?vue&type=template&id=28a5ce60&
4341
- var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',{staticClass:"v-tabs",class:[("__" + _vm.direction)]},[_vm._l((_vm.list),function(tab){return _c('div',{key:tab[_vm.trackBy],ref:"tabs",refInFor:true,staticClass:"v-tabs_tab",class:{
4342
- __active: _vm.value && _vm.value[_vm.trackBy] === tab[_vm.trackBy],
4343
- _disabled: tab && tab._disabled
4344
- },on:{"click":function($event){return _vm.handleTabSelect(tab, _vm.event)}}},[_vm._t("single-tab",[_vm._v(" "+_vm._s(tab.title || '')+" ")],{"tab":tab})],2)}),(_vm.withSlider)?_c('div',{staticClass:"v-tabs_slider",style:(_vm.sliderStyle)}):_vm._e()],2)}
5748
+ // CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"ea8232f0-vue-loader-template"}!./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/cache-loader/dist/cjs.js??ref--1-0!./node_modules/vue-loader/lib??vue-loader-options!./src/components/VTabs.vue?vue&type=template&id=08d5de16&
5749
+ var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',{staticClass:"v-tabs",class:[("__" + _vm.direction)]},[_c('div',{staticClass:"v-tabs_inner"},_vm._l((_vm.list),function(tab){return _c('div',{key:tab[_vm.trackBy],ref:"tabs",refInFor:true,staticClass:"v-tabs_tab",class:{
5750
+ __active: _vm.value && _vm.value[_vm.trackBy] === tab[_vm.trackBy],
5751
+ _disabled: tab && tab._disabled
5752
+ },on:{"click":function($event){return _vm.handleTabSelect(tab, _vm.event)}}},[_vm._t("single-tab",function(){return [_vm._v(" "+_vm._s(tab.title || '')+" ")]},{"tab":tab})],2)}),0),(_vm.withSlider)?_c('div',{staticClass:"v-tabs_slider",style:(_vm.sliderStyle)}):_vm._e()])}
4345
5753
  var staticRenderFns = []
4346
5754
 
4347
5755
 
4348
- // CONCATENATED MODULE: ./src/components/VTabs.vue?vue&type=template&id=28a5ce60&
5756
+ // CONCATENATED MODULE: ./src/components/VTabs.vue?vue&type=template&id=08d5de16&
4349
5757
 
4350
5758
  // CONCATENATED MODULE: ./node_modules/@babel/runtime/helpers/esm/arrayWithHoles.js
4351
5759
  function _arrayWithHoles(arr) {
@@ -4363,12 +5771,12 @@ var es_object_to_string = __webpack_require__("d3b7");
4363
5771
  // EXTERNAL MODULE: ./node_modules/core-js/modules/es.symbol.iterator.js
4364
5772
  var es_symbol_iterator = __webpack_require__("d28b");
4365
5773
 
4366
- // EXTERNAL MODULE: ./node_modules/core-js/modules/es.string.iterator.js
4367
- var es_string_iterator = __webpack_require__("3ca3");
4368
-
4369
5774
  // EXTERNAL MODULE: ./node_modules/core-js/modules/es.array.iterator.js
4370
5775
  var es_array_iterator = __webpack_require__("e260");
4371
5776
 
5777
+ // EXTERNAL MODULE: ./node_modules/core-js/modules/es.string.iterator.js
5778
+ var es_string_iterator = __webpack_require__("3ca3");
5779
+
4372
5780
  // EXTERNAL MODULE: ./node_modules/core-js/modules/web.dom-collections.iterator.js
4373
5781
  var web_dom_collections_iterator = __webpack_require__("ddb0");
4374
5782
 
@@ -4381,14 +5789,17 @@ var web_dom_collections_iterator = __webpack_require__("ddb0");
4381
5789
 
4382
5790
 
4383
5791
  function _iterableToArrayLimit(arr, i) {
4384
- if (typeof Symbol === "undefined" || !(Symbol.iterator in Object(arr))) return;
5792
+ var _i = arr == null ? null : typeof Symbol !== "undefined" && arr[Symbol.iterator] || arr["@@iterator"];
5793
+
5794
+ if (_i == null) return;
4385
5795
  var _arr = [];
4386
5796
  var _n = true;
4387
5797
  var _d = false;
4388
- var _e = undefined;
5798
+
5799
+ var _s, _e;
4389
5800
 
4390
5801
  try {
4391
- for (var _i = arr[Symbol.iterator](), _s; !(_n = (_s = _i.next()).done); _n = true) {
5802
+ for (_i = _i.call(arr); !(_n = (_s = _i.next()).done); _n = true) {
4392
5803
  _arr.push(_s.value);
4393
5804
 
4394
5805
  if (i && _arr.length === i) break;
@@ -4415,6 +5826,12 @@ var es_function_name = __webpack_require__("b0c0");
4415
5826
  // EXTERNAL MODULE: ./node_modules/core-js/modules/es.array.from.js
4416
5827
  var es_array_from = __webpack_require__("a630");
4417
5828
 
5829
+ // EXTERNAL MODULE: ./node_modules/core-js/modules/es.regexp.exec.js
5830
+ var es_regexp_exec = __webpack_require__("ac1f");
5831
+
5832
+ // EXTERNAL MODULE: ./node_modules/core-js/modules/es.regexp.test.js
5833
+ var es_regexp_test = __webpack_require__("00b4");
5834
+
4418
5835
  // CONCATENATED MODULE: ./node_modules/@babel/runtime/helpers/esm/arrayLikeToArray.js
4419
5836
  function _arrayLikeToArray(arr, len) {
4420
5837
  if (len == null || len > arr.length) len = arr.length;
@@ -4432,6 +5849,8 @@ function _arrayLikeToArray(arr, len) {
4432
5849
 
4433
5850
 
4434
5851
 
5852
+
5853
+
4435
5854
  function _unsupportedIterableToArray(o, minLen) {
4436
5855
  if (!o) return;
4437
5856
  if (typeof o === "string") return _arrayLikeToArray(o, minLen);
@@ -4440,7 +5859,11 @@ function _unsupportedIterableToArray(o, minLen) {
4440
5859
  if (n === "Map" || n === "Set") return Array.from(o);
4441
5860
  if (n === "Arguments" || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)) return _arrayLikeToArray(o, minLen);
4442
5861
  }
5862
+ // EXTERNAL MODULE: ./node_modules/core-js/modules/es.error.cause.js
5863
+ var es_error_cause = __webpack_require__("d9e2");
5864
+
4443
5865
  // CONCATENATED MODULE: ./node_modules/@babel/runtime/helpers/esm/nonIterableRest.js
5866
+
4444
5867
  function _nonIterableRest() {
4445
5868
  throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.");
4446
5869
  }
@@ -4497,10 +5920,21 @@ function _asyncToGenerator(fn) {
4497
5920
  // EXTERNAL MODULE: ./node_modules/regenerator-runtime/runtime.js
4498
5921
  var runtime = __webpack_require__("96cf");
4499
5922
 
4500
- // CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js??ref--12-0!./node_modules/thread-loader/dist/cjs.js!./node_modules/babel-loader/lib!./node_modules/cache-loader/dist/cjs.js??ref--0-0!./node_modules/vue-loader/lib??vue-loader-options!./src/components/VTabs.vue?vue&type=script&lang=js&
5923
+ // EXTERNAL MODULE: ./node_modules/core-js/modules/es.number.constructor.js
5924
+ var es_number_constructor = __webpack_require__("a9e3");
5925
+
5926
+ // EXTERNAL MODULE: ./node_modules/core-js/modules/es.array.find.js
5927
+ var es_array_find = __webpack_require__("7db0");
5928
+
5929
+ // CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js??ref--13-0!./node_modules/thread-loader/dist/cjs.js!./node_modules/babel-loader/lib!./node_modules/cache-loader/dist/cjs.js??ref--1-0!./node_modules/vue-loader/lib??vue-loader-options!./src/components/VTabs.vue?vue&type=script&lang=js&
4501
5930
 
4502
5931
 
4503
5932
 
5933
+
5934
+
5935
+
5936
+ //
5937
+ //
4504
5938
  //
4505
5939
  //
4506
5940
  //
@@ -4546,6 +5980,10 @@ var runtime = __webpack_require__("96cf");
4546
5980
  withSlider: {
4547
5981
  type: Boolean,
4548
5982
  default: false
5983
+ },
5984
+ initialTab: {
5985
+ type: [Number, String],
5986
+ default: null
4549
5987
  }
4550
5988
  },
4551
5989
  data: function data() {
@@ -4554,42 +5992,61 @@ var runtime = __webpack_require__("96cf");
4554
5992
  };
4555
5993
  },
4556
5994
  mounted: function mounted() {
5995
+ var _this = this;
5996
+
4557
5997
  if (this.selectFirst && this.list.length && !this.value) {
4558
5998
  this.handleTabSelect(this.list[0]);
4559
5999
  }
6000
+
6001
+ if (this.initialTab && this.list.length && !this.value) {
6002
+ var tab = this.list.find(function (tab) {
6003
+ return tab[_this.trackBy] === _this.initialTab;
6004
+ });
6005
+ tab && this.handleTabSelect(tab);
6006
+ }
4560
6007
  },
4561
6008
  methods: {
4562
6009
  handleTabSelect: function handleTabSelect(tab) {
4563
- var _this = this;
6010
+ var _this2 = this;
4564
6011
 
4565
6012
  return _asyncToGenerator( /*#__PURE__*/regeneratorRuntime.mark(function _callee() {
4566
- var _this$$el$getBounding, tabsLeft, _this$$el$getElements, _this$$el$getElements2, currentTabEl, _currentTabEl$getBoun, currentTabLeft, width, leftPoisiton;
6013
+ var _this2$$el$getBoundin, tabsLeft, _this2$$el$getElement, _this2$$el$getElement2, currentTabEl, _currentTabEl$getBoun, currentTabLeft, width, widthTabs, screenWidth, tabsLeftScroll, leftPoisiton;
4567
6014
 
4568
6015
  return regeneratorRuntime.wrap(function _callee$(_context) {
4569
6016
  while (1) {
4570
6017
  switch (_context.prev = _context.next) {
4571
6018
  case 0:
4572
- _this.$emit('input', tab);
6019
+ _this2.$emit('input', tab);
4573
6020
 
4574
- if (!_this.withSlider) {
4575
- _context.next = 9;
6021
+ if (!_this2.withSlider) {
6022
+ _context.next = 13;
4576
6023
  break;
4577
6024
  }
4578
6025
 
4579
6026
  _context.next = 4;
4580
- return _this.$nextTick;
6027
+ return _this2.$nextTick;
4581
6028
 
4582
6029
  case 4:
4583
- _this$$el$getBounding = _this.$el.getBoundingClientRect(), tabsLeft = _this$$el$getBounding.left;
4584
- _this$$el$getElements = _this.$el.getElementsByClassName('__active'), _this$$el$getElements2 = _slicedToArray(_this$$el$getElements, 1), currentTabEl = _this$$el$getElements2[0];
6030
+ _this2$$el$getBoundin = _this2.$el.getBoundingClientRect(), tabsLeft = _this2$$el$getBoundin.left;
6031
+ _this2$$el$getElement = _this2.$el.getElementsByClassName('__active'), _this2$$el$getElement2 = _slicedToArray(_this2$$el$getElement, 1), currentTabEl = _this2$$el$getElement2[0];
4585
6032
  _currentTabEl$getBoun = currentTabEl.getBoundingClientRect(), currentTabLeft = _currentTabEl$getBoun.left, width = _currentTabEl$getBoun.width;
4586
- leftPoisiton = currentTabLeft - tabsLeft;
4587
- _this.sliderStyle = {
6033
+ widthTabs = _this2.$el.scrollWidth;
6034
+ screenWidth = window.innerWidth;
6035
+ tabsLeftScroll = _this2.$el.scrollLeft;
6036
+ leftPoisiton = null;
6037
+
6038
+ if (widthTabs > screenWidth) {
6039
+ leftPoisiton = currentTabLeft + tabsLeftScroll - tabsLeft;
6040
+ } else {
6041
+ leftPoisiton = currentTabLeft - tabsLeft;
6042
+ }
6043
+
6044
+ _this2.sliderStyle = {
4588
6045
  transform: "translateX(".concat(leftPoisiton, "px)"),
4589
6046
  width: "".concat(width, "px")
4590
6047
  };
4591
6048
 
4592
- case 9:
6049
+ case 13:
4593
6050
  case "end":
4594
6051
  return _context.stop();
4595
6052
  }
@@ -4743,19 +6200,22 @@ var component = normalizeComponent(
4743
6200
  "use strict";
4744
6201
 
4745
6202
  var $ = __webpack_require__("23e7");
4746
- var isObject = __webpack_require__("861d");
6203
+ var global = __webpack_require__("da84");
4747
6204
  var isArray = __webpack_require__("e8b5");
6205
+ var isConstructor = __webpack_require__("68ee");
6206
+ var isObject = __webpack_require__("861d");
4748
6207
  var toAbsoluteIndex = __webpack_require__("23cb");
4749
- var toLength = __webpack_require__("50c4");
6208
+ var lengthOfArrayLike = __webpack_require__("07fa");
4750
6209
  var toIndexedObject = __webpack_require__("fc6a");
4751
6210
  var createProperty = __webpack_require__("8418");
4752
6211
  var wellKnownSymbol = __webpack_require__("b622");
4753
6212
  var arrayMethodHasSpeciesSupport = __webpack_require__("1dde");
6213
+ var un$Slice = __webpack_require__("f36a");
4754
6214
 
4755
6215
  var HAS_SPECIES_SUPPORT = arrayMethodHasSpeciesSupport('slice');
4756
6216
 
4757
6217
  var SPECIES = wellKnownSymbol('species');
4758
- var nativeSlice = [].slice;
6218
+ var Array = global.Array;
4759
6219
  var max = Math.max;
4760
6220
 
4761
6221
  // `Array.prototype.slice` method
@@ -4764,7 +6224,7 @@ var max = Math.max;
4764
6224
  $({ target: 'Array', proto: true, forced: !HAS_SPECIES_SUPPORT }, {
4765
6225
  slice: function slice(start, end) {
4766
6226
  var O = toIndexedObject(this);
4767
- var length = toLength(O.length);
6227
+ var length = lengthOfArrayLike(O);
4768
6228
  var k = toAbsoluteIndex(start, length);
4769
6229
  var fin = toAbsoluteIndex(end === undefined ? length : end, length);
4770
6230
  // inline `ArraySpeciesCreate` for usage native `Array#slice` where it's possible
@@ -4772,14 +6232,14 @@ $({ target: 'Array', proto: true, forced: !HAS_SPECIES_SUPPORT }, {
4772
6232
  if (isArray(O)) {
4773
6233
  Constructor = O.constructor;
4774
6234
  // cross-realm fallback
4775
- if (typeof Constructor == 'function' && (Constructor === Array || isArray(Constructor.prototype))) {
6235
+ if (isConstructor(Constructor) && (Constructor === Array || isArray(Constructor.prototype))) {
4776
6236
  Constructor = undefined;
4777
6237
  } else if (isObject(Constructor)) {
4778
6238
  Constructor = Constructor[SPECIES];
4779
6239
  if (Constructor === null) Constructor = undefined;
4780
6240
  }
4781
6241
  if (Constructor === Array || Constructor === undefined) {
4782
- return nativeSlice.call(O, k, fin);
6242
+ return un$Slice(O, k, fin);
4783
6243
  }
4784
6244
  }
4785
6245
  result = new (Constructor === undefined ? Array : Constructor)(max(fin - k, 0));
@@ -4804,6 +6264,23 @@ module.exports = function (it) {
4804
6264
  };
4805
6265
 
4806
6266
 
6267
+ /***/ }),
6268
+
6269
+ /***/ "fce3":
6270
+ /***/ (function(module, exports, __webpack_require__) {
6271
+
6272
+ var fails = __webpack_require__("d039");
6273
+ var global = __webpack_require__("da84");
6274
+
6275
+ // babel-minify and Closure Compiler transpiles RegExp('.', 's') -> /./s and it causes SyntaxError
6276
+ var $RegExp = global.RegExp;
6277
+
6278
+ module.exports = fails(function () {
6279
+ var re = $RegExp('.', 's');
6280
+ return !(re.dotAll && re.exec('\n') && re.flags === 's');
6281
+ });
6282
+
6283
+
4807
6284
  /***/ }),
4808
6285
 
4809
6286
  /***/ "fdbc":
@@ -4851,10 +6328,10 @@ module.exports = {
4851
6328
  /***/ "fdbf":
4852
6329
  /***/ (function(module, exports, __webpack_require__) {
4853
6330
 
6331
+ /* eslint-disable es/no-symbol -- required for testing */
4854
6332
  var NATIVE_SYMBOL = __webpack_require__("4930");
4855
6333
 
4856
6334
  module.exports = NATIVE_SYMBOL
4857
- /* global Symbol -- safe */
4858
6335
  && !Symbol.sham
4859
6336
  && typeof Symbol.iterator == 'symbol';
4860
6337