@dotcms/experiments 0.0.1-alpha.28 → 0.0.1-alpha.30

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.
Files changed (2) hide show
  1. package/index.esm.js +1079 -624
  2. package/package.json +5 -4
package/index.esm.js CHANGED
@@ -10,7 +10,7 @@ var check = function (it) {
10
10
  };
11
11
 
12
12
  // https://github.com/zloirock/core-js/issues/86#issuecomment-115759028
13
- var global$o =
13
+ var global$p =
14
14
  // eslint-disable-next-line es/no-global-this -- safe
15
15
  check(typeof globalThis == 'object' && globalThis) ||
16
16
  check(typeof window == 'object' && window) ||
@@ -23,7 +23,7 @@ var global$o =
23
23
 
24
24
  var objectGetOwnPropertyDescriptor = {};
25
25
 
26
- var fails$l = function (exec) {
26
+ var fails$n = function (exec) {
27
27
  try {
28
28
  return !!exec();
29
29
  } catch (error) {
@@ -31,17 +31,17 @@ var fails$l = function (exec) {
31
31
  }
32
32
  };
33
33
 
34
- var fails$k = fails$l;
34
+ var fails$m = fails$n;
35
35
 
36
36
  // Detect IE8's incomplete defineProperty implementation
37
- var descriptors = !fails$k(function () {
37
+ var descriptors = !fails$m(function () {
38
38
  // eslint-disable-next-line es/no-object-defineproperty -- required for testing
39
39
  return Object.defineProperty({}, 1, { get: function () { return 7; } })[1] !== 7;
40
40
  });
41
41
 
42
- var fails$j = fails$l;
42
+ var fails$l = fails$n;
43
43
 
44
- var functionBindNative = !fails$j(function () {
44
+ var functionBindNative = !fails$l(function () {
45
45
  // eslint-disable-next-line es/no-function-prototype-bind -- safe
46
46
  var test = (function () { /* empty */ }).bind();
47
47
  // eslint-disable-next-line no-prototype-builtins -- safe
@@ -50,10 +50,10 @@ var functionBindNative = !fails$j(function () {
50
50
 
51
51
  var NATIVE_BIND$3 = functionBindNative;
52
52
 
53
- var call$l = Function.prototype.call;
53
+ var call$n = Function.prototype.call;
54
54
 
55
- var functionCall = NATIVE_BIND$3 ? call$l.bind(call$l) : function () {
56
- return call$l.apply(call$l, arguments);
55
+ var functionCall = NATIVE_BIND$3 ? call$n.bind(call$n) : function () {
56
+ return call$n.apply(call$n, arguments);
57
57
  };
58
58
 
59
59
  var objectPropertyIsEnumerable = {};
@@ -72,7 +72,7 @@ objectPropertyIsEnumerable.f = NASHORN_BUG ? function propertyIsEnumerable(V) {
72
72
  return !!descriptor && descriptor.enumerable;
73
73
  } : $propertyIsEnumerable;
74
74
 
75
- var createPropertyDescriptor$5 = function (bitmap, value) {
75
+ var createPropertyDescriptor$6 = function (bitmap, value) {
76
76
  return {
77
77
  enumerable: !(bitmap & 1),
78
78
  configurable: !(bitmap & 2),
@@ -84,38 +84,38 @@ var createPropertyDescriptor$5 = function (bitmap, value) {
84
84
  var NATIVE_BIND$2 = functionBindNative;
85
85
 
86
86
  var FunctionPrototype$2 = Function.prototype;
87
- var call$k = FunctionPrototype$2.call;
88
- var uncurryThisWithBind = NATIVE_BIND$2 && FunctionPrototype$2.bind.bind(call$k, call$k);
87
+ var call$m = FunctionPrototype$2.call;
88
+ var uncurryThisWithBind = NATIVE_BIND$2 && FunctionPrototype$2.bind.bind(call$m, call$m);
89
89
 
90
90
  var functionUncurryThis = NATIVE_BIND$2 ? uncurryThisWithBind : function (fn) {
91
91
  return function () {
92
- return call$k.apply(fn, arguments);
92
+ return call$m.apply(fn, arguments);
93
93
  };
94
94
  };
95
95
 
96
- var uncurryThis$l = functionUncurryThis;
96
+ var uncurryThis$r = functionUncurryThis;
97
97
 
98
- var toString$8 = uncurryThis$l({}.toString);
99
- var stringSlice$6 = uncurryThis$l(''.slice);
98
+ var toString$d = uncurryThis$r({}.toString);
99
+ var stringSlice$6 = uncurryThis$r(''.slice);
100
100
 
101
101
  var classofRaw$2 = function (it) {
102
- return stringSlice$6(toString$8(it), 8, -1);
102
+ return stringSlice$6(toString$d(it), 8, -1);
103
103
  };
104
104
 
105
- var uncurryThis$k = functionUncurryThis;
106
- var fails$i = fails$l;
107
- var classof$8 = classofRaw$2;
105
+ var uncurryThis$q = functionUncurryThis;
106
+ var fails$k = fails$n;
107
+ var classof$b = classofRaw$2;
108
108
 
109
109
  var $Object$4 = Object;
110
- var split$3 = uncurryThis$k(''.split);
110
+ var split$3 = uncurryThis$q(''.split);
111
111
 
112
112
  // fallback for non-array-like ES3 and non-enumerable old V8 strings
113
- var indexedObject = fails$i(function () {
113
+ var indexedObject = fails$k(function () {
114
114
  // throws an error in rhino, see https://github.com/mozilla/rhino/issues/346
115
115
  // eslint-disable-next-line no-prototype-builtins -- safe
116
116
  return !$Object$4('z').propertyIsEnumerable(0);
117
117
  }) ? function (it) {
118
- return classof$8(it) === 'String' ? split$3(it, '') : $Object$4(it);
118
+ return classof$b(it) === 'String' ? split$3(it, '') : $Object$4(it);
119
119
  } : $Object$4;
120
120
 
121
121
  // we can't use just `it == null` since of `document.all` special case
@@ -126,12 +126,12 @@ var isNullOrUndefined$5 = function (it) {
126
126
 
127
127
  var isNullOrUndefined$4 = isNullOrUndefined$5;
128
128
 
129
- var $TypeError$e = TypeError;
129
+ var $TypeError$f = TypeError;
130
130
 
131
131
  // `RequireObjectCoercible` abstract operation
132
132
  // https://tc39.es/ecma262/#sec-requireobjectcoercible
133
133
  var requireObjectCoercible$6 = function (it) {
134
- if (isNullOrUndefined$4(it)) throw new $TypeError$e("Can't call method on " + it);
134
+ if (isNullOrUndefined$4(it)) throw new $TypeError$f("Can't call method on " + it);
135
135
  return it;
136
136
  };
137
137
 
@@ -149,40 +149,40 @@ var documentAll = typeof document == 'object' && document.all;
149
149
  // `IsCallable` abstract operation
150
150
  // https://tc39.es/ecma262/#sec-iscallable
151
151
  // eslint-disable-next-line unicorn/no-typeof-undefined -- required for testing
152
- var isCallable$m = typeof documentAll == 'undefined' && documentAll !== undefined ? function (argument) {
152
+ var isCallable$p = typeof documentAll == 'undefined' && documentAll !== undefined ? function (argument) {
153
153
  return typeof argument == 'function' || argument === documentAll;
154
154
  } : function (argument) {
155
155
  return typeof argument == 'function';
156
156
  };
157
157
 
158
- var isCallable$l = isCallable$m;
158
+ var isCallable$o = isCallable$p;
159
159
 
160
- var isObject$d = function (it) {
161
- return typeof it == 'object' ? it !== null : isCallable$l(it);
160
+ var isObject$e = function (it) {
161
+ return typeof it == 'object' ? it !== null : isCallable$o(it);
162
162
  };
163
163
 
164
- var global$n = global$o;
165
- var isCallable$k = isCallable$m;
164
+ var global$o = global$p;
165
+ var isCallable$n = isCallable$p;
166
166
 
167
167
  var aFunction = function (argument) {
168
- return isCallable$k(argument) ? argument : undefined;
168
+ return isCallable$n(argument) ? argument : undefined;
169
169
  };
170
170
 
171
- var getBuiltIn$7 = function (namespace, method) {
172
- return arguments.length < 2 ? aFunction(global$n[namespace]) : global$n[namespace] && global$n[namespace][method];
171
+ var getBuiltIn$9 = function (namespace, method) {
172
+ return arguments.length < 2 ? aFunction(global$o[namespace]) : global$o[namespace] && global$o[namespace][method];
173
173
  };
174
174
 
175
- var uncurryThis$j = functionUncurryThis;
175
+ var uncurryThis$p = functionUncurryThis;
176
176
 
177
- var objectIsPrototypeOf = uncurryThis$j({}.isPrototypeOf);
177
+ var objectIsPrototypeOf = uncurryThis$p({}.isPrototypeOf);
178
178
 
179
179
  var engineUserAgent = typeof navigator != 'undefined' && String(navigator.userAgent) || '';
180
180
 
181
- var global$m = global$o;
181
+ var global$n = global$p;
182
182
  var userAgent$3 = engineUserAgent;
183
183
 
184
- var process$3 = global$m.process;
185
- var Deno$1 = global$m.Deno;
184
+ var process$3 = global$n.process;
185
+ var Deno$1 = global$n.Deno;
186
186
  var versions = process$3 && process$3.versions || Deno$1 && Deno$1.version;
187
187
  var v8 = versions && versions.v8;
188
188
  var match, version;
@@ -208,63 +208,63 @@ var engineV8Version = version;
208
208
 
209
209
  /* eslint-disable es/no-symbol -- required for testing */
210
210
  var V8_VERSION$1 = engineV8Version;
211
- var fails$h = fails$l;
212
- var global$l = global$o;
211
+ var fails$j = fails$n;
212
+ var global$m = global$p;
213
213
 
214
- var $String$5 = global$l.String;
214
+ var $String$6 = global$m.String;
215
215
 
216
216
  // eslint-disable-next-line es/no-object-getownpropertysymbols -- required for testing
217
- var symbolConstructorDetection = !!Object.getOwnPropertySymbols && !fails$h(function () {
217
+ var symbolConstructorDetection = !!Object.getOwnPropertySymbols && !fails$j(function () {
218
218
  var symbol = Symbol('symbol detection');
219
219
  // Chrome 38 Symbol has incorrect toString conversion
220
220
  // `get-own-property-symbols` polyfill symbols converted to object are not Symbol instances
221
221
  // nb: Do not call `String` directly to avoid this being optimized out to `symbol+''` which will,
222
222
  // of course, fail.
223
- return !$String$5(symbol) || !(Object(symbol) instanceof Symbol) ||
223
+ return !$String$6(symbol) || !(Object(symbol) instanceof Symbol) ||
224
224
  // Chrome 38-40 symbols are not inherited from DOM collections prototypes to instances
225
225
  !Symbol.sham && V8_VERSION$1 && V8_VERSION$1 < 41;
226
226
  });
227
227
 
228
228
  /* eslint-disable es/no-symbol -- required for testing */
229
- var NATIVE_SYMBOL$1 = symbolConstructorDetection;
229
+ var NATIVE_SYMBOL$2 = symbolConstructorDetection;
230
230
 
231
- var useSymbolAsUid = NATIVE_SYMBOL$1
231
+ var useSymbolAsUid = NATIVE_SYMBOL$2
232
232
  && !Symbol.sham
233
233
  && typeof Symbol.iterator == 'symbol';
234
234
 
235
- var getBuiltIn$6 = getBuiltIn$7;
236
- var isCallable$j = isCallable$m;
237
- var isPrototypeOf$4 = objectIsPrototypeOf;
235
+ var getBuiltIn$8 = getBuiltIn$9;
236
+ var isCallable$m = isCallable$p;
237
+ var isPrototypeOf$5 = objectIsPrototypeOf;
238
238
  var USE_SYMBOL_AS_UID$1 = useSymbolAsUid;
239
239
 
240
240
  var $Object$3 = Object;
241
241
 
242
- var isSymbol$2 = USE_SYMBOL_AS_UID$1 ? function (it) {
242
+ var isSymbol$3 = USE_SYMBOL_AS_UID$1 ? function (it) {
243
243
  return typeof it == 'symbol';
244
244
  } : function (it) {
245
- var $Symbol = getBuiltIn$6('Symbol');
246
- return isCallable$j($Symbol) && isPrototypeOf$4($Symbol.prototype, $Object$3(it));
245
+ var $Symbol = getBuiltIn$8('Symbol');
246
+ return isCallable$m($Symbol) && isPrototypeOf$5($Symbol.prototype, $Object$3(it));
247
247
  };
248
248
 
249
- var $String$4 = String;
249
+ var $String$5 = String;
250
250
 
251
251
  var tryToString$4 = function (argument) {
252
252
  try {
253
- return $String$4(argument);
253
+ return $String$5(argument);
254
254
  } catch (error) {
255
255
  return 'Object';
256
256
  }
257
257
  };
258
258
 
259
- var isCallable$i = isCallable$m;
259
+ var isCallable$l = isCallable$p;
260
260
  var tryToString$3 = tryToString$4;
261
261
 
262
- var $TypeError$d = TypeError;
262
+ var $TypeError$e = TypeError;
263
263
 
264
264
  // `Assert: IsCallable(argument) is true`
265
265
  var aCallable$8 = function (argument) {
266
- if (isCallable$i(argument)) return argument;
267
- throw new $TypeError$d(tryToString$3(argument) + ' is not a function');
266
+ if (isCallable$l(argument)) return argument;
267
+ throw new $TypeError$e(tryToString$3(argument) + ' is not a function');
268
268
  };
269
269
 
270
270
  var aCallable$7 = aCallable$8;
@@ -277,54 +277,56 @@ var getMethod$4 = function (V, P) {
277
277
  return isNullOrUndefined$3(func) ? undefined : aCallable$7(func);
278
278
  };
279
279
 
280
- var call$j = functionCall;
281
- var isCallable$h = isCallable$m;
282
- var isObject$c = isObject$d;
280
+ var call$l = functionCall;
281
+ var isCallable$k = isCallable$p;
282
+ var isObject$d = isObject$e;
283
283
 
284
- var $TypeError$c = TypeError;
284
+ var $TypeError$d = TypeError;
285
285
 
286
286
  // `OrdinaryToPrimitive` abstract operation
287
287
  // https://tc39.es/ecma262/#sec-ordinarytoprimitive
288
288
  var ordinaryToPrimitive$1 = function (input, pref) {
289
289
  var fn, val;
290
- if (pref === 'string' && isCallable$h(fn = input.toString) && !isObject$c(val = call$j(fn, input))) return val;
291
- if (isCallable$h(fn = input.valueOf) && !isObject$c(val = call$j(fn, input))) return val;
292
- if (pref !== 'string' && isCallable$h(fn = input.toString) && !isObject$c(val = call$j(fn, input))) return val;
293
- throw new $TypeError$c("Can't convert object to primitive value");
290
+ if (pref === 'string' && isCallable$k(fn = input.toString) && !isObject$d(val = call$l(fn, input))) return val;
291
+ if (isCallable$k(fn = input.valueOf) && !isObject$d(val = call$l(fn, input))) return val;
292
+ if (pref !== 'string' && isCallable$k(fn = input.toString) && !isObject$d(val = call$l(fn, input))) return val;
293
+ throw new $TypeError$d("Can't convert object to primitive value");
294
294
  };
295
295
 
296
296
  var sharedStore = {exports: {}};
297
297
 
298
298
  var isPure = false;
299
299
 
300
- var global$k = global$o;
300
+ var global$l = global$p;
301
301
 
302
302
  // eslint-disable-next-line es/no-object-defineproperty -- safe
303
303
  var defineProperty$7 = Object.defineProperty;
304
304
 
305
305
  var defineGlobalProperty$3 = function (key, value) {
306
306
  try {
307
- defineProperty$7(global$k, key, { value: value, configurable: true, writable: true });
307
+ defineProperty$7(global$l, key, { value: value, configurable: true, writable: true });
308
308
  } catch (error) {
309
- global$k[key] = value;
309
+ global$l[key] = value;
310
310
  } return value;
311
311
  };
312
312
 
313
- var globalThis$1 = global$o;
313
+ var globalThis$1 = global$p;
314
314
  var defineGlobalProperty$2 = defineGlobalProperty$3;
315
315
 
316
316
  var SHARED = '__core-js_shared__';
317
317
  var store$3 = sharedStore.exports = globalThis$1[SHARED] || defineGlobalProperty$2(SHARED, {});
318
318
 
319
319
  (store$3.versions || (store$3.versions = [])).push({
320
- version: '3.37.1',
320
+ version: '3.36.1',
321
321
  mode: 'global',
322
322
  copyright: '© 2014-2024 Denis Pushkarev (zloirock.ru)',
323
- license: 'https://github.com/zloirock/core-js/blob/v3.37.1/LICENSE',
323
+ license: 'https://github.com/zloirock/core-js/blob/v3.36.1/LICENSE',
324
324
  source: 'https://github.com/zloirock/core-js'
325
325
  });
326
326
 
327
- var store$2 = sharedStore.exports;
327
+ var sharedStoreExports = sharedStore.exports;
328
+
329
+ var store$2 = sharedStoreExports;
328
330
 
329
331
  var shared$4 = function (key, value) {
330
332
  return store$2[key] || (store$2[key] = value || {});
@@ -340,10 +342,10 @@ var toObject$4 = function (argument) {
340
342
  return $Object$2(requireObjectCoercible$4(argument));
341
343
  };
342
344
 
343
- var uncurryThis$i = functionUncurryThis;
345
+ var uncurryThis$o = functionUncurryThis;
344
346
  var toObject$3 = toObject$4;
345
347
 
346
- var hasOwnProperty = uncurryThis$i({}.hasOwnProperty);
348
+ var hasOwnProperty = uncurryThis$o({}.hasOwnProperty);
347
349
 
348
350
  // `HasOwnProperty` abstract operation
349
351
  // https://tc39.es/ecma262/#sec-hasownproperty
@@ -352,101 +354,101 @@ var hasOwnProperty_1 = Object.hasOwn || function hasOwn(it, key) {
352
354
  return hasOwnProperty(toObject$3(it), key);
353
355
  };
354
356
 
355
- var uncurryThis$h = functionUncurryThis;
357
+ var uncurryThis$n = functionUncurryThis;
356
358
 
357
359
  var id = 0;
358
360
  var postfix = Math.random();
359
- var toString$7 = uncurryThis$h(1.0.toString);
361
+ var toString$c = uncurryThis$n(1.0.toString);
360
362
 
361
363
  var uid$2 = function (key) {
362
- return 'Symbol(' + (key === undefined ? '' : key) + ')_' + toString$7(++id + postfix, 36);
364
+ return 'Symbol(' + (key === undefined ? '' : key) + ')_' + toString$c(++id + postfix, 36);
363
365
  };
364
366
 
365
- var global$j = global$o;
367
+ var global$k = global$p;
366
368
  var shared$3 = shared$4;
367
- var hasOwn$d = hasOwnProperty_1;
369
+ var hasOwn$e = hasOwnProperty_1;
368
370
  var uid$1 = uid$2;
369
- var NATIVE_SYMBOL = symbolConstructorDetection;
371
+ var NATIVE_SYMBOL$1 = symbolConstructorDetection;
370
372
  var USE_SYMBOL_AS_UID = useSymbolAsUid;
371
373
 
372
- var Symbol$1 = global$j.Symbol;
374
+ var Symbol$1 = global$k.Symbol;
373
375
  var WellKnownSymbolsStore = shared$3('wks');
374
376
  var createWellKnownSymbol = USE_SYMBOL_AS_UID ? Symbol$1['for'] || Symbol$1 : Symbol$1 && Symbol$1.withoutSetter || uid$1;
375
377
 
376
378
  var wellKnownSymbol$k = function (name) {
377
- if (!hasOwn$d(WellKnownSymbolsStore, name)) {
378
- WellKnownSymbolsStore[name] = NATIVE_SYMBOL && hasOwn$d(Symbol$1, name)
379
+ if (!hasOwn$e(WellKnownSymbolsStore, name)) {
380
+ WellKnownSymbolsStore[name] = NATIVE_SYMBOL$1 && hasOwn$e(Symbol$1, name)
379
381
  ? Symbol$1[name]
380
382
  : createWellKnownSymbol('Symbol.' + name);
381
383
  } return WellKnownSymbolsStore[name];
382
384
  };
383
385
 
384
- var call$i = functionCall;
385
- var isObject$b = isObject$d;
386
- var isSymbol$1 = isSymbol$2;
386
+ var call$k = functionCall;
387
+ var isObject$c = isObject$e;
388
+ var isSymbol$2 = isSymbol$3;
387
389
  var getMethod$3 = getMethod$4;
388
390
  var ordinaryToPrimitive = ordinaryToPrimitive$1;
389
391
  var wellKnownSymbol$j = wellKnownSymbol$k;
390
392
 
391
- var $TypeError$b = TypeError;
393
+ var $TypeError$c = TypeError;
392
394
  var TO_PRIMITIVE = wellKnownSymbol$j('toPrimitive');
393
395
 
394
396
  // `ToPrimitive` abstract operation
395
397
  // https://tc39.es/ecma262/#sec-toprimitive
396
398
  var toPrimitive$1 = function (input, pref) {
397
- if (!isObject$b(input) || isSymbol$1(input)) return input;
399
+ if (!isObject$c(input) || isSymbol$2(input)) return input;
398
400
  var exoticToPrim = getMethod$3(input, TO_PRIMITIVE);
399
401
  var result;
400
402
  if (exoticToPrim) {
401
403
  if (pref === undefined) pref = 'default';
402
- result = call$i(exoticToPrim, input, pref);
403
- if (!isObject$b(result) || isSymbol$1(result)) return result;
404
- throw new $TypeError$b("Can't convert object to primitive value");
404
+ result = call$k(exoticToPrim, input, pref);
405
+ if (!isObject$c(result) || isSymbol$2(result)) return result;
406
+ throw new $TypeError$c("Can't convert object to primitive value");
405
407
  }
406
408
  if (pref === undefined) pref = 'number';
407
409
  return ordinaryToPrimitive(input, pref);
408
410
  };
409
411
 
410
412
  var toPrimitive = toPrimitive$1;
411
- var isSymbol = isSymbol$2;
413
+ var isSymbol$1 = isSymbol$3;
412
414
 
413
415
  // `ToPropertyKey` abstract operation
414
416
  // https://tc39.es/ecma262/#sec-topropertykey
415
417
  var toPropertyKey$2 = function (argument) {
416
418
  var key = toPrimitive(argument, 'string');
417
- return isSymbol(key) ? key : key + '';
419
+ return isSymbol$1(key) ? key : key + '';
418
420
  };
419
421
 
420
- var global$i = global$o;
421
- var isObject$a = isObject$d;
422
+ var global$j = global$p;
423
+ var isObject$b = isObject$e;
422
424
 
423
- var document$3 = global$i.document;
425
+ var document$3 = global$j.document;
424
426
  // typeof document.createElement is 'object' in old IE
425
- var EXISTS$1 = isObject$a(document$3) && isObject$a(document$3.createElement);
427
+ var EXISTS$1 = isObject$b(document$3) && isObject$b(document$3.createElement);
426
428
 
427
429
  var documentCreateElement$2 = function (it) {
428
430
  return EXISTS$1 ? document$3.createElement(it) : {};
429
431
  };
430
432
 
431
- var DESCRIPTORS$g = descriptors;
432
- var fails$g = fails$l;
433
+ var DESCRIPTORS$j = descriptors;
434
+ var fails$i = fails$n;
433
435
  var createElement$1 = documentCreateElement$2;
434
436
 
435
437
  // Thanks to IE8 for its funny defineProperty
436
- var ie8DomDefine = !DESCRIPTORS$g && !fails$g(function () {
438
+ var ie8DomDefine = !DESCRIPTORS$j && !fails$i(function () {
437
439
  // eslint-disable-next-line es/no-object-defineproperty -- required for testing
438
440
  return Object.defineProperty(createElement$1('div'), 'a', {
439
441
  get: function () { return 7; }
440
442
  }).a !== 7;
441
443
  });
442
444
 
443
- var DESCRIPTORS$f = descriptors;
444
- var call$h = functionCall;
445
+ var DESCRIPTORS$i = descriptors;
446
+ var call$j = functionCall;
445
447
  var propertyIsEnumerableModule$1 = objectPropertyIsEnumerable;
446
- var createPropertyDescriptor$4 = createPropertyDescriptor$5;
448
+ var createPropertyDescriptor$5 = createPropertyDescriptor$6;
447
449
  var toIndexedObject$4 = toIndexedObject$5;
448
450
  var toPropertyKey$1 = toPropertyKey$2;
449
- var hasOwn$c = hasOwnProperty_1;
451
+ var hasOwn$d = hasOwnProperty_1;
450
452
  var IE8_DOM_DEFINE$1 = ie8DomDefine;
451
453
 
452
454
  // eslint-disable-next-line es/no-object-getownpropertydescriptor -- safe
@@ -454,23 +456,23 @@ var $getOwnPropertyDescriptor$1 = Object.getOwnPropertyDescriptor;
454
456
 
455
457
  // `Object.getOwnPropertyDescriptor` method
456
458
  // https://tc39.es/ecma262/#sec-object.getownpropertydescriptor
457
- objectGetOwnPropertyDescriptor.f = DESCRIPTORS$f ? $getOwnPropertyDescriptor$1 : function getOwnPropertyDescriptor(O, P) {
459
+ objectGetOwnPropertyDescriptor.f = DESCRIPTORS$i ? $getOwnPropertyDescriptor$1 : function getOwnPropertyDescriptor(O, P) {
458
460
  O = toIndexedObject$4(O);
459
461
  P = toPropertyKey$1(P);
460
462
  if (IE8_DOM_DEFINE$1) try {
461
463
  return $getOwnPropertyDescriptor$1(O, P);
462
464
  } catch (error) { /* empty */ }
463
- if (hasOwn$c(O, P)) return createPropertyDescriptor$4(!call$h(propertyIsEnumerableModule$1.f, O, P), O[P]);
465
+ if (hasOwn$d(O, P)) return createPropertyDescriptor$5(!call$j(propertyIsEnumerableModule$1.f, O, P), O[P]);
464
466
  };
465
467
 
466
468
  var objectDefineProperty = {};
467
469
 
468
- var DESCRIPTORS$e = descriptors;
469
- var fails$f = fails$l;
470
+ var DESCRIPTORS$h = descriptors;
471
+ var fails$h = fails$n;
470
472
 
471
473
  // V8 ~ Chrome 36-
472
474
  // https://bugs.chromium.org/p/v8/issues/detail?id=3334
473
- var v8PrototypeDefineBug = DESCRIPTORS$e && fails$f(function () {
475
+ var v8PrototypeDefineBug = DESCRIPTORS$h && fails$h(function () {
474
476
  // eslint-disable-next-line es/no-object-defineproperty -- required for testing
475
477
  return Object.defineProperty(function () { /* empty */ }, 'prototype', {
476
478
  value: 42,
@@ -478,24 +480,24 @@ var v8PrototypeDefineBug = DESCRIPTORS$e && fails$f(function () {
478
480
  }).prototype !== 42;
479
481
  });
480
482
 
481
- var isObject$9 = isObject$d;
483
+ var isObject$a = isObject$e;
482
484
 
483
- var $String$3 = String;
484
- var $TypeError$a = TypeError;
485
+ var $String$4 = String;
486
+ var $TypeError$b = TypeError;
485
487
 
486
488
  // `Assert: Type(argument) is Object`
487
- var anObject$f = function (argument) {
488
- if (isObject$9(argument)) return argument;
489
- throw new $TypeError$a($String$3(argument) + ' is not an object');
489
+ var anObject$g = function (argument) {
490
+ if (isObject$a(argument)) return argument;
491
+ throw new $TypeError$b($String$4(argument) + ' is not an object');
490
492
  };
491
493
 
492
- var DESCRIPTORS$d = descriptors;
494
+ var DESCRIPTORS$g = descriptors;
493
495
  var IE8_DOM_DEFINE = ie8DomDefine;
494
496
  var V8_PROTOTYPE_DEFINE_BUG$1 = v8PrototypeDefineBug;
495
- var anObject$e = anObject$f;
497
+ var anObject$f = anObject$g;
496
498
  var toPropertyKey = toPropertyKey$2;
497
499
 
498
- var $TypeError$9 = TypeError;
500
+ var $TypeError$a = TypeError;
499
501
  // eslint-disable-next-line es/no-object-defineproperty -- safe
500
502
  var $defineProperty = Object.defineProperty;
501
503
  // eslint-disable-next-line es/no-object-getownpropertydescriptor -- safe
@@ -506,10 +508,10 @@ var WRITABLE = 'writable';
506
508
 
507
509
  // `Object.defineProperty` method
508
510
  // https://tc39.es/ecma262/#sec-object.defineproperty
509
- objectDefineProperty.f = DESCRIPTORS$d ? V8_PROTOTYPE_DEFINE_BUG$1 ? function defineProperty(O, P, Attributes) {
510
- anObject$e(O);
511
+ objectDefineProperty.f = DESCRIPTORS$g ? V8_PROTOTYPE_DEFINE_BUG$1 ? function defineProperty(O, P, Attributes) {
512
+ anObject$f(O);
511
513
  P = toPropertyKey(P);
512
- anObject$e(Attributes);
514
+ anObject$f(Attributes);
513
515
  if (typeof O === 'function' && P === 'prototype' && 'value' in Attributes && WRITABLE in Attributes && !Attributes[WRITABLE]) {
514
516
  var current = $getOwnPropertyDescriptor(O, P);
515
517
  if (current && current[WRITABLE]) {
@@ -522,23 +524,23 @@ objectDefineProperty.f = DESCRIPTORS$d ? V8_PROTOTYPE_DEFINE_BUG$1 ? function de
522
524
  }
523
525
  } return $defineProperty(O, P, Attributes);
524
526
  } : $defineProperty : function defineProperty(O, P, Attributes) {
525
- anObject$e(O);
527
+ anObject$f(O);
526
528
  P = toPropertyKey(P);
527
- anObject$e(Attributes);
529
+ anObject$f(Attributes);
528
530
  if (IE8_DOM_DEFINE) try {
529
531
  return $defineProperty(O, P, Attributes);
530
532
  } catch (error) { /* empty */ }
531
- if ('get' in Attributes || 'set' in Attributes) throw new $TypeError$9('Accessors not supported');
533
+ if ('get' in Attributes || 'set' in Attributes) throw new $TypeError$a('Accessors not supported');
532
534
  if ('value' in Attributes) O[P] = Attributes.value;
533
535
  return O;
534
536
  };
535
537
 
536
- var DESCRIPTORS$c = descriptors;
538
+ var DESCRIPTORS$f = descriptors;
537
539
  var definePropertyModule$4 = objectDefineProperty;
538
- var createPropertyDescriptor$3 = createPropertyDescriptor$5;
540
+ var createPropertyDescriptor$4 = createPropertyDescriptor$6;
539
541
 
540
- var createNonEnumerableProperty$6 = DESCRIPTORS$c ? function (object, key, value) {
541
- return definePropertyModule$4.f(object, key, createPropertyDescriptor$3(1, value));
542
+ var createNonEnumerableProperty$9 = DESCRIPTORS$f ? function (object, key, value) {
543
+ return definePropertyModule$4.f(object, key, createPropertyDescriptor$4(1, value));
542
544
  } : function (object, key, value) {
543
545
  object[key] = value;
544
546
  return object;
@@ -546,17 +548,17 @@ var createNonEnumerableProperty$6 = DESCRIPTORS$c ? function (object, key, value
546
548
 
547
549
  var makeBuiltIn$3 = {exports: {}};
548
550
 
549
- var DESCRIPTORS$b = descriptors;
550
- var hasOwn$b = hasOwnProperty_1;
551
+ var DESCRIPTORS$e = descriptors;
552
+ var hasOwn$c = hasOwnProperty_1;
551
553
 
552
554
  var FunctionPrototype$1 = Function.prototype;
553
555
  // eslint-disable-next-line es/no-object-getownpropertydescriptor -- safe
554
- var getDescriptor = DESCRIPTORS$b && Object.getOwnPropertyDescriptor;
556
+ var getDescriptor = DESCRIPTORS$e && Object.getOwnPropertyDescriptor;
555
557
 
556
- var EXISTS = hasOwn$b(FunctionPrototype$1, 'name');
558
+ var EXISTS = hasOwn$c(FunctionPrototype$1, 'name');
557
559
  // additional protection from minified / mangled / dropped function names
558
560
  var PROPER = EXISTS && (function something() { /* empty */ }).name === 'something';
559
- var CONFIGURABLE = EXISTS && (!DESCRIPTORS$b || (DESCRIPTORS$b && getDescriptor(FunctionPrototype$1, 'name').configurable));
561
+ var CONFIGURABLE = EXISTS && (!DESCRIPTORS$e || (DESCRIPTORS$e && getDescriptor(FunctionPrototype$1, 'name').configurable));
560
562
 
561
563
  var functionName = {
562
564
  EXISTS: EXISTS,
@@ -564,14 +566,14 @@ var functionName = {
564
566
  CONFIGURABLE: CONFIGURABLE
565
567
  };
566
568
 
567
- var uncurryThis$g = functionUncurryThis;
568
- var isCallable$g = isCallable$m;
569
- var store$1 = sharedStore.exports;
569
+ var uncurryThis$m = functionUncurryThis;
570
+ var isCallable$j = isCallable$p;
571
+ var store$1 = sharedStoreExports;
570
572
 
571
- var functionToString = uncurryThis$g(Function.toString);
573
+ var functionToString = uncurryThis$m(Function.toString);
572
574
 
573
575
  // this helper broken in `core-js@3.4.1-3.4.4`, so we can't use `shared` helper
574
- if (!isCallable$g(store$1.inspectSource)) {
576
+ if (!isCallable$j(store$1.inspectSource)) {
575
577
  store$1.inspectSource = function (it) {
576
578
  return functionToString(it);
577
579
  };
@@ -579,12 +581,12 @@ if (!isCallable$g(store$1.inspectSource)) {
579
581
 
580
582
  var inspectSource$3 = store$1.inspectSource;
581
583
 
582
- var global$h = global$o;
583
- var isCallable$f = isCallable$m;
584
+ var global$i = global$p;
585
+ var isCallable$i = isCallable$p;
584
586
 
585
- var WeakMap$1 = global$h.WeakMap;
587
+ var WeakMap$1 = global$i.WeakMap;
586
588
 
587
- var weakMapBasicDetection = isCallable$f(WeakMap$1) && /native code/.test(String(WeakMap$1));
589
+ var weakMapBasicDetection = isCallable$i(WeakMap$1) && /native code/.test(String(WeakMap$1));
588
590
 
589
591
  var shared$2 = shared$4;
590
592
  var uid = uid$2;
@@ -598,17 +600,17 @@ var sharedKey$3 = function (key) {
598
600
  var hiddenKeys$4 = {};
599
601
 
600
602
  var NATIVE_WEAK_MAP = weakMapBasicDetection;
601
- var global$g = global$o;
602
- var isObject$8 = isObject$d;
603
- var createNonEnumerableProperty$5 = createNonEnumerableProperty$6;
604
- var hasOwn$a = hasOwnProperty_1;
605
- var shared$1 = sharedStore.exports;
603
+ var global$h = global$p;
604
+ var isObject$9 = isObject$e;
605
+ var createNonEnumerableProperty$8 = createNonEnumerableProperty$9;
606
+ var hasOwn$b = hasOwnProperty_1;
607
+ var shared$1 = sharedStoreExports;
606
608
  var sharedKey$2 = sharedKey$3;
607
609
  var hiddenKeys$3 = hiddenKeys$4;
608
610
 
609
611
  var OBJECT_ALREADY_INITIALIZED = 'Object already initialized';
610
- var TypeError$4 = global$g.TypeError;
611
- var WeakMap = global$g.WeakMap;
612
+ var TypeError$4 = global$h.TypeError;
613
+ var WeakMap = global$h.WeakMap;
612
614
  var set$1, get, has;
613
615
 
614
616
  var enforce = function (it) {
@@ -618,7 +620,7 @@ var enforce = function (it) {
618
620
  var getterFor = function (TYPE) {
619
621
  return function (it) {
620
622
  var state;
621
- if (!isObject$8(it) || (state = get(it)).type !== TYPE) {
623
+ if (!isObject$9(it) || (state = get(it)).type !== TYPE) {
622
624
  throw new TypeError$4('Incompatible receiver, ' + TYPE + ' required');
623
625
  } return state;
624
626
  };
@@ -647,16 +649,16 @@ if (NATIVE_WEAK_MAP || shared$1.state) {
647
649
  var STATE = sharedKey$2('state');
648
650
  hiddenKeys$3[STATE] = true;
649
651
  set$1 = function (it, metadata) {
650
- if (hasOwn$a(it, STATE)) throw new TypeError$4(OBJECT_ALREADY_INITIALIZED);
652
+ if (hasOwn$b(it, STATE)) throw new TypeError$4(OBJECT_ALREADY_INITIALIZED);
651
653
  metadata.facade = it;
652
- createNonEnumerableProperty$5(it, STATE, metadata);
654
+ createNonEnumerableProperty$8(it, STATE, metadata);
653
655
  return metadata;
654
656
  };
655
657
  get = function (it) {
656
- return hasOwn$a(it, STATE) ? it[STATE] : {};
658
+ return hasOwn$b(it, STATE) ? it[STATE] : {};
657
659
  };
658
660
  has = function (it) {
659
- return hasOwn$a(it, STATE);
661
+ return hasOwn$b(it, STATE);
660
662
  };
661
663
  }
662
664
 
@@ -668,51 +670,51 @@ var internalState = {
668
670
  getterFor: getterFor
669
671
  };
670
672
 
671
- var uncurryThis$f = functionUncurryThis;
672
- var fails$e = fails$l;
673
- var isCallable$e = isCallable$m;
674
- var hasOwn$9 = hasOwnProperty_1;
675
- var DESCRIPTORS$a = descriptors;
673
+ var uncurryThis$l = functionUncurryThis;
674
+ var fails$g = fails$n;
675
+ var isCallable$h = isCallable$p;
676
+ var hasOwn$a = hasOwnProperty_1;
677
+ var DESCRIPTORS$d = descriptors;
676
678
  var CONFIGURABLE_FUNCTION_NAME$1 = functionName.CONFIGURABLE;
677
679
  var inspectSource$2 = inspectSource$3;
678
680
  var InternalStateModule$5 = internalState;
679
681
 
680
682
  var enforceInternalState$1 = InternalStateModule$5.enforce;
681
- var getInternalState$3 = InternalStateModule$5.get;
682
- var $String$2 = String;
683
+ var getInternalState$4 = InternalStateModule$5.get;
684
+ var $String$3 = String;
683
685
  // eslint-disable-next-line es/no-object-defineproperty -- safe
684
686
  var defineProperty$6 = Object.defineProperty;
685
- var stringSlice$5 = uncurryThis$f(''.slice);
686
- var replace$5 = uncurryThis$f(''.replace);
687
- var join$3 = uncurryThis$f([].join);
687
+ var stringSlice$5 = uncurryThis$l(''.slice);
688
+ var replace$7 = uncurryThis$l(''.replace);
689
+ var join$3 = uncurryThis$l([].join);
688
690
 
689
- var CONFIGURABLE_LENGTH = DESCRIPTORS$a && !fails$e(function () {
691
+ var CONFIGURABLE_LENGTH = DESCRIPTORS$d && !fails$g(function () {
690
692
  return defineProperty$6(function () { /* empty */ }, 'length', { value: 8 }).length !== 8;
691
693
  });
692
694
 
693
695
  var TEMPLATE = String(String).split('String');
694
696
 
695
697
  var makeBuiltIn$2 = makeBuiltIn$3.exports = function (value, name, options) {
696
- if (stringSlice$5($String$2(name), 0, 7) === 'Symbol(') {
697
- name = '[' + replace$5($String$2(name), /^Symbol\(([^)]*)\).*$/, '$1') + ']';
698
+ if (stringSlice$5($String$3(name), 0, 7) === 'Symbol(') {
699
+ name = '[' + replace$7($String$3(name), /^Symbol\(([^)]*)\).*$/, '$1') + ']';
698
700
  }
699
701
  if (options && options.getter) name = 'get ' + name;
700
702
  if (options && options.setter) name = 'set ' + name;
701
- if (!hasOwn$9(value, 'name') || (CONFIGURABLE_FUNCTION_NAME$1 && value.name !== name)) {
702
- if (DESCRIPTORS$a) defineProperty$6(value, 'name', { value: name, configurable: true });
703
+ if (!hasOwn$a(value, 'name') || (CONFIGURABLE_FUNCTION_NAME$1 && value.name !== name)) {
704
+ if (DESCRIPTORS$d) defineProperty$6(value, 'name', { value: name, configurable: true });
703
705
  else value.name = name;
704
706
  }
705
- if (CONFIGURABLE_LENGTH && options && hasOwn$9(options, 'arity') && value.length !== options.arity) {
707
+ if (CONFIGURABLE_LENGTH && options && hasOwn$a(options, 'arity') && value.length !== options.arity) {
706
708
  defineProperty$6(value, 'length', { value: options.arity });
707
709
  }
708
710
  try {
709
- if (options && hasOwn$9(options, 'constructor') && options.constructor) {
710
- if (DESCRIPTORS$a) defineProperty$6(value, 'prototype', { writable: false });
711
+ if (options && hasOwn$a(options, 'constructor') && options.constructor) {
712
+ if (DESCRIPTORS$d) defineProperty$6(value, 'prototype', { writable: false });
711
713
  // in V8 ~ Chrome 53, prototypes of some methods, like `Array.prototype.values`, are non-writable
712
714
  } else if (value.prototype) value.prototype = undefined;
713
715
  } catch (error) { /* empty */ }
714
716
  var state = enforceInternalState$1(value);
715
- if (!hasOwn$9(state, 'source')) {
717
+ if (!hasOwn$a(state, 'source')) {
716
718
  state.source = join$3(TEMPLATE, typeof name == 'string' ? name : '');
717
719
  } return value;
718
720
  };
@@ -720,19 +722,21 @@ var makeBuiltIn$2 = makeBuiltIn$3.exports = function (value, name, options) {
720
722
  // add fake Function#toString for correct work wrapped methods / constructors with methods like LoDash isNative
721
723
  // eslint-disable-next-line no-extend-native -- required
722
724
  Function.prototype.toString = makeBuiltIn$2(function toString() {
723
- return isCallable$e(this) && getInternalState$3(this).source || inspectSource$2(this);
725
+ return isCallable$h(this) && getInternalState$4(this).source || inspectSource$2(this);
724
726
  }, 'toString');
725
727
 
726
- var isCallable$d = isCallable$m;
728
+ var makeBuiltInExports = makeBuiltIn$3.exports;
729
+
730
+ var isCallable$g = isCallable$p;
727
731
  var definePropertyModule$3 = objectDefineProperty;
728
- var makeBuiltIn$1 = makeBuiltIn$3.exports;
732
+ var makeBuiltIn$1 = makeBuiltInExports;
729
733
  var defineGlobalProperty$1 = defineGlobalProperty$3;
730
734
 
731
- var defineBuiltIn$b = function (O, key, value, options) {
735
+ var defineBuiltIn$d = function (O, key, value, options) {
732
736
  if (!options) options = {};
733
737
  var simple = options.enumerable;
734
738
  var name = options.name !== undefined ? options.name : key;
735
- if (isCallable$d(value)) makeBuiltIn$1(value, name, options);
739
+ if (isCallable$g(value)) makeBuiltIn$1(value, name, options);
736
740
  if (options.global) {
737
741
  if (simple) O[key] = value;
738
742
  else defineGlobalProperty$1(key, value);
@@ -840,23 +844,23 @@ var arrayIncludes = {
840
844
  indexOf: createMethod$1(false)
841
845
  };
842
846
 
843
- var uncurryThis$e = functionUncurryThis;
844
- var hasOwn$8 = hasOwnProperty_1;
847
+ var uncurryThis$k = functionUncurryThis;
848
+ var hasOwn$9 = hasOwnProperty_1;
845
849
  var toIndexedObject$2 = toIndexedObject$5;
846
850
  var indexOf$1 = arrayIncludes.indexOf;
847
851
  var hiddenKeys$2 = hiddenKeys$4;
848
852
 
849
- var push$3 = uncurryThis$e([].push);
853
+ var push$5 = uncurryThis$k([].push);
850
854
 
851
855
  var objectKeysInternal = function (object, names) {
852
856
  var O = toIndexedObject$2(object);
853
857
  var i = 0;
854
858
  var result = [];
855
859
  var key;
856
- for (key in O) !hasOwn$8(hiddenKeys$2, key) && hasOwn$8(O, key) && push$3(result, key);
860
+ for (key in O) !hasOwn$9(hiddenKeys$2, key) && hasOwn$9(O, key) && push$5(result, key);
857
861
  // Don't enum bug & hidden keys
858
- while (names.length > i) if (hasOwn$8(O, key = names[i++])) {
859
- ~indexOf$1(result, key) || push$3(result, key);
862
+ while (names.length > i) if (hasOwn$9(O, key = names[i++])) {
863
+ ~indexOf$1(result, key) || push$5(result, key);
860
864
  }
861
865
  return result;
862
866
  };
@@ -889,40 +893,40 @@ var objectGetOwnPropertySymbols = {};
889
893
  // eslint-disable-next-line es/no-object-getownpropertysymbols -- safe
890
894
  objectGetOwnPropertySymbols.f = Object.getOwnPropertySymbols;
891
895
 
892
- var getBuiltIn$5 = getBuiltIn$7;
893
- var uncurryThis$d = functionUncurryThis;
896
+ var getBuiltIn$7 = getBuiltIn$9;
897
+ var uncurryThis$j = functionUncurryThis;
894
898
  var getOwnPropertyNamesModule = objectGetOwnPropertyNames;
895
899
  var getOwnPropertySymbolsModule$1 = objectGetOwnPropertySymbols;
896
- var anObject$d = anObject$f;
900
+ var anObject$e = anObject$g;
897
901
 
898
- var concat$1 = uncurryThis$d([].concat);
902
+ var concat$1 = uncurryThis$j([].concat);
899
903
 
900
904
  // all object keys, includes non-enumerable and symbols
901
- var ownKeys$1 = getBuiltIn$5('Reflect', 'ownKeys') || function ownKeys(it) {
902
- var keys = getOwnPropertyNamesModule.f(anObject$d(it));
905
+ var ownKeys$1 = getBuiltIn$7('Reflect', 'ownKeys') || function ownKeys(it) {
906
+ var keys = getOwnPropertyNamesModule.f(anObject$e(it));
903
907
  var getOwnPropertySymbols = getOwnPropertySymbolsModule$1.f;
904
908
  return getOwnPropertySymbols ? concat$1(keys, getOwnPropertySymbols(it)) : keys;
905
909
  };
906
910
 
907
- var hasOwn$7 = hasOwnProperty_1;
911
+ var hasOwn$8 = hasOwnProperty_1;
908
912
  var ownKeys = ownKeys$1;
909
913
  var getOwnPropertyDescriptorModule = objectGetOwnPropertyDescriptor;
910
914
  var definePropertyModule$2 = objectDefineProperty;
911
915
 
912
- var copyConstructorProperties$1 = function (target, source, exceptions) {
916
+ var copyConstructorProperties$2 = function (target, source, exceptions) {
913
917
  var keys = ownKeys(source);
914
918
  var defineProperty = definePropertyModule$2.f;
915
919
  var getOwnPropertyDescriptor = getOwnPropertyDescriptorModule.f;
916
920
  for (var i = 0; i < keys.length; i++) {
917
921
  var key = keys[i];
918
- if (!hasOwn$7(target, key) && !(exceptions && hasOwn$7(exceptions, key))) {
922
+ if (!hasOwn$8(target, key) && !(exceptions && hasOwn$8(exceptions, key))) {
919
923
  defineProperty(target, key, getOwnPropertyDescriptor(source, key));
920
924
  }
921
925
  }
922
926
  };
923
927
 
924
- var fails$d = fails$l;
925
- var isCallable$c = isCallable$m;
928
+ var fails$f = fails$n;
929
+ var isCallable$f = isCallable$p;
926
930
 
927
931
  var replacement = /#|\.prototype\./;
928
932
 
@@ -930,7 +934,7 @@ var isForced$3 = function (feature, detection) {
930
934
  var value = data[normalize(feature)];
931
935
  return value === POLYFILL ? true
932
936
  : value === NATIVE ? false
933
- : isCallable$c(detection) ? fails$d(detection)
937
+ : isCallable$f(detection) ? fails$f(detection)
934
938
  : !!detection;
935
939
  };
936
940
 
@@ -944,12 +948,12 @@ var POLYFILL = isForced$3.POLYFILL = 'P';
944
948
 
945
949
  var isForced_1 = isForced$3;
946
950
 
947
- var global$f = global$o;
951
+ var global$g = global$p;
948
952
  var getOwnPropertyDescriptor$1 = objectGetOwnPropertyDescriptor.f;
949
- var createNonEnumerableProperty$4 = createNonEnumerableProperty$6;
950
- var defineBuiltIn$a = defineBuiltIn$b;
953
+ var createNonEnumerableProperty$7 = createNonEnumerableProperty$9;
954
+ var defineBuiltIn$c = defineBuiltIn$d;
951
955
  var defineGlobalProperty = defineGlobalProperty$3;
952
- var copyConstructorProperties = copyConstructorProperties$1;
956
+ var copyConstructorProperties$1 = copyConstructorProperties$2;
953
957
  var isForced$2 = isForced_1;
954
958
 
955
959
  /*
@@ -973,11 +977,11 @@ var _export = function (options, source) {
973
977
  var STATIC = options.stat;
974
978
  var FORCED, target, key, targetProperty, sourceProperty, descriptor;
975
979
  if (GLOBAL) {
976
- target = global$f;
980
+ target = global$g;
977
981
  } else if (STATIC) {
978
- target = global$f[TARGET] || defineGlobalProperty(TARGET, {});
982
+ target = global$g[TARGET] || defineGlobalProperty(TARGET, {});
979
983
  } else {
980
- target = global$f[TARGET] && global$f[TARGET].prototype;
984
+ target = global$g[TARGET] && global$g[TARGET].prototype;
981
985
  }
982
986
  if (target) for (key in source) {
983
987
  sourceProperty = source[key];
@@ -989,13 +993,13 @@ var _export = function (options, source) {
989
993
  // contained in target
990
994
  if (!FORCED && targetProperty !== undefined) {
991
995
  if (typeof sourceProperty == typeof targetProperty) continue;
992
- copyConstructorProperties(sourceProperty, targetProperty);
996
+ copyConstructorProperties$1(sourceProperty, targetProperty);
993
997
  }
994
998
  // add a flag to not completely full polyfills
995
999
  if (options.sham || (targetProperty && targetProperty.sham)) {
996
- createNonEnumerableProperty$4(sourceProperty, 'sham', true);
1000
+ createNonEnumerableProperty$7(sourceProperty, 'sham', true);
997
1001
  }
998
- defineBuiltIn$a(target, key, sourceProperty, options);
1002
+ defineBuiltIn$c(target, key, sourceProperty, options);
999
1003
  }
1000
1004
  };
1001
1005
 
@@ -1009,10 +1013,10 @@ var objectKeys$2 = Object.keys || function keys(O) {
1009
1013
  return internalObjectKeys(O, enumBugKeys$1);
1010
1014
  };
1011
1015
 
1012
- var DESCRIPTORS$9 = descriptors;
1013
- var uncurryThis$c = functionUncurryThis;
1014
- var call$g = functionCall;
1015
- var fails$c = fails$l;
1016
+ var DESCRIPTORS$c = descriptors;
1017
+ var uncurryThis$i = functionUncurryThis;
1018
+ var call$i = functionCall;
1019
+ var fails$e = fails$n;
1016
1020
  var objectKeys$1 = objectKeys$2;
1017
1021
  var getOwnPropertySymbolsModule = objectGetOwnPropertySymbols;
1018
1022
  var propertyIsEnumerableModule = objectPropertyIsEnumerable;
@@ -1023,13 +1027,13 @@ var IndexedObject = indexedObject;
1023
1027
  var $assign = Object.assign;
1024
1028
  // eslint-disable-next-line es/no-object-defineproperty -- required for testing
1025
1029
  var defineProperty$5 = Object.defineProperty;
1026
- var concat = uncurryThis$c([].concat);
1030
+ var concat = uncurryThis$i([].concat);
1027
1031
 
1028
1032
  // `Object.assign` method
1029
1033
  // https://tc39.es/ecma262/#sec-object.assign
1030
- var objectAssign = !$assign || fails$c(function () {
1034
+ var objectAssign = !$assign || fails$e(function () {
1031
1035
  // should have correct order of operations (Edge bug)
1032
- if (DESCRIPTORS$9 && $assign({ b: 1 }, $assign(defineProperty$5({}, 'a', {
1036
+ if (DESCRIPTORS$c && $assign({ b: 1 }, $assign(defineProperty$5({}, 'a', {
1033
1037
  enumerable: true,
1034
1038
  get: function () {
1035
1039
  defineProperty$5(this, 'b', {
@@ -1061,18 +1065,18 @@ var objectAssign = !$assign || fails$c(function () {
1061
1065
  var key;
1062
1066
  while (length > j) {
1063
1067
  key = keys[j++];
1064
- if (!DESCRIPTORS$9 || call$g(propertyIsEnumerable, S, key)) T[key] = S[key];
1068
+ if (!DESCRIPTORS$c || call$i(propertyIsEnumerable, S, key)) T[key] = S[key];
1065
1069
  }
1066
1070
  } return T;
1067
1071
  } : $assign;
1068
1072
 
1069
- var $$d = _export;
1073
+ var $$g = _export;
1070
1074
  var assign$1 = objectAssign;
1071
1075
 
1072
1076
  // `Object.assign` method
1073
1077
  // https://tc39.es/ecma262/#sec-object.assign
1074
1078
  // eslint-disable-next-line es/no-object-assign -- required for testing
1075
- $$d({ target: 'Object', stat: true, arity: 2, forced: Object.assign !== assign$1 }, {
1079
+ $$g({ target: 'Object', stat: true, arity: 2, forced: Object.assign !== assign$1 }, {
1076
1080
  assign: assign$1
1077
1081
  });
1078
1082
 
@@ -1080,7 +1084,7 @@ function _objectWithoutPropertiesLoose(r, e) {
1080
1084
  if (null == r) return {};
1081
1085
  var t = {};
1082
1086
  for (var n in r) if ({}.hasOwnProperty.call(r, n)) {
1083
- if (e.indexOf(n) >= 0) continue;
1087
+ if (e.includes(n)) continue;
1084
1088
  t[n] = r[n];
1085
1089
  }
1086
1090
  return t;
@@ -1088,18 +1092,18 @@ function _objectWithoutPropertiesLoose(r, e) {
1088
1092
 
1089
1093
  var objectDefineProperties = {};
1090
1094
 
1091
- var DESCRIPTORS$8 = descriptors;
1095
+ var DESCRIPTORS$b = descriptors;
1092
1096
  var V8_PROTOTYPE_DEFINE_BUG = v8PrototypeDefineBug;
1093
1097
  var definePropertyModule$1 = objectDefineProperty;
1094
- var anObject$c = anObject$f;
1098
+ var anObject$d = anObject$g;
1095
1099
  var toIndexedObject$1 = toIndexedObject$5;
1096
1100
  var objectKeys = objectKeys$2;
1097
1101
 
1098
1102
  // `Object.defineProperties` method
1099
1103
  // https://tc39.es/ecma262/#sec-object.defineproperties
1100
1104
  // eslint-disable-next-line es/no-object-defineproperties -- safe
1101
- objectDefineProperties.f = DESCRIPTORS$8 && !V8_PROTOTYPE_DEFINE_BUG ? Object.defineProperties : function defineProperties(O, Properties) {
1102
- anObject$c(O);
1105
+ objectDefineProperties.f = DESCRIPTORS$b && !V8_PROTOTYPE_DEFINE_BUG ? Object.defineProperties : function defineProperties(O, Properties) {
1106
+ anObject$d(O);
1103
1107
  var props = toIndexedObject$1(Properties);
1104
1108
  var keys = objectKeys(Properties);
1105
1109
  var length = keys.length;
@@ -1109,12 +1113,12 @@ objectDefineProperties.f = DESCRIPTORS$8 && !V8_PROTOTYPE_DEFINE_BUG ? Object.de
1109
1113
  return O;
1110
1114
  };
1111
1115
 
1112
- var getBuiltIn$4 = getBuiltIn$7;
1116
+ var getBuiltIn$6 = getBuiltIn$9;
1113
1117
 
1114
- var html$2 = getBuiltIn$4('document', 'documentElement');
1118
+ var html$2 = getBuiltIn$6('document', 'documentElement');
1115
1119
 
1116
1120
  /* global ActiveXObject -- old IE, WSH */
1117
- var anObject$b = anObject$f;
1121
+ var anObject$c = anObject$g;
1118
1122
  var definePropertiesModule = objectDefineProperties;
1119
1123
  var enumBugKeys = enumBugKeys$3;
1120
1124
  var hiddenKeys = hiddenKeys$4;
@@ -1188,7 +1192,7 @@ hiddenKeys[IE_PROTO$1] = true;
1188
1192
  var objectCreate = Object.create || function create(O, Properties) {
1189
1193
  var result;
1190
1194
  if (O !== null) {
1191
- EmptyConstructor[PROTOTYPE] = anObject$b(O);
1195
+ EmptyConstructor[PROTOTYPE] = anObject$c(O);
1192
1196
  result = new EmptyConstructor();
1193
1197
  EmptyConstructor[PROTOTYPE] = null;
1194
1198
  // add "__proto__" for Object.getPrototypeOf polyfill
@@ -1220,17 +1224,17 @@ var addToUnscopables$2 = function (key) {
1220
1224
 
1221
1225
  var iterators = {};
1222
1226
 
1223
- var fails$b = fails$l;
1227
+ var fails$d = fails$n;
1224
1228
 
1225
- var correctPrototypeGetter = !fails$b(function () {
1229
+ var correctPrototypeGetter = !fails$d(function () {
1226
1230
  function F() { /* empty */ }
1227
1231
  F.prototype.constructor = null;
1228
1232
  // eslint-disable-next-line es/no-object-getprototypeof -- required for testing
1229
1233
  return Object.getPrototypeOf(new F()) !== F.prototype;
1230
1234
  });
1231
1235
 
1232
- var hasOwn$6 = hasOwnProperty_1;
1233
- var isCallable$b = isCallable$m;
1236
+ var hasOwn$7 = hasOwnProperty_1;
1237
+ var isCallable$e = isCallable$p;
1234
1238
  var toObject$1 = toObject$4;
1235
1239
  var sharedKey = sharedKey$3;
1236
1240
  var CORRECT_PROTOTYPE_GETTER = correctPrototypeGetter;
@@ -1244,18 +1248,18 @@ var ObjectPrototype = $Object$1.prototype;
1244
1248
  // eslint-disable-next-line es/no-object-getprototypeof -- safe
1245
1249
  var objectGetPrototypeOf = CORRECT_PROTOTYPE_GETTER ? $Object$1.getPrototypeOf : function (O) {
1246
1250
  var object = toObject$1(O);
1247
- if (hasOwn$6(object, IE_PROTO)) return object[IE_PROTO];
1251
+ if (hasOwn$7(object, IE_PROTO)) return object[IE_PROTO];
1248
1252
  var constructor = object.constructor;
1249
- if (isCallable$b(constructor) && object instanceof constructor) {
1253
+ if (isCallable$e(constructor) && object instanceof constructor) {
1250
1254
  return constructor.prototype;
1251
1255
  } return object instanceof $Object$1 ? ObjectPrototype : null;
1252
1256
  };
1253
1257
 
1254
- var fails$a = fails$l;
1255
- var isCallable$a = isCallable$m;
1256
- var isObject$7 = isObject$d;
1258
+ var fails$c = fails$n;
1259
+ var isCallable$d = isCallable$p;
1260
+ var isObject$8 = isObject$e;
1257
1261
  var getPrototypeOf$1 = objectGetPrototypeOf;
1258
- var defineBuiltIn$9 = defineBuiltIn$b;
1262
+ var defineBuiltIn$b = defineBuiltIn$d;
1259
1263
  var wellKnownSymbol$h = wellKnownSymbol$k;
1260
1264
 
1261
1265
  var ITERATOR$7 = wellKnownSymbol$h('iterator');
@@ -1276,7 +1280,7 @@ if ([].keys) {
1276
1280
  }
1277
1281
  }
1278
1282
 
1279
- var NEW_ITERATOR_PROTOTYPE = !isObject$7(IteratorPrototype$2) || fails$a(function () {
1283
+ var NEW_ITERATOR_PROTOTYPE = !isObject$8(IteratorPrototype$2) || fails$c(function () {
1280
1284
  var test = {};
1281
1285
  // FF44- legacy iterators case
1282
1286
  return IteratorPrototype$2[ITERATOR$7].call(test) !== test;
@@ -1286,8 +1290,8 @@ if (NEW_ITERATOR_PROTOTYPE) IteratorPrototype$2 = {};
1286
1290
 
1287
1291
  // `%IteratorPrototype%[@@iterator]()` method
1288
1292
  // https://tc39.es/ecma262/#sec-%iteratorprototype%-@@iterator
1289
- if (!isCallable$a(IteratorPrototype$2[ITERATOR$7])) {
1290
- defineBuiltIn$9(IteratorPrototype$2, ITERATOR$7, function () {
1293
+ if (!isCallable$d(IteratorPrototype$2[ITERATOR$7])) {
1294
+ defineBuiltIn$b(IteratorPrototype$2, ITERATOR$7, function () {
1291
1295
  return this;
1292
1296
  });
1293
1297
  }
@@ -1298,21 +1302,21 @@ var iteratorsCore = {
1298
1302
  };
1299
1303
 
1300
1304
  var defineProperty$3 = objectDefineProperty.f;
1301
- var hasOwn$5 = hasOwnProperty_1;
1305
+ var hasOwn$6 = hasOwnProperty_1;
1302
1306
  var wellKnownSymbol$g = wellKnownSymbol$k;
1303
1307
 
1304
1308
  var TO_STRING_TAG$2 = wellKnownSymbol$g('toStringTag');
1305
1309
 
1306
1310
  var setToStringTag$6 = function (target, TAG, STATIC) {
1307
1311
  if (target && !STATIC) target = target.prototype;
1308
- if (target && !hasOwn$5(target, TO_STRING_TAG$2)) {
1312
+ if (target && !hasOwn$6(target, TO_STRING_TAG$2)) {
1309
1313
  defineProperty$3(target, TO_STRING_TAG$2, { configurable: true, value: TAG });
1310
1314
  }
1311
1315
  };
1312
1316
 
1313
1317
  var IteratorPrototype$1 = iteratorsCore.IteratorPrototype;
1314
1318
  var create$3 = objectCreate;
1315
- var createPropertyDescriptor$2 = createPropertyDescriptor$5;
1319
+ var createPropertyDescriptor$3 = createPropertyDescriptor$6;
1316
1320
  var setToStringTag$5 = setToStringTag$6;
1317
1321
  var Iterators$4 = iterators;
1318
1322
 
@@ -1320,41 +1324,41 @@ var returnThis$1 = function () { return this; };
1320
1324
 
1321
1325
  var iteratorCreateConstructor = function (IteratorConstructor, NAME, next, ENUMERABLE_NEXT) {
1322
1326
  var TO_STRING_TAG = NAME + ' Iterator';
1323
- IteratorConstructor.prototype = create$3(IteratorPrototype$1, { next: createPropertyDescriptor$2(+!ENUMERABLE_NEXT, next) });
1327
+ IteratorConstructor.prototype = create$3(IteratorPrototype$1, { next: createPropertyDescriptor$3(+!ENUMERABLE_NEXT, next) });
1324
1328
  setToStringTag$5(IteratorConstructor, TO_STRING_TAG, false);
1325
1329
  Iterators$4[TO_STRING_TAG] = returnThis$1;
1326
1330
  return IteratorConstructor;
1327
1331
  };
1328
1332
 
1329
- var uncurryThis$b = functionUncurryThis;
1333
+ var uncurryThis$h = functionUncurryThis;
1330
1334
  var aCallable$6 = aCallable$8;
1331
1335
 
1332
1336
  var functionUncurryThisAccessor = function (object, key, method) {
1333
1337
  try {
1334
1338
  // eslint-disable-next-line es/no-object-getownpropertydescriptor -- safe
1335
- return uncurryThis$b(aCallable$6(Object.getOwnPropertyDescriptor(object, key)[method]));
1339
+ return uncurryThis$h(aCallable$6(Object.getOwnPropertyDescriptor(object, key)[method]));
1336
1340
  } catch (error) { /* empty */ }
1337
1341
  };
1338
1342
 
1339
- var isObject$6 = isObject$d;
1343
+ var isObject$7 = isObject$e;
1340
1344
 
1341
1345
  var isPossiblePrototype$1 = function (argument) {
1342
- return isObject$6(argument) || argument === null;
1346
+ return isObject$7(argument) || argument === null;
1343
1347
  };
1344
1348
 
1345
1349
  var isPossiblePrototype = isPossiblePrototype$1;
1346
1350
 
1347
- var $String$1 = String;
1348
- var $TypeError$8 = TypeError;
1351
+ var $String$2 = String;
1352
+ var $TypeError$9 = TypeError;
1349
1353
 
1350
1354
  var aPossiblePrototype$1 = function (argument) {
1351
1355
  if (isPossiblePrototype(argument)) return argument;
1352
- throw new $TypeError$8("Can't set " + $String$1(argument) + ' as a prototype');
1356
+ throw new $TypeError$9("Can't set " + $String$2(argument) + ' as a prototype');
1353
1357
  };
1354
1358
 
1355
1359
  /* eslint-disable no-proto -- safe */
1356
1360
  var uncurryThisAccessor = functionUncurryThisAccessor;
1357
- var isObject$5 = isObject$d;
1361
+ var isObject$6 = isObject$e;
1358
1362
  var requireObjectCoercible$3 = requireObjectCoercible$6;
1359
1363
  var aPossiblePrototype = aPossiblePrototype$1;
1360
1364
 
@@ -1374,23 +1378,23 @@ var objectSetPrototypeOf = Object.setPrototypeOf || ('__proto__' in {} ? functio
1374
1378
  return function setPrototypeOf(O, proto) {
1375
1379
  requireObjectCoercible$3(O);
1376
1380
  aPossiblePrototype(proto);
1377
- if (!isObject$5(O)) return O;
1381
+ if (!isObject$6(O)) return O;
1378
1382
  if (CORRECT_SETTER) setter(O, proto);
1379
1383
  else O.__proto__ = proto;
1380
1384
  return O;
1381
1385
  };
1382
1386
  }() : undefined);
1383
1387
 
1384
- var $$c = _export;
1385
- var call$f = functionCall;
1388
+ var $$f = _export;
1389
+ var call$h = functionCall;
1386
1390
  var FunctionName = functionName;
1387
- var isCallable$9 = isCallable$m;
1391
+ var isCallable$c = isCallable$p;
1388
1392
  var createIteratorConstructor$1 = iteratorCreateConstructor;
1389
1393
  var getPrototypeOf = objectGetPrototypeOf;
1390
- var setPrototypeOf$2 = objectSetPrototypeOf;
1394
+ var setPrototypeOf$3 = objectSetPrototypeOf;
1391
1395
  var setToStringTag$4 = setToStringTag$6;
1392
- var createNonEnumerableProperty$3 = createNonEnumerableProperty$6;
1393
- var defineBuiltIn$8 = defineBuiltIn$b;
1396
+ var createNonEnumerableProperty$6 = createNonEnumerableProperty$9;
1397
+ var defineBuiltIn$a = defineBuiltIn$d;
1394
1398
  var wellKnownSymbol$f = wellKnownSymbol$k;
1395
1399
  var Iterators$3 = iterators;
1396
1400
  var IteratorsCore = iteratorsCore;
@@ -1437,10 +1441,10 @@ var iteratorDefine = function (Iterable, NAME, IteratorConstructor, next, DEFAUL
1437
1441
  CurrentIteratorPrototype = getPrototypeOf(anyNativeIterator.call(new Iterable()));
1438
1442
  if (CurrentIteratorPrototype !== Object.prototype && CurrentIteratorPrototype.next) {
1439
1443
  if (getPrototypeOf(CurrentIteratorPrototype) !== IteratorPrototype) {
1440
- if (setPrototypeOf$2) {
1441
- setPrototypeOf$2(CurrentIteratorPrototype, IteratorPrototype);
1442
- } else if (!isCallable$9(CurrentIteratorPrototype[ITERATOR$6])) {
1443
- defineBuiltIn$8(CurrentIteratorPrototype, ITERATOR$6, returnThis);
1444
+ if (setPrototypeOf$3) {
1445
+ setPrototypeOf$3(CurrentIteratorPrototype, IteratorPrototype);
1446
+ } else if (!isCallable$c(CurrentIteratorPrototype[ITERATOR$6])) {
1447
+ defineBuiltIn$a(CurrentIteratorPrototype, ITERATOR$6, returnThis);
1444
1448
  }
1445
1449
  }
1446
1450
  // Set @@toStringTag to native iterators
@@ -1451,10 +1455,10 @@ var iteratorDefine = function (Iterable, NAME, IteratorConstructor, next, DEFAUL
1451
1455
  // fix Array.prototype.{ values, @@iterator }.name in V8 / FF
1452
1456
  if (PROPER_FUNCTION_NAME$1 && DEFAULT === VALUES && nativeIterator && nativeIterator.name !== VALUES) {
1453
1457
  if (CONFIGURABLE_FUNCTION_NAME) {
1454
- createNonEnumerableProperty$3(IterablePrototype, 'name', VALUES);
1458
+ createNonEnumerableProperty$6(IterablePrototype, 'name', VALUES);
1455
1459
  } else {
1456
1460
  INCORRECT_VALUES_NAME = true;
1457
- defaultIterator = function values() { return call$f(nativeIterator, this); };
1461
+ defaultIterator = function values() { return call$h(nativeIterator, this); };
1458
1462
  }
1459
1463
  }
1460
1464
 
@@ -1467,14 +1471,14 @@ var iteratorDefine = function (Iterable, NAME, IteratorConstructor, next, DEFAUL
1467
1471
  };
1468
1472
  if (FORCED) for (KEY in methods) {
1469
1473
  if (BUGGY_SAFARI_ITERATORS || INCORRECT_VALUES_NAME || !(KEY in IterablePrototype)) {
1470
- defineBuiltIn$8(IterablePrototype, KEY, methods[KEY]);
1474
+ defineBuiltIn$a(IterablePrototype, KEY, methods[KEY]);
1471
1475
  }
1472
- } else $$c({ target: NAME, proto: true, forced: BUGGY_SAFARI_ITERATORS || INCORRECT_VALUES_NAME }, methods);
1476
+ } else $$f({ target: NAME, proto: true, forced: BUGGY_SAFARI_ITERATORS || INCORRECT_VALUES_NAME }, methods);
1473
1477
  }
1474
1478
 
1475
1479
  // define iterator
1476
1480
  if (IterablePrototype[ITERATOR$6] !== defaultIterator) {
1477
- defineBuiltIn$8(IterablePrototype, ITERATOR$6, defaultIterator, { name: DEFAULT });
1481
+ defineBuiltIn$a(IterablePrototype, ITERATOR$6, defaultIterator, { name: DEFAULT });
1478
1482
  }
1479
1483
  Iterators$3[NAME] = defaultIterator;
1480
1484
 
@@ -1494,11 +1498,11 @@ var InternalStateModule$4 = internalState;
1494
1498
  var defineProperty$2 = objectDefineProperty.f;
1495
1499
  var defineIterator$1 = iteratorDefine;
1496
1500
  var createIterResultObject$2 = createIterResultObject$3;
1497
- var DESCRIPTORS$7 = descriptors;
1501
+ var DESCRIPTORS$a = descriptors;
1498
1502
 
1499
1503
  var ARRAY_ITERATOR = 'Array Iterator';
1500
1504
  var setInternalState$4 = InternalStateModule$4.set;
1501
- var getInternalState$2 = InternalStateModule$4.getterFor(ARRAY_ITERATOR);
1505
+ var getInternalState$3 = InternalStateModule$4.getterFor(ARRAY_ITERATOR);
1502
1506
 
1503
1507
  // `Array.prototype.entries` method
1504
1508
  // https://tc39.es/ecma262/#sec-array.prototype.entries
@@ -1520,7 +1524,7 @@ var es_array_iterator = defineIterator$1(Array, 'Array', function (iterated, kin
1520
1524
  // `%ArrayIteratorPrototype%.next` method
1521
1525
  // https://tc39.es/ecma262/#sec-%arrayiteratorprototype%.next
1522
1526
  }, function () {
1523
- var state = getInternalState$2(this);
1527
+ var state = getInternalState$3(this);
1524
1528
  var target = state.target;
1525
1529
  var index = state.index++;
1526
1530
  if (!target || index >= target.length) {
@@ -1544,7 +1548,7 @@ addToUnscopables$1('values');
1544
1548
  addToUnscopables$1('entries');
1545
1549
 
1546
1550
  // V8 ~ Chrome 45- bug
1547
- if (DESCRIPTORS$7 && values.name !== 'values') try {
1551
+ if (DESCRIPTORS$a && values.name !== 'values') try {
1548
1552
  defineProperty$2(values, 'name', { value: 'values' });
1549
1553
  } catch (error) { /* empty */ }
1550
1554
 
@@ -1592,11 +1596,11 @@ var DOMTokenListPrototype$1 = classList && classList.constructor && classList.co
1592
1596
 
1593
1597
  var domTokenListPrototype = DOMTokenListPrototype$1 === Object.prototype ? undefined : DOMTokenListPrototype$1;
1594
1598
 
1595
- var global$e = global$o;
1599
+ var global$f = global$p;
1596
1600
  var DOMIterables = domIterables;
1597
1601
  var DOMTokenListPrototype = domTokenListPrototype;
1598
1602
  var ArrayIteratorMethods = es_array_iterator;
1599
- var createNonEnumerableProperty$2 = createNonEnumerableProperty$6;
1603
+ var createNonEnumerableProperty$5 = createNonEnumerableProperty$9;
1600
1604
  var setToStringTag$3 = setToStringTag$6;
1601
1605
  var wellKnownSymbol$e = wellKnownSymbol$k;
1602
1606
 
@@ -1607,7 +1611,7 @@ var handlePrototype = function (CollectionPrototype, COLLECTION_NAME) {
1607
1611
  if (CollectionPrototype) {
1608
1612
  // some Chrome versions have non-configurable methods on DOMTokenList
1609
1613
  if (CollectionPrototype[ITERATOR$5] !== ArrayValues) try {
1610
- createNonEnumerableProperty$2(CollectionPrototype, ITERATOR$5, ArrayValues);
1614
+ createNonEnumerableProperty$5(CollectionPrototype, ITERATOR$5, ArrayValues);
1611
1615
  } catch (error) {
1612
1616
  CollectionPrototype[ITERATOR$5] = ArrayValues;
1613
1617
  }
@@ -1615,7 +1619,7 @@ var handlePrototype = function (CollectionPrototype, COLLECTION_NAME) {
1615
1619
  if (DOMIterables[COLLECTION_NAME]) for (var METHOD_NAME in ArrayIteratorMethods) {
1616
1620
  // some Chrome versions have non-configurable methods on DOMTokenList
1617
1621
  if (CollectionPrototype[METHOD_NAME] !== ArrayIteratorMethods[METHOD_NAME]) try {
1618
- createNonEnumerableProperty$2(CollectionPrototype, METHOD_NAME, ArrayIteratorMethods[METHOD_NAME]);
1622
+ createNonEnumerableProperty$5(CollectionPrototype, METHOD_NAME, ArrayIteratorMethods[METHOD_NAME]);
1619
1623
  } catch (error) {
1620
1624
  CollectionPrototype[METHOD_NAME] = ArrayIteratorMethods[METHOD_NAME];
1621
1625
  }
@@ -1624,7 +1628,7 @@ var handlePrototype = function (CollectionPrototype, COLLECTION_NAME) {
1624
1628
  };
1625
1629
 
1626
1630
  for (var COLLECTION_NAME in DOMIterables) {
1627
- handlePrototype(global$e[COLLECTION_NAME] && global$e[COLLECTION_NAME].prototype, COLLECTION_NAME);
1631
+ handlePrototype(global$f[COLLECTION_NAME] && global$f[COLLECTION_NAME].prototype, COLLECTION_NAME);
1628
1632
  }
1629
1633
 
1630
1634
  handlePrototype(DOMTokenListPrototype, 'DOMTokenList');
@@ -1718,50 +1722,49 @@ const DotExperimentHandlingComponent = _ref => {
1718
1722
  return jsx(WrappedComponent, Object.assign({}, props));
1719
1723
  };
1720
1724
 
1721
- var global$d = global$o;
1722
- var classof$7 = classofRaw$2;
1723
-
1724
- var engineIsNode = classof$7(global$d.process) === 'process';
1725
-
1726
- var makeBuiltIn = makeBuiltIn$3.exports;
1727
- var defineProperty$1 = objectDefineProperty;
1728
-
1729
- var defineBuiltInAccessor$3 = function (target, name, descriptor) {
1730
- if (descriptor.get) makeBuiltIn(descriptor.get, name, { getter: true });
1731
- if (descriptor.set) makeBuiltIn(descriptor.set, name, { setter: true });
1732
- return defineProperty$1.f(target, name, descriptor);
1733
- };
1725
+ var NATIVE_BIND$1 = functionBindNative;
1734
1726
 
1735
- var getBuiltIn$3 = getBuiltIn$7;
1736
- var defineBuiltInAccessor$2 = defineBuiltInAccessor$3;
1737
- var wellKnownSymbol$d = wellKnownSymbol$k;
1738
- var DESCRIPTORS$6 = descriptors;
1727
+ var FunctionPrototype = Function.prototype;
1728
+ var apply$3 = FunctionPrototype.apply;
1729
+ var call$g = FunctionPrototype.call;
1739
1730
 
1740
- var SPECIES$3 = wellKnownSymbol$d('species');
1731
+ // eslint-disable-next-line es/no-reflect -- safe
1732
+ var functionApply = typeof Reflect == 'object' && Reflect.apply || (NATIVE_BIND$1 ? call$g.bind(apply$3) : function () {
1733
+ return call$g.apply(apply$3, arguments);
1734
+ });
1741
1735
 
1742
- var setSpecies$2 = function (CONSTRUCTOR_NAME) {
1743
- var Constructor = getBuiltIn$3(CONSTRUCTOR_NAME);
1736
+ var defineProperty$1 = objectDefineProperty.f;
1744
1737
 
1745
- if (DESCRIPTORS$6 && Constructor && !Constructor[SPECIES$3]) {
1746
- defineBuiltInAccessor$2(Constructor, SPECIES$3, {
1747
- configurable: true,
1748
- get: function () { return this; }
1749
- });
1750
- }
1738
+ var proxyAccessor$2 = function (Target, Source, key) {
1739
+ key in Target || defineProperty$1(Target, key, {
1740
+ configurable: true,
1741
+ get: function () { return Source[key]; },
1742
+ set: function (it) { Source[key] = it; }
1743
+ });
1751
1744
  };
1752
1745
 
1753
- var isPrototypeOf$3 = objectIsPrototypeOf;
1754
-
1755
- var $TypeError$7 = TypeError;
1746
+ var isCallable$b = isCallable$p;
1747
+ var isObject$5 = isObject$e;
1748
+ var setPrototypeOf$2 = objectSetPrototypeOf;
1756
1749
 
1757
- var anInstance$3 = function (it, Prototype) {
1758
- if (isPrototypeOf$3(Prototype, it)) return it;
1759
- throw new $TypeError$7('Incorrect invocation');
1750
+ // makes subclassing work correct for wrapped built-ins
1751
+ var inheritIfRequired$2 = function ($this, dummy, Wrapper) {
1752
+ var NewTarget, NewTargetPrototype;
1753
+ if (
1754
+ // it can work only with native `setPrototypeOf`
1755
+ setPrototypeOf$2 &&
1756
+ // we haven't completely correct pre-ES6 way for getting `new.target`, so use this
1757
+ isCallable$b(NewTarget = dummy.constructor) &&
1758
+ NewTarget !== Wrapper &&
1759
+ isObject$5(NewTargetPrototype = NewTarget.prototype) &&
1760
+ NewTargetPrototype !== Wrapper.prototype
1761
+ ) setPrototypeOf$2($this, NewTargetPrototype);
1762
+ return $this;
1760
1763
  };
1761
1764
 
1762
- var wellKnownSymbol$c = wellKnownSymbol$k;
1765
+ var wellKnownSymbol$d = wellKnownSymbol$k;
1763
1766
 
1764
- var TO_STRING_TAG$1 = wellKnownSymbol$c('toStringTag');
1767
+ var TO_STRING_TAG$1 = wellKnownSymbol$d('toStringTag');
1765
1768
  var test = {};
1766
1769
 
1767
1770
  test[TO_STRING_TAG$1] = 'z';
@@ -1769,11 +1772,11 @@ test[TO_STRING_TAG$1] = 'z';
1769
1772
  var toStringTagSupport = String(test) === '[object z]';
1770
1773
 
1771
1774
  var TO_STRING_TAG_SUPPORT = toStringTagSupport;
1772
- var isCallable$8 = isCallable$m;
1775
+ var isCallable$a = isCallable$p;
1773
1776
  var classofRaw$1 = classofRaw$2;
1774
- var wellKnownSymbol$b = wellKnownSymbol$k;
1777
+ var wellKnownSymbol$c = wellKnownSymbol$k;
1775
1778
 
1776
- var TO_STRING_TAG = wellKnownSymbol$b('toStringTag');
1779
+ var TO_STRING_TAG = wellKnownSymbol$c('toStringTag');
1777
1780
  var $Object = Object;
1778
1781
 
1779
1782
  // ES3 wrong here
@@ -1787,7 +1790,7 @@ var tryGet = function (it, key) {
1787
1790
  };
1788
1791
 
1789
1792
  // getting tag from ES6+ `Object.prototype.toString`
1790
- var classof$6 = TO_STRING_TAG_SUPPORT ? classofRaw$1 : function (it) {
1793
+ var classof$a = TO_STRING_TAG_SUPPORT ? classofRaw$1 : function (it) {
1791
1794
  var O, tag, result;
1792
1795
  return it === undefined ? 'Undefined' : it === null ? 'Null'
1793
1796
  // @@toStringTag case
@@ -1795,20 +1798,366 @@ var classof$6 = TO_STRING_TAG_SUPPORT ? classofRaw$1 : function (it) {
1795
1798
  // builtinTag case
1796
1799
  : CORRECT_ARGUMENTS ? classofRaw$1(O)
1797
1800
  // ES3 arguments fallback
1798
- : (result = classofRaw$1(O)) === 'Object' && isCallable$8(O.callee) ? 'Arguments' : result;
1801
+ : (result = classofRaw$1(O)) === 'Object' && isCallable$a(O.callee) ? 'Arguments' : result;
1802
+ };
1803
+
1804
+ var classof$9 = classof$a;
1805
+
1806
+ var $String$1 = String;
1807
+
1808
+ var toString$b = function (argument) {
1809
+ if (classof$9(argument) === 'Symbol') throw new TypeError('Cannot convert a Symbol value to a string');
1810
+ return $String$1(argument);
1811
+ };
1812
+
1813
+ var toString$a = toString$b;
1814
+
1815
+ var normalizeStringArgument$1 = function (argument, $default) {
1816
+ return argument === undefined ? arguments.length < 2 ? '' : $default : toString$a(argument);
1817
+ };
1818
+
1819
+ var isObject$4 = isObject$e;
1820
+ var createNonEnumerableProperty$4 = createNonEnumerableProperty$9;
1821
+
1822
+ // `InstallErrorCause` abstract operation
1823
+ // https://tc39.es/proposal-error-cause/#sec-errorobjects-install-error-cause
1824
+ var installErrorCause$1 = function (O, options) {
1825
+ if (isObject$4(options) && 'cause' in options) {
1826
+ createNonEnumerableProperty$4(O, 'cause', options.cause);
1827
+ }
1828
+ };
1829
+
1830
+ var uncurryThis$g = functionUncurryThis;
1831
+
1832
+ var $Error = Error;
1833
+ var replace$6 = uncurryThis$g(''.replace);
1834
+
1835
+ var TEST = (function (arg) { return String(new $Error(arg).stack); })('zxcasd');
1836
+ // eslint-disable-next-line redos/no-vulnerable -- safe
1837
+ var V8_OR_CHAKRA_STACK_ENTRY = /\n\s*at [^:]*:[^\n]*/;
1838
+ var IS_V8_OR_CHAKRA_STACK = V8_OR_CHAKRA_STACK_ENTRY.test(TEST);
1839
+
1840
+ var errorStackClear = function (stack, dropEntries) {
1841
+ if (IS_V8_OR_CHAKRA_STACK && typeof stack == 'string' && !$Error.prepareStackTrace) {
1842
+ while (dropEntries--) stack = replace$6(stack, V8_OR_CHAKRA_STACK_ENTRY, '');
1843
+ } return stack;
1844
+ };
1845
+
1846
+ var fails$b = fails$n;
1847
+ var createPropertyDescriptor$2 = createPropertyDescriptor$6;
1848
+
1849
+ var errorStackInstallable = !fails$b(function () {
1850
+ var error = new Error('a');
1851
+ if (!('stack' in error)) return true;
1852
+ // eslint-disable-next-line es/no-object-defineproperty -- safe
1853
+ Object.defineProperty(error, 'stack', createPropertyDescriptor$2(1, 7));
1854
+ return error.stack !== 7;
1855
+ });
1856
+
1857
+ var createNonEnumerableProperty$3 = createNonEnumerableProperty$9;
1858
+ var clearErrorStack = errorStackClear;
1859
+ var ERROR_STACK_INSTALLABLE = errorStackInstallable;
1860
+
1861
+ // non-standard V8
1862
+ var captureStackTrace = Error.captureStackTrace;
1863
+
1864
+ var errorStackInstall = function (error, C, stack, dropEntries) {
1865
+ if (ERROR_STACK_INSTALLABLE) {
1866
+ if (captureStackTrace) captureStackTrace(error, C);
1867
+ else createNonEnumerableProperty$3(error, 'stack', clearErrorStack(stack, dropEntries));
1868
+ }
1869
+ };
1870
+
1871
+ var getBuiltIn$5 = getBuiltIn$9;
1872
+ var hasOwn$5 = hasOwnProperty_1;
1873
+ var createNonEnumerableProperty$2 = createNonEnumerableProperty$9;
1874
+ var isPrototypeOf$4 = objectIsPrototypeOf;
1875
+ var setPrototypeOf$1 = objectSetPrototypeOf;
1876
+ var copyConstructorProperties = copyConstructorProperties$2;
1877
+ var proxyAccessor$1 = proxyAccessor$2;
1878
+ var inheritIfRequired$1 = inheritIfRequired$2;
1879
+ var normalizeStringArgument = normalizeStringArgument$1;
1880
+ var installErrorCause = installErrorCause$1;
1881
+ var installErrorStack = errorStackInstall;
1882
+ var DESCRIPTORS$9 = descriptors;
1883
+
1884
+ var wrapErrorConstructorWithCause$1 = function (FULL_NAME, wrapper, FORCED, IS_AGGREGATE_ERROR) {
1885
+ var STACK_TRACE_LIMIT = 'stackTraceLimit';
1886
+ var OPTIONS_POSITION = IS_AGGREGATE_ERROR ? 2 : 1;
1887
+ var path = FULL_NAME.split('.');
1888
+ var ERROR_NAME = path[path.length - 1];
1889
+ var OriginalError = getBuiltIn$5.apply(null, path);
1890
+
1891
+ if (!OriginalError) return;
1892
+
1893
+ var OriginalErrorPrototype = OriginalError.prototype;
1894
+
1895
+ // V8 9.3- bug https://bugs.chromium.org/p/v8/issues/detail?id=12006
1896
+ if (hasOwn$5(OriginalErrorPrototype, 'cause')) delete OriginalErrorPrototype.cause;
1897
+
1898
+ if (!FORCED) return OriginalError;
1899
+
1900
+ var BaseError = getBuiltIn$5('Error');
1901
+
1902
+ var WrappedError = wrapper(function (a, b) {
1903
+ var message = normalizeStringArgument(IS_AGGREGATE_ERROR ? b : a, undefined);
1904
+ var result = IS_AGGREGATE_ERROR ? new OriginalError(a) : new OriginalError();
1905
+ if (message !== undefined) createNonEnumerableProperty$2(result, 'message', message);
1906
+ installErrorStack(result, WrappedError, result.stack, 2);
1907
+ if (this && isPrototypeOf$4(OriginalErrorPrototype, this)) inheritIfRequired$1(result, this, WrappedError);
1908
+ if (arguments.length > OPTIONS_POSITION) installErrorCause(result, arguments[OPTIONS_POSITION]);
1909
+ return result;
1910
+ });
1911
+
1912
+ WrappedError.prototype = OriginalErrorPrototype;
1913
+
1914
+ if (ERROR_NAME !== 'Error') {
1915
+ if (setPrototypeOf$1) setPrototypeOf$1(WrappedError, BaseError);
1916
+ else copyConstructorProperties(WrappedError, BaseError, { name: true });
1917
+ } else if (DESCRIPTORS$9 && STACK_TRACE_LIMIT in OriginalError) {
1918
+ proxyAccessor$1(WrappedError, OriginalError, STACK_TRACE_LIMIT);
1919
+ proxyAccessor$1(WrappedError, OriginalError, 'prepareStackTrace');
1920
+ }
1921
+
1922
+ copyConstructorProperties(WrappedError, OriginalError);
1923
+
1924
+ try {
1925
+ // Safari 13- bug: WebAssembly errors does not have a proper `.name`
1926
+ if (OriginalErrorPrototype.name !== ERROR_NAME) {
1927
+ createNonEnumerableProperty$2(OriginalErrorPrototype, 'name', ERROR_NAME);
1928
+ }
1929
+ OriginalErrorPrototype.constructor = WrappedError;
1930
+ } catch (error) { /* empty */ }
1931
+
1932
+ return WrappedError;
1933
+ };
1934
+
1935
+ /* eslint-disable no-unused-vars -- required for functions `.length` */
1936
+ var $$e = _export;
1937
+ var global$e = global$p;
1938
+ var apply$2 = functionApply;
1939
+ var wrapErrorConstructorWithCause = wrapErrorConstructorWithCause$1;
1940
+
1941
+ var WEB_ASSEMBLY = 'WebAssembly';
1942
+ var WebAssembly = global$e[WEB_ASSEMBLY];
1943
+
1944
+ // eslint-disable-next-line es/no-error-cause -- feature detection
1945
+ var FORCED = new Error('e', { cause: 7 }).cause !== 7;
1946
+
1947
+ var exportGlobalErrorCauseWrapper = function (ERROR_NAME, wrapper) {
1948
+ var O = {};
1949
+ O[ERROR_NAME] = wrapErrorConstructorWithCause(ERROR_NAME, wrapper, FORCED);
1950
+ $$e({ global: true, constructor: true, arity: 1, forced: FORCED }, O);
1951
+ };
1952
+
1953
+ var exportWebAssemblyErrorCauseWrapper = function (ERROR_NAME, wrapper) {
1954
+ if (WebAssembly && WebAssembly[ERROR_NAME]) {
1955
+ var O = {};
1956
+ O[ERROR_NAME] = wrapErrorConstructorWithCause(WEB_ASSEMBLY + '.' + ERROR_NAME, wrapper, FORCED);
1957
+ $$e({ target: WEB_ASSEMBLY, stat: true, constructor: true, arity: 1, forced: FORCED }, O);
1958
+ }
1959
+ };
1960
+
1961
+ // https://tc39.es/ecma262/#sec-nativeerror
1962
+ exportGlobalErrorCauseWrapper('Error', function (init) {
1963
+ return function Error(message) { return apply$2(init, this, arguments); };
1964
+ });
1965
+ exportGlobalErrorCauseWrapper('EvalError', function (init) {
1966
+ return function EvalError(message) { return apply$2(init, this, arguments); };
1967
+ });
1968
+ exportGlobalErrorCauseWrapper('RangeError', function (init) {
1969
+ return function RangeError(message) { return apply$2(init, this, arguments); };
1970
+ });
1971
+ exportGlobalErrorCauseWrapper('ReferenceError', function (init) {
1972
+ return function ReferenceError(message) { return apply$2(init, this, arguments); };
1973
+ });
1974
+ exportGlobalErrorCauseWrapper('SyntaxError', function (init) {
1975
+ return function SyntaxError(message) { return apply$2(init, this, arguments); };
1976
+ });
1977
+ exportGlobalErrorCauseWrapper('TypeError', function (init) {
1978
+ return function TypeError(message) { return apply$2(init, this, arguments); };
1979
+ });
1980
+ exportGlobalErrorCauseWrapper('URIError', function (init) {
1981
+ return function URIError(message) { return apply$2(init, this, arguments); };
1982
+ });
1983
+ exportWebAssemblyErrorCauseWrapper('CompileError', function (init) {
1984
+ return function CompileError(message) { return apply$2(init, this, arguments); };
1985
+ });
1986
+ exportWebAssemblyErrorCauseWrapper('LinkError', function (init) {
1987
+ return function LinkError(message) { return apply$2(init, this, arguments); };
1988
+ });
1989
+ exportWebAssemblyErrorCauseWrapper('RuntimeError', function (init) {
1990
+ return function RuntimeError(message) { return apply$2(init, this, arguments); };
1991
+ });
1992
+
1993
+ var uncurryThis$f = functionUncurryThis;
1994
+
1995
+ var arraySlice$4 = uncurryThis$f([].slice);
1996
+
1997
+ var classof$8 = classofRaw$2;
1998
+
1999
+ // `IsArray` abstract operation
2000
+ // https://tc39.es/ecma262/#sec-isarray
2001
+ // eslint-disable-next-line es/no-array-isarray -- safe
2002
+ var isArray$1 = Array.isArray || function isArray(argument) {
2003
+ return classof$8(argument) === 'Array';
2004
+ };
2005
+
2006
+ var uncurryThis$e = functionUncurryThis;
2007
+ var isArray = isArray$1;
2008
+ var isCallable$9 = isCallable$p;
2009
+ var classof$7 = classofRaw$2;
2010
+ var toString$9 = toString$b;
2011
+
2012
+ var push$4 = uncurryThis$e([].push);
2013
+
2014
+ var getJsonReplacerFunction = function (replacer) {
2015
+ if (isCallable$9(replacer)) return replacer;
2016
+ if (!isArray(replacer)) return;
2017
+ var rawLength = replacer.length;
2018
+ var keys = [];
2019
+ for (var i = 0; i < rawLength; i++) {
2020
+ var element = replacer[i];
2021
+ if (typeof element == 'string') push$4(keys, element);
2022
+ else if (typeof element == 'number' || classof$7(element) === 'Number' || classof$7(element) === 'String') push$4(keys, toString$9(element));
2023
+ }
2024
+ var keysLength = keys.length;
2025
+ var root = true;
2026
+ return function (key, value) {
2027
+ if (root) {
2028
+ root = false;
2029
+ return value;
2030
+ }
2031
+ if (isArray(this)) return value;
2032
+ for (var j = 0; j < keysLength; j++) if (keys[j] === key) return value;
2033
+ };
2034
+ };
2035
+
2036
+ var $$d = _export;
2037
+ var getBuiltIn$4 = getBuiltIn$9;
2038
+ var apply$1 = functionApply;
2039
+ var call$f = functionCall;
2040
+ var uncurryThis$d = functionUncurryThis;
2041
+ var fails$a = fails$n;
2042
+ var isCallable$8 = isCallable$p;
2043
+ var isSymbol = isSymbol$3;
2044
+ var arraySlice$3 = arraySlice$4;
2045
+ var getReplacerFunction = getJsonReplacerFunction;
2046
+ var NATIVE_SYMBOL = symbolConstructorDetection;
2047
+
2048
+ var $String = String;
2049
+ var $stringify = getBuiltIn$4('JSON', 'stringify');
2050
+ var exec$5 = uncurryThis$d(/./.exec);
2051
+ var charAt$6 = uncurryThis$d(''.charAt);
2052
+ var charCodeAt$2 = uncurryThis$d(''.charCodeAt);
2053
+ var replace$5 = uncurryThis$d(''.replace);
2054
+ var numberToString$1 = uncurryThis$d(1.0.toString);
2055
+
2056
+ var tester = /[\uD800-\uDFFF]/g;
2057
+ var low = /^[\uD800-\uDBFF]$/;
2058
+ var hi = /^[\uDC00-\uDFFF]$/;
2059
+
2060
+ var WRONG_SYMBOLS_CONVERSION = !NATIVE_SYMBOL || fails$a(function () {
2061
+ var symbol = getBuiltIn$4('Symbol')('stringify detection');
2062
+ // MS Edge converts symbol values to JSON as {}
2063
+ return $stringify([symbol]) !== '[null]'
2064
+ // WebKit converts symbol values to JSON as null
2065
+ || $stringify({ a: symbol }) !== '{}'
2066
+ // V8 throws on boxed symbols
2067
+ || $stringify(Object(symbol)) !== '{}';
2068
+ });
2069
+
2070
+ // https://github.com/tc39/proposal-well-formed-stringify
2071
+ var ILL_FORMED_UNICODE = fails$a(function () {
2072
+ return $stringify('\uDF06\uD834') !== '"\\udf06\\ud834"'
2073
+ || $stringify('\uDEAD') !== '"\\udead"';
2074
+ });
2075
+
2076
+ var stringifyWithSymbolsFix = function (it, replacer) {
2077
+ var args = arraySlice$3(arguments);
2078
+ var $replacer = getReplacerFunction(replacer);
2079
+ if (!isCallable$8($replacer) && (it === undefined || isSymbol(it))) return; // IE8 returns string on undefined
2080
+ args[1] = function (key, value) {
2081
+ // some old implementations (like WebKit) could pass numbers as keys
2082
+ if (isCallable$8($replacer)) value = call$f($replacer, this, $String(key), value);
2083
+ if (!isSymbol(value)) return value;
2084
+ };
2085
+ return apply$1($stringify, null, args);
2086
+ };
2087
+
2088
+ var fixIllFormed = function (match, offset, string) {
2089
+ var prev = charAt$6(string, offset - 1);
2090
+ var next = charAt$6(string, offset + 1);
2091
+ if ((exec$5(low, match) && !exec$5(hi, next)) || (exec$5(hi, match) && !exec$5(low, prev))) {
2092
+ return '\\u' + numberToString$1(charCodeAt$2(match, 0), 16);
2093
+ } return match;
2094
+ };
2095
+
2096
+ if ($stringify) {
2097
+ // `JSON.stringify` method
2098
+ // https://tc39.es/ecma262/#sec-json.stringify
2099
+ $$d({ target: 'JSON', stat: true, arity: 3, forced: WRONG_SYMBOLS_CONVERSION || ILL_FORMED_UNICODE }, {
2100
+ // eslint-disable-next-line no-unused-vars -- required for `.length`
2101
+ stringify: function stringify(it, replacer, space) {
2102
+ var args = arraySlice$3(arguments);
2103
+ var result = apply$1(WRONG_SYMBOLS_CONVERSION ? stringifyWithSymbolsFix : $stringify, null, args);
2104
+ return ILL_FORMED_UNICODE && typeof result == 'string' ? replace$5(result, tester, fixIllFormed) : result;
2105
+ }
2106
+ });
2107
+ }
2108
+
2109
+ var global$d = global$p;
2110
+ var classof$6 = classofRaw$2;
2111
+
2112
+ var engineIsNode = classof$6(global$d.process) === 'process';
2113
+
2114
+ var makeBuiltIn = makeBuiltInExports;
2115
+ var defineProperty = objectDefineProperty;
2116
+
2117
+ var defineBuiltInAccessor$5 = function (target, name, descriptor) {
2118
+ if (descriptor.get) makeBuiltIn(descriptor.get, name, { getter: true });
2119
+ if (descriptor.set) makeBuiltIn(descriptor.set, name, { setter: true });
2120
+ return defineProperty.f(target, name, descriptor);
2121
+ };
2122
+
2123
+ var getBuiltIn$3 = getBuiltIn$9;
2124
+ var defineBuiltInAccessor$4 = defineBuiltInAccessor$5;
2125
+ var wellKnownSymbol$b = wellKnownSymbol$k;
2126
+ var DESCRIPTORS$8 = descriptors;
2127
+
2128
+ var SPECIES$3 = wellKnownSymbol$b('species');
2129
+
2130
+ var setSpecies$2 = function (CONSTRUCTOR_NAME) {
2131
+ var Constructor = getBuiltIn$3(CONSTRUCTOR_NAME);
2132
+
2133
+ if (DESCRIPTORS$8 && Constructor && !Constructor[SPECIES$3]) {
2134
+ defineBuiltInAccessor$4(Constructor, SPECIES$3, {
2135
+ configurable: true,
2136
+ get: function () { return this; }
2137
+ });
2138
+ }
1799
2139
  };
1800
2140
 
1801
- var uncurryThis$a = functionUncurryThis;
1802
- var fails$9 = fails$l;
1803
- var isCallable$7 = isCallable$m;
1804
- var classof$5 = classof$6;
1805
- var getBuiltIn$2 = getBuiltIn$7;
2141
+ var isPrototypeOf$3 = objectIsPrototypeOf;
2142
+
2143
+ var $TypeError$8 = TypeError;
2144
+
2145
+ var anInstance$3 = function (it, Prototype) {
2146
+ if (isPrototypeOf$3(Prototype, it)) return it;
2147
+ throw new $TypeError$8('Incorrect invocation');
2148
+ };
2149
+
2150
+ var uncurryThis$c = functionUncurryThis;
2151
+ var fails$9 = fails$n;
2152
+ var isCallable$7 = isCallable$p;
2153
+ var classof$5 = classof$a;
2154
+ var getBuiltIn$2 = getBuiltIn$9;
1806
2155
  var inspectSource$1 = inspectSource$3;
1807
2156
 
1808
2157
  var noop = function () { /* empty */ };
1809
2158
  var construct = getBuiltIn$2('Reflect', 'construct');
1810
2159
  var constructorRegExp = /^\s*(?:class|function)\b/;
1811
- var exec$4 = uncurryThis$a(constructorRegExp.exec);
2160
+ var exec$4 = uncurryThis$c(constructorRegExp.exec);
1812
2161
  var INCORRECT_TO_STRING = !constructorRegExp.test(noop);
1813
2162
 
1814
2163
  var isConstructorModern = function isConstructor(argument) {
@@ -1853,15 +2202,15 @@ var isConstructor$2 = !construct || fails$9(function () {
1853
2202
  var isConstructor$1 = isConstructor$2;
1854
2203
  var tryToString$2 = tryToString$4;
1855
2204
 
1856
- var $TypeError$6 = TypeError;
2205
+ var $TypeError$7 = TypeError;
1857
2206
 
1858
2207
  // `Assert: IsConstructor(argument) is true`
1859
2208
  var aConstructor$1 = function (argument) {
1860
2209
  if (isConstructor$1(argument)) return argument;
1861
- throw new $TypeError$6(tryToString$2(argument) + ' is not a constructor');
2210
+ throw new $TypeError$7(tryToString$2(argument) + ' is not a constructor');
1862
2211
  };
1863
2212
 
1864
- var anObject$a = anObject$f;
2213
+ var anObject$b = anObject$g;
1865
2214
  var aConstructor = aConstructor$1;
1866
2215
  var isNullOrUndefined$2 = isNullOrUndefined$5;
1867
2216
  var wellKnownSymbol$a = wellKnownSymbol$k;
@@ -1871,37 +2220,26 @@ var SPECIES$2 = wellKnownSymbol$a('species');
1871
2220
  // `SpeciesConstructor` abstract operation
1872
2221
  // https://tc39.es/ecma262/#sec-speciesconstructor
1873
2222
  var speciesConstructor$1 = function (O, defaultConstructor) {
1874
- var C = anObject$a(O).constructor;
2223
+ var C = anObject$b(O).constructor;
1875
2224
  var S;
1876
- return C === undefined || isNullOrUndefined$2(S = anObject$a(C)[SPECIES$2]) ? defaultConstructor : aConstructor(S);
2225
+ return C === undefined || isNullOrUndefined$2(S = anObject$b(C)[SPECIES$2]) ? defaultConstructor : aConstructor(S);
1877
2226
  };
1878
2227
 
1879
- var NATIVE_BIND$1 = functionBindNative;
1880
-
1881
- var FunctionPrototype = Function.prototype;
1882
- var apply$1 = FunctionPrototype.apply;
1883
- var call$e = FunctionPrototype.call;
1884
-
1885
- // eslint-disable-next-line es/no-reflect -- safe
1886
- var functionApply = typeof Reflect == 'object' && Reflect.apply || (NATIVE_BIND$1 ? call$e.bind(apply$1) : function () {
1887
- return call$e.apply(apply$1, arguments);
1888
- });
1889
-
1890
2228
  var classofRaw = classofRaw$2;
1891
- var uncurryThis$9 = functionUncurryThis;
2229
+ var uncurryThis$b = functionUncurryThis;
1892
2230
 
1893
2231
  var functionUncurryThisClause = function (fn) {
1894
2232
  // Nashorn bug:
1895
2233
  // https://github.com/zloirock/core-js/issues/1128
1896
2234
  // https://github.com/zloirock/core-js/issues/1130
1897
- if (classofRaw(fn) === 'Function') return uncurryThis$9(fn);
2235
+ if (classofRaw(fn) === 'Function') return uncurryThis$b(fn);
1898
2236
  };
1899
2237
 
1900
- var uncurryThis$8 = functionUncurryThisClause;
2238
+ var uncurryThis$a = functionUncurryThisClause;
1901
2239
  var aCallable$5 = aCallable$8;
1902
2240
  var NATIVE_BIND = functionBindNative;
1903
2241
 
1904
- var bind$7 = uncurryThis$8(uncurryThis$8.bind);
2242
+ var bind$7 = uncurryThis$a(uncurryThis$a.bind);
1905
2243
 
1906
2244
  // optional / simple context binding
1907
2245
  var functionBindContext = function (fn, that) {
@@ -1911,14 +2249,10 @@ var functionBindContext = function (fn, that) {
1911
2249
  };
1912
2250
  };
1913
2251
 
1914
- var uncurryThis$7 = functionUncurryThis;
1915
-
1916
- var arraySlice$3 = uncurryThis$7([].slice);
1917
-
1918
- var $TypeError$5 = TypeError;
2252
+ var $TypeError$6 = TypeError;
1919
2253
 
1920
- var validateArgumentsLength$3 = function (passed, required) {
1921
- if (passed < required) throw new $TypeError$5('Not enough arguments');
2254
+ var validateArgumentsLength$5 = function (passed, required) {
2255
+ if (passed < required) throw new $TypeError$6('Not enough arguments');
1922
2256
  return passed;
1923
2257
  };
1924
2258
 
@@ -1927,16 +2261,16 @@ var userAgent$2 = engineUserAgent;
1927
2261
  // eslint-disable-next-line redos/no-vulnerable -- safe
1928
2262
  var engineIsIos = /(?:ipad|iphone|ipod).*applewebkit/i.test(userAgent$2);
1929
2263
 
1930
- var global$c = global$o;
2264
+ var global$c = global$p;
1931
2265
  var apply = functionApply;
1932
2266
  var bind$6 = functionBindContext;
1933
- var isCallable$6 = isCallable$m;
2267
+ var isCallable$6 = isCallable$p;
1934
2268
  var hasOwn$4 = hasOwnProperty_1;
1935
- var fails$8 = fails$l;
2269
+ var fails$8 = fails$n;
1936
2270
  var html = html$2;
1937
- var arraySlice$2 = arraySlice$3;
2271
+ var arraySlice$2 = arraySlice$4;
1938
2272
  var createElement = documentCreateElement$2;
1939
- var validateArgumentsLength$2 = validateArgumentsLength$3;
2273
+ var validateArgumentsLength$4 = validateArgumentsLength$5;
1940
2274
  var IS_IOS$1 = engineIsIos;
1941
2275
  var IS_NODE$3 = engineIsNode;
1942
2276
 
@@ -1983,7 +2317,7 @@ var globalPostMessageDefer = function (id) {
1983
2317
  // Node.js 0.9+ & IE10+ has setImmediate, otherwise:
1984
2318
  if (!set || !clear) {
1985
2319
  set = function setImmediate(handler) {
1986
- validateArgumentsLength$2(arguments.length, 1);
2320
+ validateArgumentsLength$4(arguments.length, 1);
1987
2321
  var fn = isCallable$6(handler) ? handler : Function$1(handler);
1988
2322
  var args = arraySlice$2(arguments, 1);
1989
2323
  queue$2[++counter] = function () {
@@ -2044,15 +2378,15 @@ var task$1 = {
2044
2378
  clear: clear
2045
2379
  };
2046
2380
 
2047
- var global$b = global$o;
2048
- var DESCRIPTORS$5 = descriptors;
2381
+ var global$b = global$p;
2382
+ var DESCRIPTORS$7 = descriptors;
2049
2383
 
2050
2384
  // eslint-disable-next-line es/no-object-getownpropertydescriptor -- safe
2051
2385
  var getOwnPropertyDescriptor = Object.getOwnPropertyDescriptor;
2052
2386
 
2053
2387
  // Avoid NodeJS experimental warning
2054
2388
  var safeGetBuiltIn$2 = function (name) {
2055
- if (!DESCRIPTORS$5) return global$b[name];
2389
+ if (!DESCRIPTORS$7) return global$b[name];
2056
2390
  var descriptor = getOwnPropertyDescriptor(global$b, name);
2057
2391
  return descriptor && descriptor.value;
2058
2392
  };
@@ -2090,7 +2424,7 @@ var userAgent = engineUserAgent;
2090
2424
 
2091
2425
  var engineIsWebosWebkit = /web0s(?!.*chrome)/i.test(userAgent);
2092
2426
 
2093
- var global$a = global$o;
2427
+ var global$a = global$p;
2094
2428
  var safeGetBuiltIn$1 = safeGetBuiltIn$2;
2095
2429
  var bind$5 = functionBindContext;
2096
2430
  var macrotask = task$1.set;
@@ -2184,7 +2518,7 @@ var perform$3 = function (exec) {
2184
2518
  }
2185
2519
  };
2186
2520
 
2187
- var global$9 = global$o;
2521
+ var global$9 = global$p;
2188
2522
 
2189
2523
  var promiseNativeConstructor = global$9.Promise;
2190
2524
 
@@ -2198,9 +2532,9 @@ var engineIsBrowser = !IS_DENO$1 && !IS_NODE$1
2198
2532
  && typeof window == 'object'
2199
2533
  && typeof document == 'object';
2200
2534
 
2201
- var global$8 = global$o;
2535
+ var global$8 = global$p;
2202
2536
  var NativePromiseConstructor$3 = promiseNativeConstructor;
2203
- var isCallable$5 = isCallable$m;
2537
+ var isCallable$5 = isCallable$p;
2204
2538
  var isForced$1 = isForced_1;
2205
2539
  var inspectSource = inspectSource$3;
2206
2540
  var wellKnownSymbol$9 = wellKnownSymbol$k;
@@ -2247,12 +2581,12 @@ var newPromiseCapability$2 = {};
2247
2581
 
2248
2582
  var aCallable$4 = aCallable$8;
2249
2583
 
2250
- var $TypeError$4 = TypeError;
2584
+ var $TypeError$5 = TypeError;
2251
2585
 
2252
2586
  var PromiseCapability = function (C) {
2253
2587
  var resolve, reject;
2254
2588
  this.promise = new C(function ($$resolve, $$reject) {
2255
- if (resolve !== undefined || reject !== undefined) throw new $TypeError$4('Bad Promise constructor');
2589
+ if (resolve !== undefined || reject !== undefined) throw new $TypeError$5('Bad Promise constructor');
2256
2590
  resolve = $$resolve;
2257
2591
  reject = $$reject;
2258
2592
  });
@@ -2266,17 +2600,17 @@ newPromiseCapability$2.f = function (C) {
2266
2600
  return new PromiseCapability(C);
2267
2601
  };
2268
2602
 
2269
- var $$b = _export;
2603
+ var $$c = _export;
2270
2604
  var IS_NODE = engineIsNode;
2271
- var global$7 = global$o;
2272
- var call$d = functionCall;
2273
- var defineBuiltIn$7 = defineBuiltIn$b;
2274
- var setPrototypeOf$1 = objectSetPrototypeOf;
2605
+ var global$7 = global$p;
2606
+ var call$e = functionCall;
2607
+ var defineBuiltIn$9 = defineBuiltIn$d;
2608
+ var setPrototypeOf = objectSetPrototypeOf;
2275
2609
  var setToStringTag$2 = setToStringTag$6;
2276
2610
  var setSpecies$1 = setSpecies$2;
2277
2611
  var aCallable$3 = aCallable$8;
2278
- var isCallable$4 = isCallable$m;
2279
- var isObject$4 = isObject$d;
2612
+ var isCallable$4 = isCallable$p;
2613
+ var isObject$3 = isObject$e;
2280
2614
  var anInstance$2 = anInstance$3;
2281
2615
  var speciesConstructor = speciesConstructor$1;
2282
2616
  var task = task$1.set;
@@ -2318,7 +2652,7 @@ var Internal, OwnPromiseCapability, PromiseWrapper, nativeThen;
2318
2652
  // helpers
2319
2653
  var isThenable = function (it) {
2320
2654
  var then;
2321
- return isObject$4(it) && isCallable$4(then = it.then) ? then : false;
2655
+ return isObject$3(it) && isCallable$4(then = it.then) ? then : false;
2322
2656
  };
2323
2657
 
2324
2658
  var callReaction = function (reaction, state) {
@@ -2347,7 +2681,7 @@ var callReaction = function (reaction, state) {
2347
2681
  if (result === reaction.promise) {
2348
2682
  reject(new TypeError$3('Promise-chain cycle'));
2349
2683
  } else if (then = isThenable(result)) {
2350
- call$d(then, result, resolve, reject);
2684
+ call$e(then, result, resolve, reject);
2351
2685
  } else resolve(result);
2352
2686
  } else reject(value);
2353
2687
  } catch (error) {
@@ -2384,7 +2718,7 @@ var dispatchEvent = function (name, promise, reason) {
2384
2718
  };
2385
2719
 
2386
2720
  var onUnhandled = function (state) {
2387
- call$d(task, global$7, function () {
2721
+ call$e(task, global$7, function () {
2388
2722
  var promise = state.facade;
2389
2723
  var value = state.value;
2390
2724
  var IS_UNHANDLED = isUnhandled(state);
@@ -2407,7 +2741,7 @@ var isUnhandled = function (state) {
2407
2741
  };
2408
2742
 
2409
2743
  var onHandleUnhandled = function (state) {
2410
- call$d(task, global$7, function () {
2744
+ call$e(task, global$7, function () {
2411
2745
  var promise = state.facade;
2412
2746
  if (IS_NODE) {
2413
2747
  process.emit('rejectionHandled', promise);
@@ -2441,7 +2775,7 @@ var internalResolve = function (state, value, unwrap) {
2441
2775
  microtask(function () {
2442
2776
  var wrapper = { done: false };
2443
2777
  try {
2444
- call$d(then, value,
2778
+ call$e(then, value,
2445
2779
  bind$4(internalResolve, wrapper, state),
2446
2780
  bind$4(internalReject, wrapper, state)
2447
2781
  );
@@ -2465,7 +2799,7 @@ if (FORCED_PROMISE_CONSTRUCTOR$4) {
2465
2799
  PromiseConstructor = function Promise(executor) {
2466
2800
  anInstance$2(this, PromisePrototype);
2467
2801
  aCallable$3(executor);
2468
- call$d(Internal, this);
2802
+ call$e(Internal, this);
2469
2803
  var state = getInternalPromiseState(this);
2470
2804
  try {
2471
2805
  executor(bind$4(internalResolve, state), bind$4(internalReject, state));
@@ -2492,7 +2826,7 @@ if (FORCED_PROMISE_CONSTRUCTOR$4) {
2492
2826
 
2493
2827
  // `Promise.prototype.then` method
2494
2828
  // https://tc39.es/ecma262/#sec-promise.prototype.then
2495
- Internal.prototype = defineBuiltIn$7(PromisePrototype, 'then', function then(onFulfilled, onRejected) {
2829
+ Internal.prototype = defineBuiltIn$9(PromisePrototype, 'then', function then(onFulfilled, onRejected) {
2496
2830
  var state = getInternalPromiseState(this);
2497
2831
  var reaction = newPromiseCapability$1(speciesConstructor(this, PromiseConstructor));
2498
2832
  state.parent = true;
@@ -2525,10 +2859,10 @@ if (FORCED_PROMISE_CONSTRUCTOR$4) {
2525
2859
 
2526
2860
  if (!NATIVE_PROMISE_SUBCLASSING) {
2527
2861
  // make `Promise#then` return a polyfilled `Promise` for native promise-based APIs
2528
- defineBuiltIn$7(NativePromisePrototype$1, 'then', function then(onFulfilled, onRejected) {
2862
+ defineBuiltIn$9(NativePromisePrototype$1, 'then', function then(onFulfilled, onRejected) {
2529
2863
  var that = this;
2530
2864
  return new PromiseConstructor(function (resolve, reject) {
2531
- call$d(nativeThen, that, resolve, reject);
2865
+ call$e(nativeThen, that, resolve, reject);
2532
2866
  }).then(onFulfilled, onRejected);
2533
2867
  // https://github.com/zloirock/core-js/issues/640
2534
2868
  }, { unsafe: true });
@@ -2540,13 +2874,13 @@ if (FORCED_PROMISE_CONSTRUCTOR$4) {
2540
2874
  } catch (error) { /* empty */ }
2541
2875
 
2542
2876
  // make `instanceof Promise` work for native promise-based APIs
2543
- if (setPrototypeOf$1) {
2544
- setPrototypeOf$1(NativePromisePrototype$1, PromisePrototype);
2877
+ if (setPrototypeOf) {
2878
+ setPrototypeOf(NativePromisePrototype$1, PromisePrototype);
2545
2879
  }
2546
2880
  }
2547
2881
  }
2548
2882
 
2549
- $$b({ global: true, constructor: true, wrap: true, forced: FORCED_PROMISE_CONSTRUCTOR$4 }, {
2883
+ $$c({ global: true, constructor: true, wrap: true, forced: FORCED_PROMISE_CONSTRUCTOR$4 }, {
2550
2884
  Promise: PromiseConstructor
2551
2885
  });
2552
2886
 
@@ -2564,7 +2898,7 @@ var isArrayIteratorMethod$2 = function (it) {
2564
2898
  return it !== undefined && (Iterators$1.Array === it || ArrayPrototype[ITERATOR$4] === it);
2565
2899
  };
2566
2900
 
2567
- var classof$4 = classof$6;
2901
+ var classof$4 = classof$a;
2568
2902
  var getMethod$2 = getMethod$4;
2569
2903
  var isNullOrUndefined$1 = isNullOrUndefined$5;
2570
2904
  var Iterators = iterators;
@@ -2578,47 +2912,47 @@ var getIteratorMethod$4 = function (it) {
2578
2912
  || Iterators[classof$4(it)];
2579
2913
  };
2580
2914
 
2581
- var call$c = functionCall;
2915
+ var call$d = functionCall;
2582
2916
  var aCallable$2 = aCallable$8;
2583
- var anObject$9 = anObject$f;
2917
+ var anObject$a = anObject$g;
2584
2918
  var tryToString$1 = tryToString$4;
2585
2919
  var getIteratorMethod$3 = getIteratorMethod$4;
2586
2920
 
2587
- var $TypeError$3 = TypeError;
2921
+ var $TypeError$4 = TypeError;
2588
2922
 
2589
2923
  var getIterator$3 = function (argument, usingIterator) {
2590
2924
  var iteratorMethod = arguments.length < 2 ? getIteratorMethod$3(argument) : usingIterator;
2591
- if (aCallable$2(iteratorMethod)) return anObject$9(call$c(iteratorMethod, argument));
2592
- throw new $TypeError$3(tryToString$1(argument) + ' is not iterable');
2925
+ if (aCallable$2(iteratorMethod)) return anObject$a(call$d(iteratorMethod, argument));
2926
+ throw new $TypeError$4(tryToString$1(argument) + ' is not iterable');
2593
2927
  };
2594
2928
 
2595
- var call$b = functionCall;
2596
- var anObject$8 = anObject$f;
2929
+ var call$c = functionCall;
2930
+ var anObject$9 = anObject$g;
2597
2931
  var getMethod$1 = getMethod$4;
2598
2932
 
2599
2933
  var iteratorClose$2 = function (iterator, kind, value) {
2600
2934
  var innerResult, innerError;
2601
- anObject$8(iterator);
2935
+ anObject$9(iterator);
2602
2936
  try {
2603
2937
  innerResult = getMethod$1(iterator, 'return');
2604
2938
  if (!innerResult) {
2605
2939
  if (kind === 'throw') throw value;
2606
2940
  return value;
2607
2941
  }
2608
- innerResult = call$b(innerResult, iterator);
2942
+ innerResult = call$c(innerResult, iterator);
2609
2943
  } catch (error) {
2610
2944
  innerError = true;
2611
2945
  innerResult = error;
2612
2946
  }
2613
2947
  if (kind === 'throw') throw value;
2614
2948
  if (innerError) throw innerResult;
2615
- anObject$8(innerResult);
2949
+ anObject$9(innerResult);
2616
2950
  return value;
2617
2951
  };
2618
2952
 
2619
2953
  var bind$3 = functionBindContext;
2620
- var call$a = functionCall;
2621
- var anObject$7 = anObject$f;
2954
+ var call$b = functionCall;
2955
+ var anObject$8 = anObject$g;
2622
2956
  var tryToString = tryToString$4;
2623
2957
  var isArrayIteratorMethod$1 = isArrayIteratorMethod$2;
2624
2958
  var lengthOfArrayLike$1 = lengthOfArrayLike$3;
@@ -2627,7 +2961,7 @@ var getIterator$2 = getIterator$3;
2627
2961
  var getIteratorMethod$2 = getIteratorMethod$4;
2628
2962
  var iteratorClose$1 = iteratorClose$2;
2629
2963
 
2630
- var $TypeError$2 = TypeError;
2964
+ var $TypeError$3 = TypeError;
2631
2965
 
2632
2966
  var Result = function (stopped, result) {
2633
2967
  this.stopped = stopped;
@@ -2652,7 +2986,7 @@ var iterate$2 = function (iterable, unboundFunction, options) {
2652
2986
 
2653
2987
  var callFn = function (value) {
2654
2988
  if (AS_ENTRIES) {
2655
- anObject$7(value);
2989
+ anObject$8(value);
2656
2990
  return INTERRUPTED ? fn(value[0], value[1], stop) : fn(value[0], value[1]);
2657
2991
  } return INTERRUPTED ? fn(value, stop) : fn(value);
2658
2992
  };
@@ -2663,7 +2997,7 @@ var iterate$2 = function (iterable, unboundFunction, options) {
2663
2997
  iterator = iterable;
2664
2998
  } else {
2665
2999
  iterFn = getIteratorMethod$2(iterable);
2666
- if (!iterFn) throw new $TypeError$2(tryToString(iterable) + ' is not iterable');
3000
+ if (!iterFn) throw new $TypeError$3(tryToString(iterable) + ' is not iterable');
2667
3001
  // optimisation for array iterators
2668
3002
  if (isArrayIteratorMethod$1(iterFn)) {
2669
3003
  for (index = 0, length = lengthOfArrayLike$1(iterable); length > index; index++) {
@@ -2675,7 +3009,7 @@ var iterate$2 = function (iterable, unboundFunction, options) {
2675
3009
  }
2676
3010
 
2677
3011
  next = IS_RECORD ? iterable.next : iterator.next;
2678
- while (!(step = call$a(next, iterator)).done) {
3012
+ while (!(step = call$b(next, iterator)).done) {
2679
3013
  try {
2680
3014
  result = callFn(step.value);
2681
3015
  } catch (error) {
@@ -2734,8 +3068,8 @@ var promiseStaticsIncorrectIteration = FORCED_PROMISE_CONSTRUCTOR$3 || !checkCor
2734
3068
  NativePromiseConstructor$1.all(iterable).then(undefined, function () { /* empty */ });
2735
3069
  });
2736
3070
 
2737
- var $$a = _export;
2738
- var call$9 = functionCall;
3071
+ var $$b = _export;
3072
+ var call$a = functionCall;
2739
3073
  var aCallable$1 = aCallable$8;
2740
3074
  var newPromiseCapabilityModule$2 = newPromiseCapability$2;
2741
3075
  var perform$1 = perform$3;
@@ -2744,7 +3078,7 @@ var PROMISE_STATICS_INCORRECT_ITERATION$1 = promiseStaticsIncorrectIteration;
2744
3078
 
2745
3079
  // `Promise.all` method
2746
3080
  // https://tc39.es/ecma262/#sec-promise.all
2747
- $$a({ target: 'Promise', stat: true, forced: PROMISE_STATICS_INCORRECT_ITERATION$1 }, {
3081
+ $$b({ target: 'Promise', stat: true, forced: PROMISE_STATICS_INCORRECT_ITERATION$1 }, {
2748
3082
  all: function all(iterable) {
2749
3083
  var C = this;
2750
3084
  var capability = newPromiseCapabilityModule$2.f(C);
@@ -2759,7 +3093,7 @@ $$a({ target: 'Promise', stat: true, forced: PROMISE_STATICS_INCORRECT_ITERATION
2759
3093
  var index = counter++;
2760
3094
  var alreadyCalled = false;
2761
3095
  remaining++;
2762
- call$9($promiseResolve, C, promise).then(function (value) {
3096
+ call$a($promiseResolve, C, promise).then(function (value) {
2763
3097
  if (alreadyCalled) return;
2764
3098
  alreadyCalled = true;
2765
3099
  values[index] = value;
@@ -2773,18 +3107,18 @@ $$a({ target: 'Promise', stat: true, forced: PROMISE_STATICS_INCORRECT_ITERATION
2773
3107
  }
2774
3108
  });
2775
3109
 
2776
- var $$9 = _export;
3110
+ var $$a = _export;
2777
3111
  var FORCED_PROMISE_CONSTRUCTOR$2 = promiseConstructorDetection.CONSTRUCTOR;
2778
3112
  var NativePromiseConstructor = promiseNativeConstructor;
2779
- var getBuiltIn$1 = getBuiltIn$7;
2780
- var isCallable$3 = isCallable$m;
2781
- var defineBuiltIn$6 = defineBuiltIn$b;
3113
+ var getBuiltIn$1 = getBuiltIn$9;
3114
+ var isCallable$3 = isCallable$p;
3115
+ var defineBuiltIn$8 = defineBuiltIn$d;
2782
3116
 
2783
3117
  var NativePromisePrototype = NativePromiseConstructor && NativePromiseConstructor.prototype;
2784
3118
 
2785
3119
  // `Promise.prototype.catch` method
2786
3120
  // https://tc39.es/ecma262/#sec-promise.prototype.catch
2787
- $$9({ target: 'Promise', proto: true, forced: FORCED_PROMISE_CONSTRUCTOR$2, real: true }, {
3121
+ $$a({ target: 'Promise', proto: true, forced: FORCED_PROMISE_CONSTRUCTOR$2, real: true }, {
2788
3122
  'catch': function (onRejected) {
2789
3123
  return this.then(undefined, onRejected);
2790
3124
  }
@@ -2794,12 +3128,12 @@ $$9({ target: 'Promise', proto: true, forced: FORCED_PROMISE_CONSTRUCTOR$2, real
2794
3128
  if (isCallable$3(NativePromiseConstructor)) {
2795
3129
  var method = getBuiltIn$1('Promise').prototype['catch'];
2796
3130
  if (NativePromisePrototype['catch'] !== method) {
2797
- defineBuiltIn$6(NativePromisePrototype, 'catch', method, { unsafe: true });
3131
+ defineBuiltIn$8(NativePromisePrototype, 'catch', method, { unsafe: true });
2798
3132
  }
2799
3133
  }
2800
3134
 
2801
- var $$8 = _export;
2802
- var call$8 = functionCall;
3135
+ var $$9 = _export;
3136
+ var call$9 = functionCall;
2803
3137
  var aCallable = aCallable$8;
2804
3138
  var newPromiseCapabilityModule$1 = newPromiseCapability$2;
2805
3139
  var perform = perform$3;
@@ -2808,7 +3142,7 @@ var PROMISE_STATICS_INCORRECT_ITERATION = promiseStaticsIncorrectIteration;
2808
3142
 
2809
3143
  // `Promise.race` method
2810
3144
  // https://tc39.es/ecma262/#sec-promise.race
2811
- $$8({ target: 'Promise', stat: true, forced: PROMISE_STATICS_INCORRECT_ITERATION }, {
3145
+ $$9({ target: 'Promise', stat: true, forced: PROMISE_STATICS_INCORRECT_ITERATION }, {
2812
3146
  race: function race(iterable) {
2813
3147
  var C = this;
2814
3148
  var capability = newPromiseCapabilityModule$1.f(C);
@@ -2816,7 +3150,7 @@ $$8({ target: 'Promise', stat: true, forced: PROMISE_STATICS_INCORRECT_ITERATION
2816
3150
  var result = perform(function () {
2817
3151
  var $promiseResolve = aCallable(C.resolve);
2818
3152
  iterate(iterable, function (promise) {
2819
- call$8($promiseResolve, C, promise).then(capability.resolve, reject);
3153
+ call$9($promiseResolve, C, promise).then(capability.resolve, reject);
2820
3154
  });
2821
3155
  });
2822
3156
  if (result.error) reject(result.value);
@@ -2824,13 +3158,13 @@ $$8({ target: 'Promise', stat: true, forced: PROMISE_STATICS_INCORRECT_ITERATION
2824
3158
  }
2825
3159
  });
2826
3160
 
2827
- var $$7 = _export;
3161
+ var $$8 = _export;
2828
3162
  var newPromiseCapabilityModule = newPromiseCapability$2;
2829
3163
  var FORCED_PROMISE_CONSTRUCTOR$1 = promiseConstructorDetection.CONSTRUCTOR;
2830
3164
 
2831
3165
  // `Promise.reject` method
2832
3166
  // https://tc39.es/ecma262/#sec-promise.reject
2833
- $$7({ target: 'Promise', stat: true, forced: FORCED_PROMISE_CONSTRUCTOR$1 }, {
3167
+ $$8({ target: 'Promise', stat: true, forced: FORCED_PROMISE_CONSTRUCTOR$1 }, {
2834
3168
  reject: function reject(r) {
2835
3169
  var capability = newPromiseCapabilityModule.f(this);
2836
3170
  var capabilityReject = capability.reject;
@@ -2839,21 +3173,21 @@ $$7({ target: 'Promise', stat: true, forced: FORCED_PROMISE_CONSTRUCTOR$1 }, {
2839
3173
  }
2840
3174
  });
2841
3175
 
2842
- var anObject$6 = anObject$f;
2843
- var isObject$3 = isObject$d;
3176
+ var anObject$7 = anObject$g;
3177
+ var isObject$2 = isObject$e;
2844
3178
  var newPromiseCapability = newPromiseCapability$2;
2845
3179
 
2846
3180
  var promiseResolve$1 = function (C, x) {
2847
- anObject$6(C);
2848
- if (isObject$3(x) && x.constructor === C) return x;
3181
+ anObject$7(C);
3182
+ if (isObject$2(x) && x.constructor === C) return x;
2849
3183
  var promiseCapability = newPromiseCapability.f(C);
2850
3184
  var resolve = promiseCapability.resolve;
2851
3185
  resolve(x);
2852
3186
  return promiseCapability.promise;
2853
3187
  };
2854
3188
 
2855
- var $$6 = _export;
2856
- var getBuiltIn = getBuiltIn$7;
3189
+ var $$7 = _export;
3190
+ var getBuiltIn = getBuiltIn$9;
2857
3191
  var FORCED_PROMISE_CONSTRUCTOR = promiseConstructorDetection.CONSTRUCTOR;
2858
3192
  var promiseResolve = promiseResolve$1;
2859
3193
 
@@ -2861,27 +3195,18 @@ getBuiltIn('Promise');
2861
3195
 
2862
3196
  // `Promise.resolve` method
2863
3197
  // https://tc39.es/ecma262/#sec-promise.resolve
2864
- $$6({ target: 'Promise', stat: true, forced: FORCED_PROMISE_CONSTRUCTOR }, {
3198
+ $$7({ target: 'Promise', stat: true, forced: FORCED_PROMISE_CONSTRUCTOR }, {
2865
3199
  resolve: function resolve(x) {
2866
3200
  return promiseResolve(this, x);
2867
3201
  }
2868
3202
  });
2869
3203
 
2870
- var classof$3 = classof$6;
2871
-
2872
- var $String = String;
2873
-
2874
- var toString$6 = function (argument) {
2875
- if (classof$3(argument) === 'Symbol') throw new TypeError('Cannot convert a Symbol value to a string');
2876
- return $String(argument);
2877
- };
2878
-
2879
- var anObject$5 = anObject$f;
3204
+ var anObject$6 = anObject$g;
2880
3205
 
2881
3206
  // `RegExp.prototype.flags` getter implementation
2882
3207
  // https://tc39.es/ecma262/#sec-get-regexp.prototype.flags
2883
3208
  var regexpFlags$1 = function () {
2884
- var that = anObject$5(this);
3209
+ var that = anObject$6(this);
2885
3210
  var result = '';
2886
3211
  if (that.hasIndices) result += 'd';
2887
3212
  if (that.global) result += 'g';
@@ -2894,8 +3219,8 @@ var regexpFlags$1 = function () {
2894
3219
  return result;
2895
3220
  };
2896
3221
 
2897
- var fails$7 = fails$l;
2898
- var global$6 = global$o;
3222
+ var fails$7 = fails$n;
3223
+ var global$6 = global$p;
2899
3224
 
2900
3225
  // babel-minify and Closure Compiler transpiles RegExp('a', 'y') -> /a/y and it causes SyntaxError
2901
3226
  var $RegExp$2 = global$6.RegExp;
@@ -2925,8 +3250,8 @@ var regexpStickyHelpers = {
2925
3250
  UNSUPPORTED_Y: UNSUPPORTED_Y$2
2926
3251
  };
2927
3252
 
2928
- var fails$6 = fails$l;
2929
- var global$5 = global$o;
3253
+ var fails$6 = fails$n;
3254
+ var global$5 = global$p;
2930
3255
 
2931
3256
  // babel-minify and Closure Compiler transpiles RegExp('.', 's') -> /./s and it causes SyntaxError
2932
3257
  var $RegExp$1 = global$5.RegExp;
@@ -2936,8 +3261,8 @@ var regexpUnsupportedDotAll = fails$6(function () {
2936
3261
  return !(re.dotAll && re.test('\n') && re.flags === 's');
2937
3262
  });
2938
3263
 
2939
- var fails$5 = fails$l;
2940
- var global$4 = global$o;
3264
+ var fails$5 = fails$n;
3265
+ var global$4 = global$p;
2941
3266
 
2942
3267
  // babel-minify and Closure Compiler transpiles RegExp('(?<a>b)', 'g') -> /(?<a>b)/g and it causes SyntaxError
2943
3268
  var $RegExp = global$4.RegExp;
@@ -2950,30 +3275,30 @@ var regexpUnsupportedNcg = fails$5(function () {
2950
3275
 
2951
3276
  /* eslint-disable regexp/no-empty-capturing-group, regexp/no-empty-group, regexp/no-lazy-ends -- testing */
2952
3277
  /* eslint-disable regexp/no-useless-quantifier -- testing */
2953
- var call$7 = functionCall;
2954
- var uncurryThis$6 = functionUncurryThis;
2955
- var toString$5 = toString$6;
3278
+ var call$8 = functionCall;
3279
+ var uncurryThis$9 = functionUncurryThis;
3280
+ var toString$8 = toString$b;
2956
3281
  var regexpFlags = regexpFlags$1;
2957
3282
  var stickyHelpers$1 = regexpStickyHelpers;
2958
3283
  var shared = shared$4;
2959
3284
  var create$2 = objectCreate;
2960
- var getInternalState$1 = internalState.get;
2961
- var UNSUPPORTED_DOT_ALL$1 = regexpUnsupportedDotAll;
3285
+ var getInternalState$2 = internalState.get;
3286
+ var UNSUPPORTED_DOT_ALL$2 = regexpUnsupportedDotAll;
2962
3287
  var UNSUPPORTED_NCG$1 = regexpUnsupportedNcg;
2963
3288
 
2964
3289
  var nativeReplace = shared('native-string-replace', String.prototype.replace);
2965
3290
  var nativeExec = RegExp.prototype.exec;
2966
3291
  var patchedExec = nativeExec;
2967
- var charAt$5 = uncurryThis$6(''.charAt);
2968
- var indexOf = uncurryThis$6(''.indexOf);
2969
- var replace$4 = uncurryThis$6(''.replace);
2970
- var stringSlice$4 = uncurryThis$6(''.slice);
3292
+ var charAt$5 = uncurryThis$9(''.charAt);
3293
+ var indexOf = uncurryThis$9(''.indexOf);
3294
+ var replace$4 = uncurryThis$9(''.replace);
3295
+ var stringSlice$4 = uncurryThis$9(''.slice);
2971
3296
 
2972
3297
  var UPDATES_LAST_INDEX_WRONG = (function () {
2973
3298
  var re1 = /a/;
2974
3299
  var re2 = /b*/g;
2975
- call$7(nativeExec, re1, 'a');
2976
- call$7(nativeExec, re2, 'a');
3300
+ call$8(nativeExec, re1, 'a');
3301
+ call$8(nativeExec, re2, 'a');
2977
3302
  return re1.lastIndex !== 0 || re2.lastIndex !== 0;
2978
3303
  })();
2979
3304
 
@@ -2982,26 +3307,26 @@ var UNSUPPORTED_Y$1 = stickyHelpers$1.BROKEN_CARET;
2982
3307
  // nonparticipating capturing group, copied from es5-shim's String#split patch.
2983
3308
  var NPCG_INCLUDED = /()??/.exec('')[1] !== undefined;
2984
3309
 
2985
- var PATCH = UPDATES_LAST_INDEX_WRONG || NPCG_INCLUDED || UNSUPPORTED_Y$1 || UNSUPPORTED_DOT_ALL$1 || UNSUPPORTED_NCG$1;
3310
+ var PATCH = UPDATES_LAST_INDEX_WRONG || NPCG_INCLUDED || UNSUPPORTED_Y$1 || UNSUPPORTED_DOT_ALL$2 || UNSUPPORTED_NCG$1;
2986
3311
 
2987
3312
  if (PATCH) {
2988
3313
  patchedExec = function exec(string) {
2989
3314
  var re = this;
2990
- var state = getInternalState$1(re);
2991
- var str = toString$5(string);
3315
+ var state = getInternalState$2(re);
3316
+ var str = toString$8(string);
2992
3317
  var raw = state.raw;
2993
3318
  var result, reCopy, lastIndex, match, i, object, group;
2994
3319
 
2995
3320
  if (raw) {
2996
3321
  raw.lastIndex = re.lastIndex;
2997
- result = call$7(patchedExec, raw, str);
3322
+ result = call$8(patchedExec, raw, str);
2998
3323
  re.lastIndex = raw.lastIndex;
2999
3324
  return result;
3000
3325
  }
3001
3326
 
3002
3327
  var groups = state.groups;
3003
3328
  var sticky = UNSUPPORTED_Y$1 && re.sticky;
3004
- var flags = call$7(regexpFlags, re);
3329
+ var flags = call$8(regexpFlags, re);
3005
3330
  var source = re.source;
3006
3331
  var charsAdded = 0;
3007
3332
  var strCopy = str;
@@ -3029,7 +3354,7 @@ if (PATCH) {
3029
3354
  }
3030
3355
  if (UPDATES_LAST_INDEX_WRONG) lastIndex = re.lastIndex;
3031
3356
 
3032
- match = call$7(nativeExec, sticky ? reCopy : re, strCopy);
3357
+ match = call$8(nativeExec, sticky ? reCopy : re, strCopy);
3033
3358
 
3034
3359
  if (sticky) {
3035
3360
  if (match) {
@@ -3044,7 +3369,7 @@ if (PATCH) {
3044
3369
  if (NPCG_INCLUDED && match && match.length > 1) {
3045
3370
  // Fix browsers whose `exec` methods don't consistently return `undefined`
3046
3371
  // for NPCG, like IE8. NOTE: This doesn't work for /(.?)?/
3047
- call$7(nativeReplace, match[0], reCopy, function () {
3372
+ call$8(nativeReplace, match[0], reCopy, function () {
3048
3373
  for (i = 1; i < arguments.length - 2; i++) {
3049
3374
  if (arguments[i] === undefined) match[i] = undefined;
3050
3375
  }
@@ -3065,26 +3390,26 @@ if (PATCH) {
3065
3390
 
3066
3391
  var regexpExec$2 = patchedExec;
3067
3392
 
3068
- var $$5 = _export;
3393
+ var $$6 = _export;
3069
3394
  var exec$3 = regexpExec$2;
3070
3395
 
3071
3396
  // `RegExp.prototype.exec` method
3072
3397
  // https://tc39.es/ecma262/#sec-regexp.prototype.exec
3073
- $$5({ target: 'RegExp', proto: true, forced: /./.exec !== exec$3 }, {
3398
+ $$6({ target: 'RegExp', proto: true, forced: /./.exec !== exec$3 }, {
3074
3399
  exec: exec$3
3075
3400
  });
3076
3401
 
3077
3402
  // TODO: Remove from `core-js@4` since it's moved to entry points
3078
3403
 
3079
- var call$6 = functionCall;
3080
- var defineBuiltIn$5 = defineBuiltIn$b;
3404
+ var call$7 = functionCall;
3405
+ var defineBuiltIn$7 = defineBuiltIn$d;
3081
3406
  var regexpExec$1 = regexpExec$2;
3082
- var fails$4 = fails$l;
3407
+ var fails$4 = fails$n;
3083
3408
  var wellKnownSymbol$5 = wellKnownSymbol$k;
3084
- var createNonEnumerableProperty$1 = createNonEnumerableProperty$6;
3409
+ var createNonEnumerableProperty$1 = createNonEnumerableProperty$9;
3085
3410
 
3086
3411
  var SPECIES = wellKnownSymbol$5('species');
3087
- var RegExpPrototype$3 = RegExp.prototype;
3412
+ var RegExpPrototype$4 = RegExp.prototype;
3088
3413
 
3089
3414
  var fixRegexpWellKnownSymbolLogic = function (KEY, exec, FORCED, SHAM) {
3090
3415
  var SYMBOL = wellKnownSymbol$5(KEY);
@@ -3131,23 +3456,23 @@ var fixRegexpWellKnownSymbolLogic = function (KEY, exec, FORCED, SHAM) {
3131
3456
  var nativeRegExpMethod = /./[SYMBOL];
3132
3457
  var methods = exec(SYMBOL, ''[KEY], function (nativeMethod, regexp, str, arg2, forceStringMethod) {
3133
3458
  var $exec = regexp.exec;
3134
- if ($exec === regexpExec$1 || $exec === RegExpPrototype$3.exec) {
3459
+ if ($exec === regexpExec$1 || $exec === RegExpPrototype$4.exec) {
3135
3460
  if (DELEGATES_TO_SYMBOL && !forceStringMethod) {
3136
3461
  // The native String method already delegates to @@method (this
3137
3462
  // polyfilled function), leasing to infinite recursion.
3138
3463
  // We avoid it by directly calling the native @@method method.
3139
- return { done: true, value: call$6(nativeRegExpMethod, regexp, str, arg2) };
3464
+ return { done: true, value: call$7(nativeRegExpMethod, regexp, str, arg2) };
3140
3465
  }
3141
- return { done: true, value: call$6(nativeMethod, str, regexp, arg2) };
3466
+ return { done: true, value: call$7(nativeMethod, str, regexp, arg2) };
3142
3467
  }
3143
3468
  return { done: false };
3144
3469
  });
3145
3470
 
3146
- defineBuiltIn$5(String.prototype, KEY, methods[0]);
3147
- defineBuiltIn$5(RegExpPrototype$3, SYMBOL, methods[1]);
3471
+ defineBuiltIn$7(String.prototype, KEY, methods[0]);
3472
+ defineBuiltIn$7(RegExpPrototype$4, SYMBOL, methods[1]);
3148
3473
  }
3149
3474
 
3150
- if (SHAM) createNonEnumerableProperty$1(RegExpPrototype$3[SYMBOL], 'sham', true);
3475
+ if (SHAM) createNonEnumerableProperty$1(RegExpPrototype$4[SYMBOL], 'sham', true);
3151
3476
  };
3152
3477
 
3153
3478
  // `SameValue` abstract operation
@@ -3158,34 +3483,34 @@ var sameValue$1 = Object.is || function is(x, y) {
3158
3483
  return x === y ? x !== 0 || 1 / x === 1 / y : x !== x && y !== y;
3159
3484
  };
3160
3485
 
3161
- var call$5 = functionCall;
3162
- var anObject$4 = anObject$f;
3163
- var isCallable$2 = isCallable$m;
3164
- var classof$2 = classofRaw$2;
3486
+ var call$6 = functionCall;
3487
+ var anObject$5 = anObject$g;
3488
+ var isCallable$2 = isCallable$p;
3489
+ var classof$3 = classofRaw$2;
3165
3490
  var regexpExec = regexpExec$2;
3166
3491
 
3167
- var $TypeError$1 = TypeError;
3492
+ var $TypeError$2 = TypeError;
3168
3493
 
3169
3494
  // `RegExpExec` abstract operation
3170
3495
  // https://tc39.es/ecma262/#sec-regexpexec
3171
3496
  var regexpExecAbstract = function (R, S) {
3172
3497
  var exec = R.exec;
3173
3498
  if (isCallable$2(exec)) {
3174
- var result = call$5(exec, R, S);
3175
- if (result !== null) anObject$4(result);
3499
+ var result = call$6(exec, R, S);
3500
+ if (result !== null) anObject$5(result);
3176
3501
  return result;
3177
3502
  }
3178
- if (classof$2(R) === 'RegExp') return call$5(regexpExec, R, S);
3179
- throw new $TypeError$1('RegExp#exec called on incompatible receiver');
3503
+ if (classof$3(R) === 'RegExp') return call$6(regexpExec, R, S);
3504
+ throw new $TypeError$2('RegExp#exec called on incompatible receiver');
3180
3505
  };
3181
3506
 
3182
- var call$4 = functionCall;
3507
+ var call$5 = functionCall;
3183
3508
  var fixRegExpWellKnownSymbolLogic = fixRegexpWellKnownSymbolLogic;
3184
- var anObject$3 = anObject$f;
3509
+ var anObject$4 = anObject$g;
3185
3510
  var isNullOrUndefined = isNullOrUndefined$5;
3186
3511
  var requireObjectCoercible$2 = requireObjectCoercible$6;
3187
3512
  var sameValue = sameValue$1;
3188
- var toString$4 = toString$6;
3513
+ var toString$7 = toString$b;
3189
3514
  var getMethod = getMethod$4;
3190
3515
  var regExpExec = regexpExecAbstract;
3191
3516
 
@@ -3197,13 +3522,13 @@ fixRegExpWellKnownSymbolLogic('search', function (SEARCH, nativeSearch, maybeCal
3197
3522
  function search(regexp) {
3198
3523
  var O = requireObjectCoercible$2(this);
3199
3524
  var searcher = isNullOrUndefined(regexp) ? undefined : getMethod(regexp, SEARCH);
3200
- return searcher ? call$4(searcher, regexp, O) : new RegExp(regexp)[SEARCH](toString$4(O));
3525
+ return searcher ? call$5(searcher, regexp, O) : new RegExp(regexp)[SEARCH](toString$7(O));
3201
3526
  },
3202
3527
  // `RegExp.prototype[@@search]` method
3203
3528
  // https://tc39.es/ecma262/#sec-regexp.prototype-@@search
3204
3529
  function (string) {
3205
- var rx = anObject$3(this);
3206
- var S = toString$4(string);
3530
+ var rx = anObject$4(this);
3531
+ var S = toString$7(string);
3207
3532
  var res = maybeCallNative(nativeSearch, rx, S);
3208
3533
 
3209
3534
  if (res.done) return res.value;
@@ -3217,9 +3542,9 @@ fixRegExpWellKnownSymbolLogic('search', function (SEARCH, nativeSearch, maybeCal
3217
3542
  ];
3218
3543
  });
3219
3544
 
3220
- var fails$3 = fails$l;
3545
+ var fails$3 = fails$n;
3221
3546
  var wellKnownSymbol$4 = wellKnownSymbol$k;
3222
- var DESCRIPTORS$4 = descriptors;
3547
+ var DESCRIPTORS$6 = descriptors;
3223
3548
  var IS_PURE = isPure;
3224
3549
 
3225
3550
  var ITERATOR$1 = wellKnownSymbol$4('iterator');
@@ -3240,7 +3565,7 @@ var urlConstructorDetection = !fails$3(function () {
3240
3565
  // https://bugs.chromium.org/p/v8/issues/detail?id=14222
3241
3566
  params2['delete']('b', undefined);
3242
3567
  return (IS_PURE && (!url.toJSON || !params2.has('a', 1) || params2.has('a', 2) || !params2.has('a', undefined) || params2.has('b')))
3243
- || (!params.size && (IS_PURE || !DESCRIPTORS$4))
3568
+ || (!params.size && (IS_PURE || !DESCRIPTORS$6))
3244
3569
  || !params.sort
3245
3570
  || url.href !== 'http://a/c%20d?a=1&c=3'
3246
3571
  || params.get('c') !== '3'
@@ -3259,14 +3584,14 @@ var urlConstructorDetection = !fails$3(function () {
3259
3584
  || new URL('http://x', undefined).host !== 'x';
3260
3585
  });
3261
3586
 
3262
- var defineBuiltIn$4 = defineBuiltIn$b;
3587
+ var defineBuiltIn$6 = defineBuiltIn$d;
3263
3588
 
3264
3589
  var defineBuiltIns$1 = function (target, src, options) {
3265
- for (var key in src) defineBuiltIn$4(target, key, src[key], options);
3590
+ for (var key in src) defineBuiltIn$6(target, key, src[key], options);
3266
3591
  return target;
3267
3592
  };
3268
3593
 
3269
- var arraySlice$1 = arraySlice$3;
3594
+ var arraySlice$1 = arraySlice$4;
3270
3595
 
3271
3596
  var floor$2 = Math.floor;
3272
3597
 
@@ -3310,33 +3635,33 @@ var arraySort$1 = sort;
3310
3635
 
3311
3636
  // TODO: in core-js@4, move /modules/ dependencies to public entries for better optimization by tools like `preset-env`
3312
3637
 
3313
- var $$4 = _export;
3314
- var global$3 = global$o;
3638
+ var $$5 = _export;
3639
+ var global$3 = global$p;
3315
3640
  var safeGetBuiltIn = safeGetBuiltIn$2;
3316
- var call$3 = functionCall;
3317
- var uncurryThis$5 = functionUncurryThis;
3318
- var DESCRIPTORS$3 = descriptors;
3641
+ var call$4 = functionCall;
3642
+ var uncurryThis$8 = functionUncurryThis;
3643
+ var DESCRIPTORS$5 = descriptors;
3319
3644
  var USE_NATIVE_URL$1 = urlConstructorDetection;
3320
- var defineBuiltIn$3 = defineBuiltIn$b;
3321
- var defineBuiltInAccessor$1 = defineBuiltInAccessor$3;
3645
+ var defineBuiltIn$5 = defineBuiltIn$d;
3646
+ var defineBuiltInAccessor$3 = defineBuiltInAccessor$5;
3322
3647
  var defineBuiltIns = defineBuiltIns$1;
3323
3648
  var setToStringTag$1 = setToStringTag$6;
3324
3649
  var createIteratorConstructor = iteratorCreateConstructor;
3325
3650
  var InternalStateModule$2 = internalState;
3326
3651
  var anInstance$1 = anInstance$3;
3327
- var isCallable$1 = isCallable$m;
3652
+ var isCallable$1 = isCallable$p;
3328
3653
  var hasOwn$3 = hasOwnProperty_1;
3329
3654
  var bind$2 = functionBindContext;
3330
- var classof$1 = classof$6;
3331
- var anObject$2 = anObject$f;
3332
- var isObject$2 = isObject$d;
3333
- var $toString$2 = toString$6;
3655
+ var classof$2 = classof$a;
3656
+ var anObject$3 = anObject$g;
3657
+ var isObject$1 = isObject$e;
3658
+ var $toString$2 = toString$b;
3334
3659
  var create$1 = objectCreate;
3335
- var createPropertyDescriptor$1 = createPropertyDescriptor$5;
3660
+ var createPropertyDescriptor$1 = createPropertyDescriptor$6;
3336
3661
  var getIterator$1 = getIterator$3;
3337
3662
  var getIteratorMethod$1 = getIteratorMethod$4;
3338
3663
  var createIterResultObject$1 = createIterResultObject$3;
3339
- var validateArgumentsLength$1 = validateArgumentsLength$3;
3664
+ var validateArgumentsLength$3 = validateArgumentsLength$5;
3340
3665
  var wellKnownSymbol$3 = wellKnownSymbol$k;
3341
3666
  var arraySort = arraySort$1;
3342
3667
 
@@ -3356,14 +3681,14 @@ var RegExp$1 = global$3.RegExp;
3356
3681
  var TypeError$2 = global$3.TypeError;
3357
3682
  var decodeURIComponent = global$3.decodeURIComponent;
3358
3683
  var encodeURIComponent$1 = global$3.encodeURIComponent;
3359
- var charAt$4 = uncurryThis$5(''.charAt);
3360
- var join$2 = uncurryThis$5([].join);
3361
- var push$2 = uncurryThis$5([].push);
3362
- var replace$3 = uncurryThis$5(''.replace);
3363
- var shift$1 = uncurryThis$5([].shift);
3364
- var splice = uncurryThis$5([].splice);
3365
- var split$2 = uncurryThis$5(''.split);
3366
- var stringSlice$3 = uncurryThis$5(''.slice);
3684
+ var charAt$4 = uncurryThis$8(''.charAt);
3685
+ var join$2 = uncurryThis$8([].join);
3686
+ var push$3 = uncurryThis$8([].push);
3687
+ var replace$3 = uncurryThis$8(''.replace);
3688
+ var shift$1 = uncurryThis$8([].shift);
3689
+ var splice = uncurryThis$8([].splice);
3690
+ var split$2 = uncurryThis$8(''.split);
3691
+ var stringSlice$3 = uncurryThis$8(''.slice);
3367
3692
 
3368
3693
  var plus = /\+/g;
3369
3694
  var sequences = Array(4);
@@ -3439,7 +3764,7 @@ var URLSearchParamsState = function (init) {
3439
3764
  this.url = null;
3440
3765
 
3441
3766
  if (init !== undefined) {
3442
- if (isObject$2(init)) this.parseObject(init);
3767
+ if (isObject$1(init)) this.parseObject(init);
3443
3768
  else this.parseQuery(typeof init == 'string' ? charAt$4(init, 0) === '?' ? stringSlice$3(init, 1) : init : $toString$2(init));
3444
3769
  }
3445
3770
  };
@@ -3458,18 +3783,18 @@ URLSearchParamsState.prototype = {
3458
3783
  if (iteratorMethod) {
3459
3784
  iterator = getIterator$1(object, iteratorMethod);
3460
3785
  next = iterator.next;
3461
- while (!(step = call$3(next, iterator)).done) {
3462
- entryIterator = getIterator$1(anObject$2(step.value));
3786
+ while (!(step = call$4(next, iterator)).done) {
3787
+ entryIterator = getIterator$1(anObject$3(step.value));
3463
3788
  entryNext = entryIterator.next;
3464
3789
  if (
3465
- (first = call$3(entryNext, entryIterator)).done ||
3466
- (second = call$3(entryNext, entryIterator)).done ||
3467
- !call$3(entryNext, entryIterator).done
3790
+ (first = call$4(entryNext, entryIterator)).done ||
3791
+ (second = call$4(entryNext, entryIterator)).done ||
3792
+ !call$4(entryNext, entryIterator).done
3468
3793
  ) throw new TypeError$2('Expected sequence with length 2');
3469
- push$2(entries, { key: $toString$2(first.value), value: $toString$2(second.value) });
3794
+ push$3(entries, { key: $toString$2(first.value), value: $toString$2(second.value) });
3470
3795
  }
3471
3796
  } else for (var key in object) if (hasOwn$3(object, key)) {
3472
- push$2(entries, { key: key, value: $toString$2(object[key]) });
3797
+ push$3(entries, { key: key, value: $toString$2(object[key]) });
3473
3798
  }
3474
3799
  },
3475
3800
  parseQuery: function (query) {
@@ -3482,7 +3807,7 @@ URLSearchParamsState.prototype = {
3482
3807
  attribute = attributes[index++];
3483
3808
  if (attribute.length) {
3484
3809
  entry = split$2(attribute, '=');
3485
- push$2(entries, {
3810
+ push$3(entries, {
3486
3811
  key: deserialize(shift$1(entry)),
3487
3812
  value: deserialize(join$2(entry, '='))
3488
3813
  });
@@ -3497,7 +3822,7 @@ URLSearchParamsState.prototype = {
3497
3822
  var entry;
3498
3823
  while (index < entries.length) {
3499
3824
  entry = entries[index++];
3500
- push$2(result, serialize(entry.key) + '=' + serialize(entry.value));
3825
+ push$3(result, serialize(entry.key) + '=' + serialize(entry.value));
3501
3826
  } return join$2(result, '&');
3502
3827
  },
3503
3828
  update: function () {
@@ -3512,29 +3837,29 @@ URLSearchParamsState.prototype = {
3512
3837
  // `URLSearchParams` constructor
3513
3838
  // https://url.spec.whatwg.org/#interface-urlsearchparams
3514
3839
  var URLSearchParamsConstructor = function URLSearchParams(/* init */) {
3515
- anInstance$1(this, URLSearchParamsPrototype);
3840
+ anInstance$1(this, URLSearchParamsPrototype$3);
3516
3841
  var init = arguments.length > 0 ? arguments[0] : undefined;
3517
3842
  var state = setInternalState$2(this, new URLSearchParamsState(init));
3518
- if (!DESCRIPTORS$3) this.size = state.entries.length;
3843
+ if (!DESCRIPTORS$5) this.size = state.entries.length;
3519
3844
  };
3520
3845
 
3521
- var URLSearchParamsPrototype = URLSearchParamsConstructor.prototype;
3846
+ var URLSearchParamsPrototype$3 = URLSearchParamsConstructor.prototype;
3522
3847
 
3523
- defineBuiltIns(URLSearchParamsPrototype, {
3848
+ defineBuiltIns(URLSearchParamsPrototype$3, {
3524
3849
  // `URLSearchParams.prototype.append` method
3525
3850
  // https://url.spec.whatwg.org/#dom-urlsearchparams-append
3526
3851
  append: function append(name, value) {
3527
3852
  var state = getInternalParamsState(this);
3528
- validateArgumentsLength$1(arguments.length, 2);
3529
- push$2(state.entries, { key: $toString$2(name), value: $toString$2(value) });
3530
- if (!DESCRIPTORS$3) this.length++;
3853
+ validateArgumentsLength$3(arguments.length, 2);
3854
+ push$3(state.entries, { key: $toString$2(name), value: $toString$2(value) });
3855
+ if (!DESCRIPTORS$5) this.length++;
3531
3856
  state.updateURL();
3532
3857
  },
3533
3858
  // `URLSearchParams.prototype.delete` method
3534
3859
  // https://url.spec.whatwg.org/#dom-urlsearchparams-delete
3535
3860
  'delete': function (name /* , value */) {
3536
3861
  var state = getInternalParamsState(this);
3537
- var length = validateArgumentsLength$1(arguments.length, 1);
3862
+ var length = validateArgumentsLength$3(arguments.length, 1);
3538
3863
  var entries = state.entries;
3539
3864
  var key = $toString$2(name);
3540
3865
  var $value = length < 2 ? undefined : arguments[1];
@@ -3547,14 +3872,14 @@ defineBuiltIns(URLSearchParamsPrototype, {
3547
3872
  if (value !== undefined) break;
3548
3873
  } else index++;
3549
3874
  }
3550
- if (!DESCRIPTORS$3) this.size = entries.length;
3875
+ if (!DESCRIPTORS$5) this.size = entries.length;
3551
3876
  state.updateURL();
3552
3877
  },
3553
3878
  // `URLSearchParams.prototype.get` method
3554
3879
  // https://url.spec.whatwg.org/#dom-urlsearchparams-get
3555
3880
  get: function get(name) {
3556
3881
  var entries = getInternalParamsState(this).entries;
3557
- validateArgumentsLength$1(arguments.length, 1);
3882
+ validateArgumentsLength$3(arguments.length, 1);
3558
3883
  var key = $toString$2(name);
3559
3884
  var index = 0;
3560
3885
  for (; index < entries.length; index++) {
@@ -3566,12 +3891,12 @@ defineBuiltIns(URLSearchParamsPrototype, {
3566
3891
  // https://url.spec.whatwg.org/#dom-urlsearchparams-getall
3567
3892
  getAll: function getAll(name) {
3568
3893
  var entries = getInternalParamsState(this).entries;
3569
- validateArgumentsLength$1(arguments.length, 1);
3894
+ validateArgumentsLength$3(arguments.length, 1);
3570
3895
  var key = $toString$2(name);
3571
3896
  var result = [];
3572
3897
  var index = 0;
3573
3898
  for (; index < entries.length; index++) {
3574
- if (entries[index].key === key) push$2(result, entries[index].value);
3899
+ if (entries[index].key === key) push$3(result, entries[index].value);
3575
3900
  }
3576
3901
  return result;
3577
3902
  },
@@ -3579,7 +3904,7 @@ defineBuiltIns(URLSearchParamsPrototype, {
3579
3904
  // https://url.spec.whatwg.org/#dom-urlsearchparams-has
3580
3905
  has: function has(name /* , value */) {
3581
3906
  var entries = getInternalParamsState(this).entries;
3582
- var length = validateArgumentsLength$1(arguments.length, 1);
3907
+ var length = validateArgumentsLength$3(arguments.length, 1);
3583
3908
  var key = $toString$2(name);
3584
3909
  var $value = length < 2 ? undefined : arguments[1];
3585
3910
  var value = $value === undefined ? $value : $toString$2($value);
@@ -3594,7 +3919,7 @@ defineBuiltIns(URLSearchParamsPrototype, {
3594
3919
  // https://url.spec.whatwg.org/#dom-urlsearchparams-set
3595
3920
  set: function set(name, value) {
3596
3921
  var state = getInternalParamsState(this);
3597
- validateArgumentsLength$1(arguments.length, 1);
3922
+ validateArgumentsLength$3(arguments.length, 1);
3598
3923
  var entries = state.entries;
3599
3924
  var found = false;
3600
3925
  var key = $toString$2(name);
@@ -3611,8 +3936,8 @@ defineBuiltIns(URLSearchParamsPrototype, {
3611
3936
  }
3612
3937
  }
3613
3938
  }
3614
- if (!found) push$2(entries, { key: key, value: val });
3615
- if (!DESCRIPTORS$3) this.size = entries.length;
3939
+ if (!found) push$3(entries, { key: key, value: val });
3940
+ if (!DESCRIPTORS$5) this.size = entries.length;
3616
3941
  state.updateURL();
3617
3942
  },
3618
3943
  // `URLSearchParams.prototype.sort` method
@@ -3650,17 +3975,17 @@ defineBuiltIns(URLSearchParamsPrototype, {
3650
3975
  }, { enumerable: true });
3651
3976
 
3652
3977
  // `URLSearchParams.prototype[@@iterator]` method
3653
- defineBuiltIn$3(URLSearchParamsPrototype, ITERATOR, URLSearchParamsPrototype.entries, { name: 'entries' });
3978
+ defineBuiltIn$5(URLSearchParamsPrototype$3, ITERATOR, URLSearchParamsPrototype$3.entries, { name: 'entries' });
3654
3979
 
3655
3980
  // `URLSearchParams.prototype.toString` method
3656
3981
  // https://url.spec.whatwg.org/#urlsearchparams-stringification-behavior
3657
- defineBuiltIn$3(URLSearchParamsPrototype, 'toString', function toString() {
3982
+ defineBuiltIn$5(URLSearchParamsPrototype$3, 'toString', function toString() {
3658
3983
  return getInternalParamsState(this).serialize();
3659
3984
  }, { enumerable: true });
3660
3985
 
3661
3986
  // `URLSearchParams.prototype.size` getter
3662
3987
  // https://github.com/whatwg/url/pull/734
3663
- if (DESCRIPTORS$3) defineBuiltInAccessor$1(URLSearchParamsPrototype, 'size', {
3988
+ if (DESCRIPTORS$5) defineBuiltInAccessor$3(URLSearchParamsPrototype$3, 'size', {
3664
3989
  get: function size() {
3665
3990
  return getInternalParamsState(this).entries.length;
3666
3991
  },
@@ -3670,20 +3995,20 @@ if (DESCRIPTORS$3) defineBuiltInAccessor$1(URLSearchParamsPrototype, 'size', {
3670
3995
 
3671
3996
  setToStringTag$1(URLSearchParamsConstructor, URL_SEARCH_PARAMS);
3672
3997
 
3673
- $$4({ global: true, constructor: true, forced: !USE_NATIVE_URL$1 }, {
3998
+ $$5({ global: true, constructor: true, forced: !USE_NATIVE_URL$1 }, {
3674
3999
  URLSearchParams: URLSearchParamsConstructor
3675
4000
  });
3676
4001
 
3677
4002
  // Wrap `fetch` and `Request` for correct work with polyfilled `URLSearchParams`
3678
4003
  if (!USE_NATIVE_URL$1 && isCallable$1(Headers)) {
3679
- var headersHas = uncurryThis$5(HeadersPrototype.has);
3680
- var headersSet = uncurryThis$5(HeadersPrototype.set);
4004
+ var headersHas = uncurryThis$8(HeadersPrototype.has);
4005
+ var headersSet = uncurryThis$8(HeadersPrototype.set);
3681
4006
 
3682
4007
  var wrapRequestOptions = function (init) {
3683
- if (isObject$2(init)) {
4008
+ if (isObject$1(init)) {
3684
4009
  var body = init.body;
3685
4010
  var headers;
3686
- if (classof$1(body) === URL_SEARCH_PARAMS) {
4011
+ if (classof$2(body) === URL_SEARCH_PARAMS) {
3687
4012
  headers = init.headers ? new Headers(init.headers) : new Headers();
3688
4013
  if (!headersHas(headers, 'content-type')) {
3689
4014
  headersSet(headers, 'content-type', 'application/x-www-form-urlencoded;charset=UTF-8');
@@ -3697,7 +4022,7 @@ if (!USE_NATIVE_URL$1 && isCallable$1(Headers)) {
3697
4022
  };
3698
4023
 
3699
4024
  if (isCallable$1(nativeFetch)) {
3700
- $$4({ global: true, enumerable: true, dontCallGetSet: true, forced: true }, {
4025
+ $$5({ global: true, enumerable: true, dontCallGetSet: true, forced: true }, {
3701
4026
  fetch: function fetch(input /* , init */) {
3702
4027
  return nativeFetch(input, arguments.length > 1 ? wrapRequestOptions(arguments[1]) : {});
3703
4028
  }
@@ -3713,7 +4038,7 @@ if (!USE_NATIVE_URL$1 && isCallable$1(Headers)) {
3713
4038
  RequestPrototype.constructor = RequestConstructor;
3714
4039
  RequestConstructor.prototype = RequestPrototype;
3715
4040
 
3716
- $$4({ global: true, constructor: true, dontCallGetSet: true, forced: true }, {
4041
+ $$5({ global: true, constructor: true, dontCallGetSet: true, forced: true }, {
3717
4042
  Request: RequestConstructor
3718
4043
  });
3719
4044
  }
@@ -3724,6 +4049,104 @@ var web_urlSearchParams_constructor = {
3724
4049
  getState: getInternalParamsState
3725
4050
  };
3726
4051
 
4052
+ var defineBuiltIn$4 = defineBuiltIn$d;
4053
+ var uncurryThis$7 = functionUncurryThis;
4054
+ var toString$6 = toString$b;
4055
+ var validateArgumentsLength$2 = validateArgumentsLength$5;
4056
+
4057
+ var $URLSearchParams$1 = URLSearchParams;
4058
+ var URLSearchParamsPrototype$2 = $URLSearchParams$1.prototype;
4059
+ var append = uncurryThis$7(URLSearchParamsPrototype$2.append);
4060
+ var $delete = uncurryThis$7(URLSearchParamsPrototype$2['delete']);
4061
+ var forEach$1 = uncurryThis$7(URLSearchParamsPrototype$2.forEach);
4062
+ var push$2 = uncurryThis$7([].push);
4063
+ var params$1 = new $URLSearchParams$1('a=1&a=2&b=3');
4064
+
4065
+ params$1['delete']('a', 1);
4066
+ // `undefined` case is a Chromium 117 bug
4067
+ // https://bugs.chromium.org/p/v8/issues/detail?id=14222
4068
+ params$1['delete']('b', undefined);
4069
+
4070
+ if (params$1 + '' !== 'a=2') {
4071
+ defineBuiltIn$4(URLSearchParamsPrototype$2, 'delete', function (name /* , value */) {
4072
+ var length = arguments.length;
4073
+ var $value = length < 2 ? undefined : arguments[1];
4074
+ if (length && $value === undefined) return $delete(this, name);
4075
+ var entries = [];
4076
+ forEach$1(this, function (v, k) { // also validates `this`
4077
+ push$2(entries, { key: k, value: v });
4078
+ });
4079
+ validateArgumentsLength$2(length, 1);
4080
+ var key = toString$6(name);
4081
+ var value = toString$6($value);
4082
+ var index = 0;
4083
+ var dindex = 0;
4084
+ var found = false;
4085
+ var entriesLength = entries.length;
4086
+ var entry;
4087
+ while (index < entriesLength) {
4088
+ entry = entries[index++];
4089
+ if (found || entry.key === key) {
4090
+ found = true;
4091
+ $delete(this, entry.key);
4092
+ } else dindex++;
4093
+ }
4094
+ while (dindex < entriesLength) {
4095
+ entry = entries[dindex++];
4096
+ if (!(entry.key === key && entry.value === value)) append(this, entry.key, entry.value);
4097
+ }
4098
+ }, { enumerable: true, unsafe: true });
4099
+ }
4100
+
4101
+ var defineBuiltIn$3 = defineBuiltIn$d;
4102
+ var uncurryThis$6 = functionUncurryThis;
4103
+ var toString$5 = toString$b;
4104
+ var validateArgumentsLength$1 = validateArgumentsLength$5;
4105
+
4106
+ var $URLSearchParams = URLSearchParams;
4107
+ var URLSearchParamsPrototype$1 = $URLSearchParams.prototype;
4108
+ var getAll = uncurryThis$6(URLSearchParamsPrototype$1.getAll);
4109
+ var $has = uncurryThis$6(URLSearchParamsPrototype$1.has);
4110
+ var params = new $URLSearchParams('a=1');
4111
+
4112
+ // `undefined` case is a Chromium 117 bug
4113
+ // https://bugs.chromium.org/p/v8/issues/detail?id=14222
4114
+ if (params.has('a', 2) || !params.has('a', undefined)) {
4115
+ defineBuiltIn$3(URLSearchParamsPrototype$1, 'has', function has(name /* , value */) {
4116
+ var length = arguments.length;
4117
+ var $value = length < 2 ? undefined : arguments[1];
4118
+ if (length && $value === undefined) return $has(this, name);
4119
+ var values = getAll(this, name); // also validates `this`
4120
+ validateArgumentsLength$1(length, 1);
4121
+ var value = toString$5($value);
4122
+ var index = 0;
4123
+ while (index < values.length) {
4124
+ if (values[index++] === value) return true;
4125
+ } return false;
4126
+ }, { enumerable: true, unsafe: true });
4127
+ }
4128
+
4129
+ var DESCRIPTORS$4 = descriptors;
4130
+ var uncurryThis$5 = functionUncurryThis;
4131
+ var defineBuiltInAccessor$2 = defineBuiltInAccessor$5;
4132
+
4133
+ var URLSearchParamsPrototype = URLSearchParams.prototype;
4134
+ var forEach = uncurryThis$5(URLSearchParamsPrototype.forEach);
4135
+
4136
+ // `URLSearchParams.prototype.size` getter
4137
+ // https://github.com/whatwg/url/pull/734
4138
+ if (DESCRIPTORS$4 && !('size' in URLSearchParamsPrototype)) {
4139
+ defineBuiltInAccessor$2(URLSearchParamsPrototype, 'size', {
4140
+ get: function size() {
4141
+ var count = 0;
4142
+ forEach(this, function () { count++; });
4143
+ return count;
4144
+ },
4145
+ configurable: true,
4146
+ enumerable: true
4147
+ });
4148
+ }
4149
+
3727
4150
  /**
3728
4151
  * The key for identifying the Window key for SdkExperiment.
3729
4152
  *
@@ -3801,9 +4224,9 @@ var DEBUG_LEVELS;
3801
4224
  })(DEBUG_LEVELS || (DEBUG_LEVELS = {}));
3802
4225
  const PAGE_VIEW_EVENT_NAME = 'pageview';
3803
4226
 
3804
- var $$3 = _export;
4227
+ var $$4 = _export;
3805
4228
  var $includes = arrayIncludes.includes;
3806
- var fails$2 = fails$l;
4229
+ var fails$2 = fails$n;
3807
4230
  var addToUnscopables = addToUnscopables$2;
3808
4231
 
3809
4232
  // FF99+ bug
@@ -3814,7 +4237,7 @@ var BROKEN_ON_SPARSE = fails$2(function () {
3814
4237
 
3815
4238
  // `Array.prototype.includes` method
3816
4239
  // https://tc39.es/ecma262/#sec-array.prototype.includes
3817
- $$3({ target: 'Array', proto: true, forced: BROKEN_ON_SPARSE }, {
4240
+ $$4({ target: 'Array', proto: true, forced: BROKEN_ON_SPARSE }, {
3818
4241
  includes: function includes(el /* , fromIndex = 0 */) {
3819
4242
  return $includes(this, el, arguments.length > 1 ? arguments[1] : undefined);
3820
4243
  }
@@ -3823,27 +4246,8 @@ $$3({ target: 'Array', proto: true, forced: BROKEN_ON_SPARSE }, {
3823
4246
  // https://tc39.es/ecma262/#sec-array.prototype-@@unscopables
3824
4247
  addToUnscopables('includes');
3825
4248
 
3826
- var isCallable = isCallable$m;
3827
- var isObject$1 = isObject$d;
3828
- var setPrototypeOf = objectSetPrototypeOf;
3829
-
3830
- // makes subclassing work correct for wrapped built-ins
3831
- var inheritIfRequired$1 = function ($this, dummy, Wrapper) {
3832
- var NewTarget, NewTargetPrototype;
3833
- if (
3834
- // it can work only with native `setPrototypeOf`
3835
- setPrototypeOf &&
3836
- // we haven't completely correct pre-ES6 way for getting `new.target`, so use this
3837
- isCallable(NewTarget = dummy.constructor) &&
3838
- NewTarget !== Wrapper &&
3839
- isObject$1(NewTargetPrototype = NewTarget.prototype) &&
3840
- NewTargetPrototype !== Wrapper.prototype
3841
- ) setPrototypeOf($this, NewTargetPrototype);
3842
- return $this;
3843
- };
3844
-
3845
- var isObject = isObject$d;
3846
- var classof = classofRaw$2;
4249
+ var isObject = isObject$e;
4250
+ var classof$1 = classofRaw$2;
3847
4251
  var wellKnownSymbol$2 = wellKnownSymbol$k;
3848
4252
 
3849
4253
  var MATCH$2 = wellKnownSymbol$2('match');
@@ -3852,60 +4256,50 @@ var MATCH$2 = wellKnownSymbol$2('match');
3852
4256
  // https://tc39.es/ecma262/#sec-isregexp
3853
4257
  var isRegexp = function (it) {
3854
4258
  var isRegExp;
3855
- return isObject(it) && ((isRegExp = it[MATCH$2]) !== undefined ? !!isRegExp : classof(it) === 'RegExp');
4259
+ return isObject(it) && ((isRegExp = it[MATCH$2]) !== undefined ? !!isRegExp : classof$1(it) === 'RegExp');
3856
4260
  };
3857
4261
 
3858
- var call$2 = functionCall;
4262
+ var call$3 = functionCall;
3859
4263
  var hasOwn$2 = hasOwnProperty_1;
3860
4264
  var isPrototypeOf$1 = objectIsPrototypeOf;
3861
4265
  var regExpFlags = regexpFlags$1;
3862
4266
 
3863
- var RegExpPrototype$2 = RegExp.prototype;
4267
+ var RegExpPrototype$3 = RegExp.prototype;
3864
4268
 
3865
4269
  var regexpGetFlags = function (R) {
3866
4270
  var flags = R.flags;
3867
- return flags === undefined && !('flags' in RegExpPrototype$2) && !hasOwn$2(R, 'flags') && isPrototypeOf$1(RegExpPrototype$2, R)
3868
- ? call$2(regExpFlags, R) : flags;
3869
- };
3870
-
3871
- var defineProperty = objectDefineProperty.f;
3872
-
3873
- var proxyAccessor$1 = function (Target, Source, key) {
3874
- key in Target || defineProperty(Target, key, {
3875
- configurable: true,
3876
- get: function () { return Source[key]; },
3877
- set: function (it) { Source[key] = it; }
3878
- });
4271
+ return flags === undefined && !('flags' in RegExpPrototype$3) && !hasOwn$2(R, 'flags') && isPrototypeOf$1(RegExpPrototype$3, R)
4272
+ ? call$3(regExpFlags, R) : flags;
3879
4273
  };
3880
4274
 
3881
- var DESCRIPTORS$2 = descriptors;
3882
- var global$2 = global$o;
4275
+ var DESCRIPTORS$3 = descriptors;
4276
+ var global$2 = global$p;
3883
4277
  var uncurryThis$4 = functionUncurryThis;
3884
4278
  var isForced = isForced_1;
3885
- var inheritIfRequired = inheritIfRequired$1;
3886
- var createNonEnumerableProperty = createNonEnumerableProperty$6;
4279
+ var inheritIfRequired = inheritIfRequired$2;
4280
+ var createNonEnumerableProperty = createNonEnumerableProperty$9;
3887
4281
  var create = objectCreate;
3888
4282
  var getOwnPropertyNames = objectGetOwnPropertyNames.f;
3889
4283
  var isPrototypeOf = objectIsPrototypeOf;
3890
4284
  var isRegExp$1 = isRegexp;
3891
- var toString$3 = toString$6;
4285
+ var toString$4 = toString$b;
3892
4286
  var getRegExpFlags$1 = regexpGetFlags;
3893
4287
  var stickyHelpers = regexpStickyHelpers;
3894
- var proxyAccessor = proxyAccessor$1;
3895
- var defineBuiltIn$2 = defineBuiltIn$b;
3896
- var fails$1 = fails$l;
4288
+ var proxyAccessor = proxyAccessor$2;
4289
+ var defineBuiltIn$2 = defineBuiltIn$d;
4290
+ var fails$1 = fails$n;
3897
4291
  var hasOwn$1 = hasOwnProperty_1;
3898
4292
  var enforceInternalState = internalState.enforce;
3899
4293
  var setSpecies = setSpecies$2;
3900
4294
  var wellKnownSymbol$1 = wellKnownSymbol$k;
3901
- var UNSUPPORTED_DOT_ALL = regexpUnsupportedDotAll;
4295
+ var UNSUPPORTED_DOT_ALL$1 = regexpUnsupportedDotAll;
3902
4296
  var UNSUPPORTED_NCG = regexpUnsupportedNcg;
3903
4297
 
3904
4298
  var MATCH$1 = wellKnownSymbol$1('match');
3905
4299
  var NativeRegExp = global$2.RegExp;
3906
- var RegExpPrototype$1 = NativeRegExp.prototype;
4300
+ var RegExpPrototype$2 = NativeRegExp.prototype;
3907
4301
  var SyntaxError = global$2.SyntaxError;
3908
- var exec$2 = uncurryThis$4(RegExpPrototype$1.exec);
4302
+ var exec$2 = uncurryThis$4(RegExpPrototype$2.exec);
3909
4303
  var charAt$3 = uncurryThis$4(''.charAt);
3910
4304
  var replace$2 = uncurryThis$4(''.replace);
3911
4305
  var stringIndexOf$1 = uncurryThis$4(''.indexOf);
@@ -3921,8 +4315,8 @@ var CORRECT_NEW = new NativeRegExp(re1) !== re1;
3921
4315
  var MISSED_STICKY = stickyHelpers.MISSED_STICKY;
3922
4316
  var UNSUPPORTED_Y = stickyHelpers.UNSUPPORTED_Y;
3923
4317
 
3924
- var BASE_FORCED = DESCRIPTORS$2 &&
3925
- (!CORRECT_NEW || MISSED_STICKY || UNSUPPORTED_DOT_ALL || UNSUPPORTED_NCG || fails$1(function () {
4318
+ var BASE_FORCED = DESCRIPTORS$3 &&
4319
+ (!CORRECT_NEW || MISSED_STICKY || UNSUPPORTED_DOT_ALL$1 || UNSUPPORTED_NCG || fails$1(function () {
3926
4320
  re2[MATCH$1] = false;
3927
4321
  // RegExp constructor can alter flags and IsRegExp works correct with @@match
3928
4322
  return NativeRegExp(re1) !== re1 || NativeRegExp(re2) === re2 || String(NativeRegExp(re1, 'i')) !== '/a/i';
@@ -4000,7 +4394,7 @@ var handleNCG = function (string) {
4000
4394
  // https://tc39.es/ecma262/#sec-regexp-constructor
4001
4395
  if (isForced('RegExp', BASE_FORCED)) {
4002
4396
  var RegExpWrapper = function RegExp(pattern, flags) {
4003
- var thisIsRegExp = isPrototypeOf(RegExpPrototype$1, this);
4397
+ var thisIsRegExp = isPrototypeOf(RegExpPrototype$2, this);
4004
4398
  var patternIsRegExp = isRegExp$1(pattern);
4005
4399
  var flagsAreUndefined = flags === undefined;
4006
4400
  var groups = [];
@@ -4011,16 +4405,16 @@ if (isForced('RegExp', BASE_FORCED)) {
4011
4405
  return pattern;
4012
4406
  }
4013
4407
 
4014
- if (patternIsRegExp || isPrototypeOf(RegExpPrototype$1, pattern)) {
4408
+ if (patternIsRegExp || isPrototypeOf(RegExpPrototype$2, pattern)) {
4015
4409
  pattern = pattern.source;
4016
4410
  if (flagsAreUndefined) flags = getRegExpFlags$1(rawPattern);
4017
4411
  }
4018
4412
 
4019
- pattern = pattern === undefined ? '' : toString$3(pattern);
4020
- flags = flags === undefined ? '' : toString$3(flags);
4413
+ pattern = pattern === undefined ? '' : toString$4(pattern);
4414
+ flags = flags === undefined ? '' : toString$4(flags);
4021
4415
  rawPattern = pattern;
4022
4416
 
4023
- if (UNSUPPORTED_DOT_ALL && 'dotAll' in re1) {
4417
+ if (UNSUPPORTED_DOT_ALL$1 && 'dotAll' in re1) {
4024
4418
  dotAll = !!flags && stringIndexOf$1(flags, 's') > -1;
4025
4419
  if (dotAll) flags = replace$2(flags, /s/g, '');
4026
4420
  }
@@ -4038,7 +4432,7 @@ if (isForced('RegExp', BASE_FORCED)) {
4038
4432
  groups = handled[1];
4039
4433
  }
4040
4434
 
4041
- result = inheritIfRequired(NativeRegExp(pattern, flags), thisIsRegExp ? this : RegExpPrototype$1, RegExpWrapper);
4435
+ result = inheritIfRequired(NativeRegExp(pattern, flags), thisIsRegExp ? this : RegExpPrototype$2, RegExpWrapper);
4042
4436
 
4043
4437
  if (dotAll || sticky || groups.length) {
4044
4438
  state = enforceInternalState(result);
@@ -4062,19 +4456,80 @@ if (isForced('RegExp', BASE_FORCED)) {
4062
4456
  proxyAccessor(RegExpWrapper, NativeRegExp, keys[index++]);
4063
4457
  }
4064
4458
 
4065
- RegExpPrototype$1.constructor = RegExpWrapper;
4066
- RegExpWrapper.prototype = RegExpPrototype$1;
4459
+ RegExpPrototype$2.constructor = RegExpWrapper;
4460
+ RegExpWrapper.prototype = RegExpPrototype$2;
4067
4461
  defineBuiltIn$2(global$2, 'RegExp', RegExpWrapper, { constructor: true });
4068
4462
  }
4069
4463
 
4070
4464
  // https://tc39.es/ecma262/#sec-get-regexp-@@species
4071
4465
  setSpecies('RegExp');
4072
4466
 
4467
+ var DESCRIPTORS$2 = descriptors;
4468
+ var UNSUPPORTED_DOT_ALL = regexpUnsupportedDotAll;
4469
+ var classof = classofRaw$2;
4470
+ var defineBuiltInAccessor$1 = defineBuiltInAccessor$5;
4471
+ var getInternalState$1 = internalState.get;
4472
+
4473
+ var RegExpPrototype$1 = RegExp.prototype;
4474
+ var $TypeError$1 = TypeError;
4475
+
4476
+ // `RegExp.prototype.dotAll` getter
4477
+ // https://tc39.es/ecma262/#sec-get-regexp.prototype.dotall
4478
+ if (DESCRIPTORS$2 && UNSUPPORTED_DOT_ALL) {
4479
+ defineBuiltInAccessor$1(RegExpPrototype$1, 'dotAll', {
4480
+ configurable: true,
4481
+ get: function dotAll() {
4482
+ if (this === RegExpPrototype$1) return;
4483
+ // We can't use InternalStateModule.getterFor because
4484
+ // we don't add metadata for regexps created by a literal.
4485
+ if (classof(this) === 'RegExp') {
4486
+ return !!getInternalState$1(this).dotAll;
4487
+ }
4488
+ throw new $TypeError$1('Incompatible receiver, RegExp required');
4489
+ }
4490
+ });
4491
+ }
4492
+
4493
+ // TODO: Remove from `core-js@4` since it's moved to entry points
4494
+
4495
+ var $$3 = _export;
4496
+ var call$2 = functionCall;
4497
+ var isCallable = isCallable$p;
4498
+ var anObject$2 = anObject$g;
4499
+ var toString$3 = toString$b;
4500
+
4501
+ var DELEGATES_TO_EXEC = function () {
4502
+ var execCalled = false;
4503
+ var re = /[ac]/;
4504
+ re.exec = function () {
4505
+ execCalled = true;
4506
+ return /./.exec.apply(this, arguments);
4507
+ };
4508
+ return re.test('abc') === true && execCalled;
4509
+ }();
4510
+
4511
+ var nativeTest = /./.test;
4512
+
4513
+ // `RegExp.prototype.test` method
4514
+ // https://tc39.es/ecma262/#sec-regexp.prototype.test
4515
+ $$3({ target: 'RegExp', proto: true, forced: !DELEGATES_TO_EXEC }, {
4516
+ test: function (S) {
4517
+ var R = anObject$2(this);
4518
+ var string = toString$3(S);
4519
+ var exec = R.exec;
4520
+ if (!isCallable(exec)) return call$2(nativeTest, R, string);
4521
+ var result = call$2(exec, R, string);
4522
+ if (result === null) return false;
4523
+ anObject$2(result);
4524
+ return true;
4525
+ }
4526
+ });
4527
+
4073
4528
  var PROPER_FUNCTION_NAME = functionName.PROPER;
4074
- var defineBuiltIn$1 = defineBuiltIn$b;
4075
- var anObject$1 = anObject$f;
4076
- var $toString$1 = toString$6;
4077
- var fails = fails$l;
4529
+ var defineBuiltIn$1 = defineBuiltIn$d;
4530
+ var anObject$1 = anObject$g;
4531
+ var $toString$1 = toString$b;
4532
+ var fails = fails$n;
4078
4533
  var getRegExpFlags = regexpGetFlags;
4079
4534
 
4080
4535
  var TO_STRING = 'toString';
@@ -4126,7 +4581,7 @@ var $$2 = _export;
4126
4581
  var uncurryThis$3 = functionUncurryThis;
4127
4582
  var notARegExp = notARegexp;
4128
4583
  var requireObjectCoercible$1 = requireObjectCoercible$6;
4129
- var toString$2 = toString$6;
4584
+ var toString$2 = toString$b;
4130
4585
  var correctIsRegExpLogic = correctIsRegexpLogic;
4131
4586
 
4132
4587
  var stringIndexOf = uncurryThis$3(''.indexOf);
@@ -4145,7 +4600,7 @@ $$2({ target: 'String', proto: true, forced: !correctIsRegExpLogic('includes') }
4145
4600
 
4146
4601
  var uncurryThis$2 = functionUncurryThis;
4147
4602
  var toIntegerOrInfinity = toIntegerOrInfinity$3;
4148
- var toString$1 = toString$6;
4603
+ var toString$1 = toString$b;
4149
4604
  var requireObjectCoercible = requireObjectCoercible$6;
4150
4605
 
4151
4606
  var charAt$2 = uncurryThis$2(''.charAt);
@@ -4181,7 +4636,7 @@ var stringMultibyte = {
4181
4636
  };
4182
4637
 
4183
4638
  var charAt$1 = stringMultibyte.charAt;
4184
- var toString = toString$6;
4639
+ var toString = toString$b;
4185
4640
  var InternalStateModule$1 = internalState;
4186
4641
  var defineIterator = iteratorDefine;
4187
4642
  var createIterResultObject = createIterResultObject$3;
@@ -4211,7 +4666,7 @@ defineIterator(String, 'String', function (iterated) {
4211
4666
  return createIterResultObject(point, false);
4212
4667
  });
4213
4668
 
4214
- var anObject = anObject$f;
4669
+ var anObject = anObject$g;
4215
4670
  var iteratorClose = iteratorClose$2;
4216
4671
 
4217
4672
  // call something on iterator step with safe closing on error
@@ -4225,7 +4680,7 @@ var callWithSafeIterationClosing$1 = function (iterator, fn, value, ENTRIES) {
4225
4680
 
4226
4681
  var DESCRIPTORS$1 = descriptors;
4227
4682
  var definePropertyModule = objectDefineProperty;
4228
- var createPropertyDescriptor = createPropertyDescriptor$5;
4683
+ var createPropertyDescriptor = createPropertyDescriptor$6;
4229
4684
 
4230
4685
  var createProperty$1 = function (object, key, value) {
4231
4686
  if (DESCRIPTORS$1) definePropertyModule.f(object, key, createPropertyDescriptor(0, value));
@@ -4464,21 +4919,21 @@ var stringPunycodeToAscii = function (input) {
4464
4919
  var $$1 = _export;
4465
4920
  var DESCRIPTORS = descriptors;
4466
4921
  var USE_NATIVE_URL = urlConstructorDetection;
4467
- var global$1 = global$o;
4922
+ var global$1 = global$p;
4468
4923
  var bind = functionBindContext;
4469
4924
  var uncurryThis = functionUncurryThis;
4470
- var defineBuiltIn = defineBuiltIn$b;
4471
- var defineBuiltInAccessor = defineBuiltInAccessor$3;
4925
+ var defineBuiltIn = defineBuiltIn$d;
4926
+ var defineBuiltInAccessor = defineBuiltInAccessor$5;
4472
4927
  var anInstance = anInstance$3;
4473
4928
  var hasOwn = hasOwnProperty_1;
4474
4929
  var assign = objectAssign;
4475
4930
  var arrayFrom = arrayFrom$1;
4476
- var arraySlice = arraySlice$3;
4931
+ var arraySlice = arraySlice$4;
4477
4932
  var codeAt = stringMultibyte.codeAt;
4478
4933
  var toASCII = stringPunycodeToAscii;
4479
- var $toString = toString$6;
4934
+ var $toString = toString$b;
4480
4935
  var setToStringTag = setToStringTag$6;
4481
- var validateArgumentsLength = validateArgumentsLength$3;
4936
+ var validateArgumentsLength = validateArgumentsLength$5;
4482
4937
  var URLSearchParamsModule = web_urlSearchParams_constructor;
4483
4938
  var InternalStateModule = internalState;
4484
4939