@dotcms/react 0.0.1-beta.29 → 0.0.1-beta.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.
@@ -1,6 +1,24 @@
1
1
  var commonjsGlobal = typeof globalThis !== 'undefined' ? globalThis : typeof window !== 'undefined' ? window : typeof global !== 'undefined' ? global : typeof self !== 'undefined' ? self : {};
2
2
 
3
- var fails$f = function (exec) {
3
+ var check = function (it) {
4
+ return it && it.Math === Math && it;
5
+ };
6
+
7
+ // https://github.com/zloirock/core-js/issues/86#issuecomment-115759028
8
+ var global$f =
9
+ // eslint-disable-next-line es/no-global-this -- safe
10
+ check(typeof globalThis == 'object' && globalThis) ||
11
+ check(typeof window == 'object' && window) ||
12
+ // eslint-disable-next-line no-restricted-globals -- safe
13
+ check(typeof self == 'object' && self) ||
14
+ check(typeof commonjsGlobal == 'object' && commonjsGlobal) ||
15
+ check(typeof commonjsGlobal == 'object' && commonjsGlobal) ||
16
+ // eslint-disable-next-line no-new-func -- fallback
17
+ (function () { return this; })() || Function('return this')();
18
+
19
+ var objectGetOwnPropertyDescriptor = {};
20
+
21
+ var fails$g = function (exec) {
4
22
  try {
5
23
  return !!exec();
6
24
  } catch (error) {
@@ -8,7 +26,15 @@ var fails$f = function (exec) {
8
26
  }
9
27
  };
10
28
 
11
- var fails$e = fails$f;
29
+ var fails$f = fails$g;
30
+
31
+ // Detect IE8's incomplete defineProperty implementation
32
+ var descriptors = !fails$f(function () {
33
+ // eslint-disable-next-line es/no-object-defineproperty -- required for testing
34
+ return Object.defineProperty({}, 1, { get: function () { return 7; } })[1] !== 7;
35
+ });
36
+
37
+ var fails$e = fails$g;
12
38
 
13
39
  var functionBindNative = !fails$e(function () {
14
40
  // eslint-disable-next-line es/no-function-prototype-bind -- safe
@@ -19,13 +45,46 @@ var functionBindNative = !fails$e(function () {
19
45
 
20
46
  var NATIVE_BIND$3 = functionBindNative;
21
47
 
48
+ var call$g = Function.prototype.call;
49
+
50
+ var functionCall = NATIVE_BIND$3 ? call$g.bind(call$g) : function () {
51
+ return call$g.apply(call$g, arguments);
52
+ };
53
+
54
+ var objectPropertyIsEnumerable = {};
55
+
56
+ var $propertyIsEnumerable = {}.propertyIsEnumerable;
57
+ // eslint-disable-next-line es/no-object-getownpropertydescriptor -- safe
58
+ var getOwnPropertyDescriptor$2 = Object.getOwnPropertyDescriptor;
59
+
60
+ // Nashorn ~ JDK8 bug
61
+ var NASHORN_BUG = getOwnPropertyDescriptor$2 && !$propertyIsEnumerable.call({ 1: 2 }, 1);
62
+
63
+ // `Object.prototype.propertyIsEnumerable` method implementation
64
+ // https://tc39.es/ecma262/#sec-object.prototype.propertyisenumerable
65
+ objectPropertyIsEnumerable.f = NASHORN_BUG ? function propertyIsEnumerable(V) {
66
+ var descriptor = getOwnPropertyDescriptor$2(this, V);
67
+ return !!descriptor && descriptor.enumerable;
68
+ } : $propertyIsEnumerable;
69
+
70
+ var createPropertyDescriptor$5 = function (bitmap, value) {
71
+ return {
72
+ enumerable: !(bitmap & 1),
73
+ configurable: !(bitmap & 2),
74
+ writable: !(bitmap & 4),
75
+ value: value
76
+ };
77
+ };
78
+
79
+ var NATIVE_BIND$2 = functionBindNative;
80
+
22
81
  var FunctionPrototype$2 = Function.prototype;
23
- var call$e = FunctionPrototype$2.call;
24
- var uncurryThisWithBind = NATIVE_BIND$3 && FunctionPrototype$2.bind.bind(call$e, call$e);
82
+ var call$f = FunctionPrototype$2.call;
83
+ var uncurryThisWithBind = NATIVE_BIND$2 && FunctionPrototype$2.bind.bind(call$f, call$f);
25
84
 
26
- var functionUncurryThis = NATIVE_BIND$3 ? uncurryThisWithBind : function (fn) {
85
+ var functionUncurryThis = NATIVE_BIND$2 ? uncurryThisWithBind : function (fn) {
27
86
  return function () {
28
- return call$e.apply(fn, arguments);
87
+ return call$f.apply(fn, arguments);
29
88
  };
30
89
  };
31
90
 
@@ -39,7 +98,7 @@ var classofRaw$2 = function (it) {
39
98
  };
40
99
 
41
100
  var uncurryThis$m = functionUncurryThis;
42
- var fails$d = fails$f;
101
+ var fails$d = fails$g;
43
102
  var classof$7 = classofRaw$2;
44
103
 
45
104
  var $Object$4 = Object;
@@ -62,12 +121,12 @@ var isNullOrUndefined$3 = function (it) {
62
121
 
63
122
  var isNullOrUndefined$2 = isNullOrUndefined$3;
64
123
 
65
- var $TypeError$9 = TypeError;
124
+ var $TypeError$a = TypeError;
66
125
 
67
126
  // `RequireObjectCoercible` abstract operation
68
127
  // https://tc39.es/ecma262/#sec-requireobjectcoercible
69
128
  var requireObjectCoercible$4 = function (it) {
70
- if (isNullOrUndefined$2(it)) throw new $TypeError$9("Can't call method on " + it);
129
+ if (isNullOrUndefined$2(it)) throw new $TypeError$a("Can't call method on " + it);
71
130
  return it;
72
131
  };
73
132
 
@@ -79,100 +138,46 @@ var toIndexedObject$5 = function (it) {
79
138
  return IndexedObject$1(requireObjectCoercible$3(it));
80
139
  };
81
140
 
82
- var check = function (it) {
83
- return it && it.Math === Math && it;
84
- };
85
-
86
- // https://github.com/zloirock/core-js/issues/86#issuecomment-115759028
87
- var global$e =
88
- // eslint-disable-next-line es/no-global-this -- safe
89
- check(typeof globalThis == 'object' && globalThis) ||
90
- check(typeof window == 'object' && window) ||
91
- // eslint-disable-next-line no-restricted-globals -- safe
92
- check(typeof self == 'object' && self) ||
93
- check(typeof commonjsGlobal == 'object' && commonjsGlobal) ||
94
- check(typeof commonjsGlobal == 'object' && commonjsGlobal) ||
95
- // eslint-disable-next-line no-new-func -- fallback
96
- (function () { return this; })() || Function('return this')();
97
-
98
- var sharedStore = {exports: {}};
99
-
100
- var isPure = false;
101
-
102
- var global$d = global$e;
103
-
104
- // eslint-disable-next-line es/no-object-defineproperty -- safe
105
- var defineProperty$6 = Object.defineProperty;
141
+ // https://tc39.es/ecma262/#sec-IsHTMLDDA-internal-slot
142
+ var documentAll = typeof document == 'object' && document.all;
106
143
 
107
- var defineGlobalProperty$3 = function (key, value) {
108
- try {
109
- defineProperty$6(global$d, key, { value: value, configurable: true, writable: true });
110
- } catch (error) {
111
- global$d[key] = value;
112
- } return value;
144
+ // `IsCallable` abstract operation
145
+ // https://tc39.es/ecma262/#sec-iscallable
146
+ // eslint-disable-next-line unicorn/no-typeof-undefined -- required for testing
147
+ var isCallable$j = typeof documentAll == 'undefined' && documentAll !== undefined ? function (argument) {
148
+ return typeof argument == 'function' || argument === documentAll;
149
+ } : function (argument) {
150
+ return typeof argument == 'function';
113
151
  };
114
152
 
115
- var globalThis$1 = global$e;
116
- var defineGlobalProperty$2 = defineGlobalProperty$3;
117
-
118
- var SHARED = '__core-js_shared__';
119
- var store$3 = sharedStore.exports = globalThis$1[SHARED] || defineGlobalProperty$2(SHARED, {});
120
-
121
- (store$3.versions || (store$3.versions = [])).push({
122
- version: '3.36.1',
123
- mode: 'global',
124
- copyright: '© 2014-2024 Denis Pushkarev (zloirock.ru)',
125
- license: 'https://github.com/zloirock/core-js/blob/v3.36.1/LICENSE',
126
- source: 'https://github.com/zloirock/core-js'
127
- });
128
-
129
- var sharedStoreExports = sharedStore.exports;
130
-
131
- var store$2 = sharedStoreExports;
153
+ var isCallable$i = isCallable$j;
132
154
 
133
- var shared$3 = function (key, value) {
134
- return store$2[key] || (store$2[key] = value || {});
155
+ var isObject$9 = function (it) {
156
+ return typeof it == 'object' ? it !== null : isCallable$i(it);
135
157
  };
136
158
 
137
- var requireObjectCoercible$2 = requireObjectCoercible$4;
138
-
139
- var $Object$3 = Object;
159
+ var global$e = global$f;
160
+ var isCallable$h = isCallable$j;
140
161
 
141
- // `ToObject` abstract operation
142
- // https://tc39.es/ecma262/#sec-toobject
143
- var toObject$4 = function (argument) {
144
- return $Object$3(requireObjectCoercible$2(argument));
162
+ var aFunction = function (argument) {
163
+ return isCallable$h(argument) ? argument : undefined;
145
164
  };
146
165
 
147
- var uncurryThis$l = functionUncurryThis;
148
- var toObject$3 = toObject$4;
149
-
150
- var hasOwnProperty = uncurryThis$l({}.hasOwnProperty);
151
-
152
- // `HasOwnProperty` abstract operation
153
- // https://tc39.es/ecma262/#sec-hasownproperty
154
- // eslint-disable-next-line es/no-object-hasown -- safe
155
- var hasOwnProperty_1 = Object.hasOwn || function hasOwn(it, key) {
156
- return hasOwnProperty(toObject$3(it), key);
166
+ var getBuiltIn$5 = function (namespace, method) {
167
+ return arguments.length < 2 ? aFunction(global$e[namespace]) : global$e[namespace] && global$e[namespace][method];
157
168
  };
158
169
 
159
- var uncurryThis$k = functionUncurryThis;
160
-
161
- var id = 0;
162
- var postfix = Math.random();
163
- var toString$6 = uncurryThis$k(1.0.toString);
170
+ var uncurryThis$l = functionUncurryThis;
164
171
 
165
- var uid$2 = function (key) {
166
- return 'Symbol(' + (key === undefined ? '' : key) + ')_' + toString$6(++id + postfix, 36);
167
- };
172
+ var objectIsPrototypeOf = uncurryThis$l({}.isPrototypeOf);
168
173
 
169
174
  var engineUserAgent = typeof navigator != 'undefined' && String(navigator.userAgent) || '';
170
175
 
171
- var global$c = global$e;
176
+ var global$d = global$f;
172
177
  var userAgent = engineUserAgent;
173
178
 
174
- var process = global$c.process;
175
- var Deno = global$c.Deno;
179
+ var process = global$d.process;
180
+ var Deno = global$d.Deno;
176
181
  var versions = process && process.versions || Deno && Deno.version;
177
182
  var v8 = versions && versions.v8;
178
183
  var match, version;
@@ -198,10 +203,10 @@ var engineV8Version = version;
198
203
 
199
204
  /* eslint-disable es/no-symbol -- required for testing */
200
205
  var V8_VERSION = engineV8Version;
201
- var fails$c = fails$f;
202
- var global$b = global$e;
206
+ var fails$c = fails$g;
207
+ var global$c = global$f;
203
208
 
204
- var $String$6 = global$b.String;
209
+ var $String$6 = global$c.String;
205
210
 
206
211
  // eslint-disable-next-line es/no-object-getownpropertysymbols -- required for testing
207
212
  var symbolConstructorDetection = !!Object.getOwnPropertySymbols && !fails$c(function () {
@@ -222,577 +227,384 @@ var useSymbolAsUid = NATIVE_SYMBOL$2
222
227
  && !Symbol.sham
223
228
  && typeof Symbol.iterator == 'symbol';
224
229
 
225
- var global$a = global$e;
226
- var shared$2 = shared$3;
227
- var hasOwn$b = hasOwnProperty_1;
228
- var uid$1 = uid$2;
229
- var NATIVE_SYMBOL$1 = symbolConstructorDetection;
230
- var USE_SYMBOL_AS_UID$1 = useSymbolAsUid;
231
-
232
- var Symbol$1 = global$a.Symbol;
233
- var WellKnownSymbolsStore = shared$2('wks');
234
- var createWellKnownSymbol = USE_SYMBOL_AS_UID$1 ? Symbol$1['for'] || Symbol$1 : Symbol$1 && Symbol$1.withoutSetter || uid$1;
235
-
236
- var wellKnownSymbol$c = function (name) {
237
- if (!hasOwn$b(WellKnownSymbolsStore, name)) {
238
- WellKnownSymbolsStore[name] = NATIVE_SYMBOL$1 && hasOwn$b(Symbol$1, name)
239
- ? Symbol$1[name]
240
- : createWellKnownSymbol('Symbol.' + name);
241
- } return WellKnownSymbolsStore[name];
242
- };
243
-
244
- // https://tc39.es/ecma262/#sec-IsHTMLDDA-internal-slot
245
- var documentAll = typeof document == 'object' && document.all;
246
-
247
- // `IsCallable` abstract operation
248
- // https://tc39.es/ecma262/#sec-iscallable
249
- // eslint-disable-next-line unicorn/no-typeof-undefined -- required for testing
250
- var isCallable$i = typeof documentAll == 'undefined' && documentAll !== undefined ? function (argument) {
251
- return typeof argument == 'function' || argument === documentAll;
252
- } : function (argument) {
253
- return typeof argument == 'function';
254
- };
255
-
256
- var isCallable$h = isCallable$i;
257
-
258
- var isObject$9 = function (it) {
259
- return typeof it == 'object' ? it !== null : isCallable$h(it);
260
- };
261
-
262
- var isObject$8 = isObject$9;
263
-
264
- var $String$5 = String;
265
- var $TypeError$8 = TypeError;
266
-
267
- // `Assert: Type(argument) is Object`
268
- var anObject$a = function (argument) {
269
- if (isObject$8(argument)) return argument;
270
- throw new $TypeError$8($String$5(argument) + ' is not an object');
271
- };
272
-
273
- var objectDefineProperties = {};
274
-
275
- var fails$b = fails$f;
276
-
277
- // Detect IE8's incomplete defineProperty implementation
278
- var descriptors = !fails$b(function () {
279
- // eslint-disable-next-line es/no-object-defineproperty -- required for testing
280
- return Object.defineProperty({}, 1, { get: function () { return 7; } })[1] !== 7;
281
- });
282
-
283
- var DESCRIPTORS$f = descriptors;
284
- var fails$a = fails$f;
285
-
286
- // V8 ~ Chrome 36-
287
- // https://bugs.chromium.org/p/v8/issues/detail?id=3334
288
- var v8PrototypeDefineBug = DESCRIPTORS$f && fails$a(function () {
289
- // eslint-disable-next-line es/no-object-defineproperty -- required for testing
290
- return Object.defineProperty(function () { /* empty */ }, 'prototype', {
291
- value: 42,
292
- writable: false
293
- }).prototype !== 42;
294
- });
295
-
296
- var objectDefineProperty = {};
297
-
298
- var global$9 = global$e;
299
- var isObject$7 = isObject$9;
300
-
301
- var document$1 = global$9.document;
302
- // typeof document.createElement is 'object' in old IE
303
- var EXISTS$1 = isObject$7(document$1) && isObject$7(document$1.createElement);
304
-
305
- var documentCreateElement$2 = function (it) {
306
- return EXISTS$1 ? document$1.createElement(it) : {};
307
- };
308
-
309
- var DESCRIPTORS$e = descriptors;
310
- var fails$9 = fails$f;
311
- var createElement = documentCreateElement$2;
312
-
313
- // Thanks to IE8 for its funny defineProperty
314
- var ie8DomDefine = !DESCRIPTORS$e && !fails$9(function () {
315
- // eslint-disable-next-line es/no-object-defineproperty -- required for testing
316
- return Object.defineProperty(createElement('div'), 'a', {
317
- get: function () { return 7; }
318
- }).a !== 7;
319
- });
320
-
321
- var NATIVE_BIND$2 = functionBindNative;
322
-
323
- var call$d = Function.prototype.call;
324
-
325
- var functionCall = NATIVE_BIND$2 ? call$d.bind(call$d) : function () {
326
- return call$d.apply(call$d, arguments);
327
- };
328
-
329
- var global$8 = global$e;
330
- var isCallable$g = isCallable$i;
331
-
332
- var aFunction = function (argument) {
333
- return isCallable$g(argument) ? argument : undefined;
334
- };
335
-
336
- var getBuiltIn$5 = function (namespace, method) {
337
- return arguments.length < 2 ? aFunction(global$8[namespace]) : global$8[namespace] && global$8[namespace][method];
338
- };
339
-
340
- var uncurryThis$j = functionUncurryThis;
341
-
342
- var objectIsPrototypeOf = uncurryThis$j({}.isPrototypeOf);
343
-
344
230
  var getBuiltIn$4 = getBuiltIn$5;
345
- var isCallable$f = isCallable$i;
231
+ var isCallable$g = isCallable$j;
346
232
  var isPrototypeOf$2 = objectIsPrototypeOf;
347
- var USE_SYMBOL_AS_UID = useSymbolAsUid;
233
+ var USE_SYMBOL_AS_UID$1 = useSymbolAsUid;
348
234
 
349
- var $Object$2 = Object;
235
+ var $Object$3 = Object;
350
236
 
351
- var isSymbol$3 = USE_SYMBOL_AS_UID ? function (it) {
237
+ var isSymbol$3 = USE_SYMBOL_AS_UID$1 ? function (it) {
352
238
  return typeof it == 'symbol';
353
239
  } : function (it) {
354
240
  var $Symbol = getBuiltIn$4('Symbol');
355
- return isCallable$f($Symbol) && isPrototypeOf$2($Symbol.prototype, $Object$2(it));
241
+ return isCallable$g($Symbol) && isPrototypeOf$2($Symbol.prototype, $Object$3(it));
356
242
  };
357
243
 
358
- var $String$4 = String;
244
+ var $String$5 = String;
359
245
 
360
246
  var tryToString$2 = function (argument) {
361
247
  try {
362
- return $String$4(argument);
248
+ return $String$5(argument);
363
249
  } catch (error) {
364
250
  return 'Object';
365
251
  }
366
252
  };
367
253
 
368
- var isCallable$e = isCallable$i;
254
+ var isCallable$f = isCallable$j;
369
255
  var tryToString$1 = tryToString$2;
370
256
 
371
- var $TypeError$7 = TypeError;
257
+ var $TypeError$9 = TypeError;
372
258
 
373
259
  // `Assert: IsCallable(argument) is true`
374
- var aCallable$4 = function (argument) {
375
- if (isCallable$e(argument)) return argument;
376
- throw new $TypeError$7(tryToString$1(argument) + ' is not a function');
260
+ var aCallable$5 = function (argument) {
261
+ if (isCallable$f(argument)) return argument;
262
+ throw new $TypeError$9(tryToString$1(argument) + ' is not a function');
377
263
  };
378
264
 
379
- var aCallable$3 = aCallable$4;
265
+ var aCallable$4 = aCallable$5;
380
266
  var isNullOrUndefined$1 = isNullOrUndefined$3;
381
267
 
382
268
  // `GetMethod` abstract operation
383
269
  // https://tc39.es/ecma262/#sec-getmethod
384
- var getMethod$3 = function (V, P) {
270
+ var getMethod$4 = function (V, P) {
385
271
  var func = V[P];
386
- return isNullOrUndefined$1(func) ? undefined : aCallable$3(func);
272
+ return isNullOrUndefined$1(func) ? undefined : aCallable$4(func);
387
273
  };
388
274
 
389
- var call$c = functionCall;
390
- var isCallable$d = isCallable$i;
391
- var isObject$6 = isObject$9;
275
+ var call$e = functionCall;
276
+ var isCallable$e = isCallable$j;
277
+ var isObject$8 = isObject$9;
392
278
 
393
- var $TypeError$6 = TypeError;
279
+ var $TypeError$8 = TypeError;
394
280
 
395
281
  // `OrdinaryToPrimitive` abstract operation
396
282
  // https://tc39.es/ecma262/#sec-ordinarytoprimitive
397
283
  var ordinaryToPrimitive$1 = function (input, pref) {
398
284
  var fn, val;
399
- if (pref === 'string' && isCallable$d(fn = input.toString) && !isObject$6(val = call$c(fn, input))) return val;
400
- if (isCallable$d(fn = input.valueOf) && !isObject$6(val = call$c(fn, input))) return val;
401
- if (pref !== 'string' && isCallable$d(fn = input.toString) && !isObject$6(val = call$c(fn, input))) return val;
402
- throw new $TypeError$6("Can't convert object to primitive value");
285
+ if (pref === 'string' && isCallable$e(fn = input.toString) && !isObject$8(val = call$e(fn, input))) return val;
286
+ if (isCallable$e(fn = input.valueOf) && !isObject$8(val = call$e(fn, input))) return val;
287
+ if (pref !== 'string' && isCallable$e(fn = input.toString) && !isObject$8(val = call$e(fn, input))) return val;
288
+ throw new $TypeError$8("Can't convert object to primitive value");
403
289
  };
404
290
 
405
- var call$b = functionCall;
406
- var isObject$5 = isObject$9;
407
- var isSymbol$2 = isSymbol$3;
408
- var getMethod$2 = getMethod$3;
409
- var ordinaryToPrimitive = ordinaryToPrimitive$1;
410
- var wellKnownSymbol$b = wellKnownSymbol$c;
291
+ var sharedStore = {exports: {}};
411
292
 
412
- var $TypeError$5 = TypeError;
413
- var TO_PRIMITIVE = wellKnownSymbol$b('toPrimitive');
293
+ var isPure = false;
414
294
 
415
- // `ToPrimitive` abstract operation
416
- // https://tc39.es/ecma262/#sec-toprimitive
417
- var toPrimitive$1 = function (input, pref) {
418
- if (!isObject$5(input) || isSymbol$2(input)) return input;
419
- var exoticToPrim = getMethod$2(input, TO_PRIMITIVE);
420
- var result;
421
- if (exoticToPrim) {
422
- if (pref === undefined) pref = 'default';
423
- result = call$b(exoticToPrim, input, pref);
424
- if (!isObject$5(result) || isSymbol$2(result)) return result;
425
- throw new $TypeError$5("Can't convert object to primitive value");
426
- }
427
- if (pref === undefined) pref = 'number';
428
- return ordinaryToPrimitive(input, pref);
429
- };
295
+ var global$b = global$f;
430
296
 
431
- var toPrimitive = toPrimitive$1;
432
- var isSymbol$1 = isSymbol$3;
297
+ // eslint-disable-next-line es/no-object-defineproperty -- safe
298
+ var defineProperty$6 = Object.defineProperty;
433
299
 
434
- // `ToPropertyKey` abstract operation
435
- // https://tc39.es/ecma262/#sec-topropertykey
436
- var toPropertyKey$2 = function (argument) {
437
- var key = toPrimitive(argument, 'string');
438
- return isSymbol$1(key) ? key : key + '';
300
+ var defineGlobalProperty$3 = function (key, value) {
301
+ try {
302
+ defineProperty$6(global$b, key, { value: value, configurable: true, writable: true });
303
+ } catch (error) {
304
+ global$b[key] = value;
305
+ } return value;
439
306
  };
440
307
 
441
- var DESCRIPTORS$d = descriptors;
442
- var IE8_DOM_DEFINE$1 = ie8DomDefine;
443
- var V8_PROTOTYPE_DEFINE_BUG$1 = v8PrototypeDefineBug;
444
- var anObject$9 = anObject$a;
445
- var toPropertyKey$1 = toPropertyKey$2;
446
-
447
- var $TypeError$4 = TypeError;
448
- // eslint-disable-next-line es/no-object-defineproperty -- safe
449
- var $defineProperty = Object.defineProperty;
450
- // eslint-disable-next-line es/no-object-getownpropertydescriptor -- safe
451
- var $getOwnPropertyDescriptor$1 = Object.getOwnPropertyDescriptor;
452
- var ENUMERABLE = 'enumerable';
453
- var CONFIGURABLE$1 = 'configurable';
454
- var WRITABLE = 'writable';
308
+ var globalThis$1 = global$f;
309
+ var defineGlobalProperty$2 = defineGlobalProperty$3;
455
310
 
456
- // `Object.defineProperty` method
457
- // https://tc39.es/ecma262/#sec-object.defineproperty
458
- objectDefineProperty.f = DESCRIPTORS$d ? V8_PROTOTYPE_DEFINE_BUG$1 ? function defineProperty(O, P, Attributes) {
459
- anObject$9(O);
460
- P = toPropertyKey$1(P);
461
- anObject$9(Attributes);
462
- if (typeof O === 'function' && P === 'prototype' && 'value' in Attributes && WRITABLE in Attributes && !Attributes[WRITABLE]) {
463
- var current = $getOwnPropertyDescriptor$1(O, P);
464
- if (current && current[WRITABLE]) {
465
- O[P] = Attributes.value;
466
- Attributes = {
467
- configurable: CONFIGURABLE$1 in Attributes ? Attributes[CONFIGURABLE$1] : current[CONFIGURABLE$1],
468
- enumerable: ENUMERABLE in Attributes ? Attributes[ENUMERABLE] : current[ENUMERABLE],
469
- writable: false
470
- };
471
- }
472
- } return $defineProperty(O, P, Attributes);
473
- } : $defineProperty : function defineProperty(O, P, Attributes) {
474
- anObject$9(O);
475
- P = toPropertyKey$1(P);
476
- anObject$9(Attributes);
477
- if (IE8_DOM_DEFINE$1) try {
478
- return $defineProperty(O, P, Attributes);
479
- } catch (error) { /* empty */ }
480
- if ('get' in Attributes || 'set' in Attributes) throw new $TypeError$4('Accessors not supported');
481
- if ('value' in Attributes) O[P] = Attributes.value;
482
- return O;
483
- };
311
+ var SHARED = '__core-js_shared__';
312
+ var store$3 = sharedStore.exports = globalThis$1[SHARED] || defineGlobalProperty$2(SHARED, {});
484
313
 
485
- var ceil = Math.ceil;
486
- var floor$3 = Math.floor;
314
+ (store$3.versions || (store$3.versions = [])).push({
315
+ version: '3.36.1',
316
+ mode: 'global',
317
+ copyright: '© 2014-2024 Denis Pushkarev (zloirock.ru)',
318
+ license: 'https://github.com/zloirock/core-js/blob/v3.36.1/LICENSE',
319
+ source: 'https://github.com/zloirock/core-js'
320
+ });
487
321
 
488
- // `Math.trunc` method
489
- // https://tc39.es/ecma262/#sec-math.trunc
490
- // eslint-disable-next-line es/no-math-trunc -- safe
491
- var mathTrunc = Math.trunc || function trunc(x) {
492
- var n = +x;
493
- return (n > 0 ? floor$3 : ceil)(n);
494
- };
322
+ var sharedStoreExports = sharedStore.exports;
495
323
 
496
- var trunc = mathTrunc;
324
+ var store$2 = sharedStoreExports;
497
325
 
498
- // `ToIntegerOrInfinity` abstract operation
499
- // https://tc39.es/ecma262/#sec-tointegerorinfinity
500
- var toIntegerOrInfinity$3 = function (argument) {
501
- var number = +argument;
502
- // eslint-disable-next-line no-self-compare -- NaN check
503
- return number !== number || number === 0 ? 0 : trunc(number);
326
+ var shared$3 = function (key, value) {
327
+ return store$2[key] || (store$2[key] = value || {});
504
328
  };
505
329
 
506
- var toIntegerOrInfinity$2 = toIntegerOrInfinity$3;
330
+ var requireObjectCoercible$2 = requireObjectCoercible$4;
507
331
 
508
- var max = Math.max;
509
- var min$1 = Math.min;
332
+ var $Object$2 = Object;
510
333
 
511
- // Helper for a popular repeating case of the spec:
512
- // Let integer be ? ToInteger(index).
513
- // If integer < 0, let result be max((length + integer), 0); else let result be min(integer, length).
514
- var toAbsoluteIndex$1 = function (index, length) {
515
- var integer = toIntegerOrInfinity$2(index);
516
- return integer < 0 ? max(integer + length, 0) : min$1(integer, length);
334
+ // `ToObject` abstract operation
335
+ // https://tc39.es/ecma262/#sec-toobject
336
+ var toObject$4 = function (argument) {
337
+ return $Object$2(requireObjectCoercible$2(argument));
517
338
  };
518
339
 
519
- var toIntegerOrInfinity$1 = toIntegerOrInfinity$3;
340
+ var uncurryThis$k = functionUncurryThis;
341
+ var toObject$3 = toObject$4;
520
342
 
521
- var min = Math.min;
343
+ var hasOwnProperty = uncurryThis$k({}.hasOwnProperty);
522
344
 
523
- // `ToLength` abstract operation
524
- // https://tc39.es/ecma262/#sec-tolength
525
- var toLength$1 = function (argument) {
526
- var len = toIntegerOrInfinity$1(argument);
527
- return len > 0 ? min(len, 0x1FFFFFFFFFFFFF) : 0; // 2 ** 53 - 1 == 9007199254740991
345
+ // `HasOwnProperty` abstract operation
346
+ // https://tc39.es/ecma262/#sec-hasownproperty
347
+ // eslint-disable-next-line es/no-object-hasown -- safe
348
+ var hasOwnProperty_1 = Object.hasOwn || function hasOwn(it, key) {
349
+ return hasOwnProperty(toObject$3(it), key);
528
350
  };
529
351
 
530
- var toLength = toLength$1;
352
+ var uncurryThis$j = functionUncurryThis;
531
353
 
532
- // `LengthOfArrayLike` abstract operation
533
- // https://tc39.es/ecma262/#sec-lengthofarraylike
534
- var lengthOfArrayLike$2 = function (obj) {
535
- return toLength(obj.length);
354
+ var id = 0;
355
+ var postfix = Math.random();
356
+ var toString$6 = uncurryThis$j(1.0.toString);
357
+
358
+ var uid$2 = function (key) {
359
+ return 'Symbol(' + (key === undefined ? '' : key) + ')_' + toString$6(++id + postfix, 36);
536
360
  };
537
361
 
538
- var toIndexedObject$4 = toIndexedObject$5;
539
- var toAbsoluteIndex = toAbsoluteIndex$1;
540
- var lengthOfArrayLike$1 = lengthOfArrayLike$2;
362
+ var global$a = global$f;
363
+ var shared$2 = shared$3;
364
+ var hasOwn$c = hasOwnProperty_1;
365
+ var uid$1 = uid$2;
366
+ var NATIVE_SYMBOL$1 = symbolConstructorDetection;
367
+ var USE_SYMBOL_AS_UID = useSymbolAsUid;
541
368
 
542
- // `Array.prototype.{ indexOf, includes }` methods implementation
543
- var createMethod$1 = function (IS_INCLUDES) {
544
- return function ($this, el, fromIndex) {
545
- var O = toIndexedObject$4($this);
546
- var length = lengthOfArrayLike$1(O);
547
- if (length === 0) return !IS_INCLUDES && -1;
548
- var index = toAbsoluteIndex(fromIndex, length);
549
- var value;
550
- // Array#includes uses SameValueZero equality algorithm
551
- // eslint-disable-next-line no-self-compare -- NaN check
552
- if (IS_INCLUDES && el !== el) while (length > index) {
553
- value = O[index++];
554
- // eslint-disable-next-line no-self-compare -- NaN check
555
- if (value !== value) return true;
556
- // Array#indexOf ignores holes, Array#includes - not
557
- } else for (;length > index; index++) {
558
- if ((IS_INCLUDES || index in O) && O[index] === el) return IS_INCLUDES || index || 0;
559
- } return !IS_INCLUDES && -1;
560
- };
561
- };
369
+ var Symbol$1 = global$a.Symbol;
370
+ var WellKnownSymbolsStore = shared$2('wks');
371
+ var createWellKnownSymbol = USE_SYMBOL_AS_UID ? Symbol$1['for'] || Symbol$1 : Symbol$1 && Symbol$1.withoutSetter || uid$1;
562
372
 
563
- var arrayIncludes = {
564
- // `Array.prototype.includes` method
565
- // https://tc39.es/ecma262/#sec-array.prototype.includes
566
- includes: createMethod$1(true),
567
- // `Array.prototype.indexOf` method
568
- // https://tc39.es/ecma262/#sec-array.prototype.indexof
569
- indexOf: createMethod$1(false)
373
+ var wellKnownSymbol$e = function (name) {
374
+ if (!hasOwn$c(WellKnownSymbolsStore, name)) {
375
+ WellKnownSymbolsStore[name] = NATIVE_SYMBOL$1 && hasOwn$c(Symbol$1, name)
376
+ ? Symbol$1[name]
377
+ : createWellKnownSymbol('Symbol.' + name);
378
+ } return WellKnownSymbolsStore[name];
570
379
  };
571
380
 
572
- var hiddenKeys$4 = {};
573
-
574
- var uncurryThis$i = functionUncurryThis;
575
- var hasOwn$a = hasOwnProperty_1;
576
- var toIndexedObject$3 = toIndexedObject$5;
577
- var indexOf = arrayIncludes.indexOf;
578
- var hiddenKeys$3 = hiddenKeys$4;
381
+ var call$d = functionCall;
382
+ var isObject$7 = isObject$9;
383
+ var isSymbol$2 = isSymbol$3;
384
+ var getMethod$3 = getMethod$4;
385
+ var ordinaryToPrimitive = ordinaryToPrimitive$1;
386
+ var wellKnownSymbol$d = wellKnownSymbol$e;
579
387
 
580
- var push$5 = uncurryThis$i([].push);
388
+ var $TypeError$7 = TypeError;
389
+ var TO_PRIMITIVE = wellKnownSymbol$d('toPrimitive');
581
390
 
582
- var objectKeysInternal = function (object, names) {
583
- var O = toIndexedObject$3(object);
584
- var i = 0;
585
- var result = [];
586
- var key;
587
- for (key in O) !hasOwn$a(hiddenKeys$3, key) && hasOwn$a(O, key) && push$5(result, key);
588
- // Don't enum bug & hidden keys
589
- while (names.length > i) if (hasOwn$a(O, key = names[i++])) {
590
- ~indexOf(result, key) || push$5(result, key);
391
+ // `ToPrimitive` abstract operation
392
+ // https://tc39.es/ecma262/#sec-toprimitive
393
+ var toPrimitive$1 = function (input, pref) {
394
+ if (!isObject$7(input) || isSymbol$2(input)) return input;
395
+ var exoticToPrim = getMethod$3(input, TO_PRIMITIVE);
396
+ var result;
397
+ if (exoticToPrim) {
398
+ if (pref === undefined) pref = 'default';
399
+ result = call$d(exoticToPrim, input, pref);
400
+ if (!isObject$7(result) || isSymbol$2(result)) return result;
401
+ throw new $TypeError$7("Can't convert object to primitive value");
591
402
  }
592
- return result;
403
+ if (pref === undefined) pref = 'number';
404
+ return ordinaryToPrimitive(input, pref);
593
405
  };
594
406
 
595
- // IE8- don't enum bug keys
596
- var enumBugKeys$3 = [
597
- 'constructor',
598
- 'hasOwnProperty',
599
- 'isPrototypeOf',
600
- 'propertyIsEnumerable',
601
- 'toLocaleString',
602
- 'toString',
603
- 'valueOf'
604
- ];
605
-
606
- var internalObjectKeys$1 = objectKeysInternal;
607
- var enumBugKeys$2 = enumBugKeys$3;
407
+ var toPrimitive = toPrimitive$1;
408
+ var isSymbol$1 = isSymbol$3;
608
409
 
609
- // `Object.keys` method
610
- // https://tc39.es/ecma262/#sec-object.keys
611
- // eslint-disable-next-line es/no-object-keys -- safe
612
- var objectKeys$2 = Object.keys || function keys(O) {
613
- return internalObjectKeys$1(O, enumBugKeys$2);
410
+ // `ToPropertyKey` abstract operation
411
+ // https://tc39.es/ecma262/#sec-topropertykey
412
+ var toPropertyKey$2 = function (argument) {
413
+ var key = toPrimitive(argument, 'string');
414
+ return isSymbol$1(key) ? key : key + '';
614
415
  };
615
416
 
616
- var DESCRIPTORS$c = descriptors;
617
- var V8_PROTOTYPE_DEFINE_BUG = v8PrototypeDefineBug;
618
- var definePropertyModule$4 = objectDefineProperty;
619
- var anObject$8 = anObject$a;
620
- var toIndexedObject$2 = toIndexedObject$5;
621
- var objectKeys$1 = objectKeys$2;
417
+ var global$9 = global$f;
418
+ var isObject$6 = isObject$9;
622
419
 
623
- // `Object.defineProperties` method
624
- // https://tc39.es/ecma262/#sec-object.defineproperties
625
- // eslint-disable-next-line es/no-object-defineproperties -- safe
626
- objectDefineProperties.f = DESCRIPTORS$c && !V8_PROTOTYPE_DEFINE_BUG ? Object.defineProperties : function defineProperties(O, Properties) {
627
- anObject$8(O);
628
- var props = toIndexedObject$2(Properties);
629
- var keys = objectKeys$1(Properties);
630
- var length = keys.length;
631
- var index = 0;
632
- var key;
633
- while (length > index) definePropertyModule$4.f(O, key = keys[index++], props[key]);
634
- return O;
420
+ var document$1 = global$9.document;
421
+ // typeof document.createElement is 'object' in old IE
422
+ var EXISTS$1 = isObject$6(document$1) && isObject$6(document$1.createElement);
423
+
424
+ var documentCreateElement$2 = function (it) {
425
+ return EXISTS$1 ? document$1.createElement(it) : {};
635
426
  };
636
427
 
637
- var getBuiltIn$3 = getBuiltIn$5;
428
+ var DESCRIPTORS$g = descriptors;
429
+ var fails$b = fails$g;
430
+ var createElement = documentCreateElement$2;
638
431
 
639
- var html$1 = getBuiltIn$3('document', 'documentElement');
432
+ // Thanks to IE8 for its funny defineProperty
433
+ var ie8DomDefine = !DESCRIPTORS$g && !fails$b(function () {
434
+ // eslint-disable-next-line es/no-object-defineproperty -- required for testing
435
+ return Object.defineProperty(createElement('div'), 'a', {
436
+ get: function () { return 7; }
437
+ }).a !== 7;
438
+ });
640
439
 
641
- var shared$1 = shared$3;
642
- var uid = uid$2;
440
+ var DESCRIPTORS$f = descriptors;
441
+ var call$c = functionCall;
442
+ var propertyIsEnumerableModule$1 = objectPropertyIsEnumerable;
443
+ var createPropertyDescriptor$4 = createPropertyDescriptor$5;
444
+ var toIndexedObject$4 = toIndexedObject$5;
445
+ var toPropertyKey$1 = toPropertyKey$2;
446
+ var hasOwn$b = hasOwnProperty_1;
447
+ var IE8_DOM_DEFINE$1 = ie8DomDefine;
643
448
 
644
- var keys = shared$1('keys');
449
+ // eslint-disable-next-line es/no-object-getownpropertydescriptor -- safe
450
+ var $getOwnPropertyDescriptor$1 = Object.getOwnPropertyDescriptor;
645
451
 
646
- var sharedKey$3 = function (key) {
647
- return keys[key] || (keys[key] = uid(key));
452
+ // `Object.getOwnPropertyDescriptor` method
453
+ // https://tc39.es/ecma262/#sec-object.getownpropertydescriptor
454
+ objectGetOwnPropertyDescriptor.f = DESCRIPTORS$f ? $getOwnPropertyDescriptor$1 : function getOwnPropertyDescriptor(O, P) {
455
+ O = toIndexedObject$4(O);
456
+ P = toPropertyKey$1(P);
457
+ if (IE8_DOM_DEFINE$1) try {
458
+ return $getOwnPropertyDescriptor$1(O, P);
459
+ } catch (error) { /* empty */ }
460
+ if (hasOwn$b(O, P)) return createPropertyDescriptor$4(!call$c(propertyIsEnumerableModule$1.f, O, P), O[P]);
648
461
  };
649
462
 
650
- /* global ActiveXObject -- old IE, WSH */
651
- var anObject$7 = anObject$a;
652
- var definePropertiesModule = objectDefineProperties;
653
- var enumBugKeys$1 = enumBugKeys$3;
654
- var hiddenKeys$2 = hiddenKeys$4;
655
- var html = html$1;
656
- var documentCreateElement$1 = documentCreateElement$2;
657
- var sharedKey$2 = sharedKey$3;
463
+ var objectDefineProperty = {};
658
464
 
659
- var GT = '>';
660
- var LT = '<';
661
- var PROTOTYPE = 'prototype';
662
- var SCRIPT = 'script';
663
- var IE_PROTO$1 = sharedKey$2('IE_PROTO');
465
+ var DESCRIPTORS$e = descriptors;
466
+ var fails$a = fails$g;
664
467
 
665
- var EmptyConstructor = function () { /* empty */ };
468
+ // V8 ~ Chrome 36-
469
+ // https://bugs.chromium.org/p/v8/issues/detail?id=3334
470
+ var v8PrototypeDefineBug = DESCRIPTORS$e && fails$a(function () {
471
+ // eslint-disable-next-line es/no-object-defineproperty -- required for testing
472
+ return Object.defineProperty(function () { /* empty */ }, 'prototype', {
473
+ value: 42,
474
+ writable: false
475
+ }).prototype !== 42;
476
+ });
666
477
 
667
- var scriptTag = function (content) {
668
- return LT + SCRIPT + GT + content + LT + '/' + SCRIPT + GT;
669
- };
478
+ var isObject$5 = isObject$9;
670
479
 
671
- // Create object with fake `null` prototype: use ActiveX Object with cleared prototype
672
- var NullProtoObjectViaActiveX = function (activeXDocument) {
673
- activeXDocument.write(scriptTag(''));
674
- activeXDocument.close();
675
- var temp = activeXDocument.parentWindow.Object;
676
- activeXDocument = null; // avoid memory leak
677
- return temp;
678
- };
480
+ var $String$4 = String;
481
+ var $TypeError$6 = TypeError;
679
482
 
680
- // Create object with fake `null` prototype: use iframe Object with cleared prototype
681
- var NullProtoObjectViaIFrame = function () {
682
- // Thrash, waste and sodomy: IE GC bug
683
- var iframe = documentCreateElement$1('iframe');
684
- var JS = 'java' + SCRIPT + ':';
685
- var iframeDocument;
686
- iframe.style.display = 'none';
687
- html.appendChild(iframe);
688
- // https://github.com/zloirock/core-js/issues/475
689
- iframe.src = String(JS);
690
- iframeDocument = iframe.contentWindow.document;
691
- iframeDocument.open();
692
- iframeDocument.write(scriptTag('document.F=Object'));
693
- iframeDocument.close();
694
- return iframeDocument.F;
483
+ // `Assert: Type(argument) is Object`
484
+ var anObject$c = function (argument) {
485
+ if (isObject$5(argument)) return argument;
486
+ throw new $TypeError$6($String$4(argument) + ' is not an object');
695
487
  };
696
488
 
697
- // Check for document.domain and active x support
698
- // No need to use active x approach when document.domain is not set
699
- // see https://github.com/es-shims/es5-shim/issues/150
700
- // variation of https://github.com/kitcambridge/es5-shim/commit/4f738ac066346
701
- // avoid IE GC bug
702
- var activeXDocument;
703
- var NullProtoObject = function () {
704
- try {
705
- activeXDocument = new ActiveXObject('htmlfile');
706
- } catch (error) { /* ignore */ }
707
- NullProtoObject = typeof document != 'undefined'
708
- ? document.domain && activeXDocument
709
- ? NullProtoObjectViaActiveX(activeXDocument) // old IE
710
- : NullProtoObjectViaIFrame()
711
- : NullProtoObjectViaActiveX(activeXDocument); // WSH
712
- var length = enumBugKeys$1.length;
713
- while (length--) delete NullProtoObject[PROTOTYPE][enumBugKeys$1[length]];
714
- return NullProtoObject();
489
+ var DESCRIPTORS$d = descriptors;
490
+ var IE8_DOM_DEFINE = ie8DomDefine;
491
+ var V8_PROTOTYPE_DEFINE_BUG$1 = v8PrototypeDefineBug;
492
+ var anObject$b = anObject$c;
493
+ var toPropertyKey = toPropertyKey$2;
494
+
495
+ var $TypeError$5 = TypeError;
496
+ // eslint-disable-next-line es/no-object-defineproperty -- safe
497
+ var $defineProperty = Object.defineProperty;
498
+ // eslint-disable-next-line es/no-object-getownpropertydescriptor -- safe
499
+ var $getOwnPropertyDescriptor = Object.getOwnPropertyDescriptor;
500
+ var ENUMERABLE = 'enumerable';
501
+ var CONFIGURABLE$1 = 'configurable';
502
+ var WRITABLE = 'writable';
503
+
504
+ // `Object.defineProperty` method
505
+ // https://tc39.es/ecma262/#sec-object.defineproperty
506
+ objectDefineProperty.f = DESCRIPTORS$d ? V8_PROTOTYPE_DEFINE_BUG$1 ? function defineProperty(O, P, Attributes) {
507
+ anObject$b(O);
508
+ P = toPropertyKey(P);
509
+ anObject$b(Attributes);
510
+ if (typeof O === 'function' && P === 'prototype' && 'value' in Attributes && WRITABLE in Attributes && !Attributes[WRITABLE]) {
511
+ var current = $getOwnPropertyDescriptor(O, P);
512
+ if (current && current[WRITABLE]) {
513
+ O[P] = Attributes.value;
514
+ Attributes = {
515
+ configurable: CONFIGURABLE$1 in Attributes ? Attributes[CONFIGURABLE$1] : current[CONFIGURABLE$1],
516
+ enumerable: ENUMERABLE in Attributes ? Attributes[ENUMERABLE] : current[ENUMERABLE],
517
+ writable: false
518
+ };
519
+ }
520
+ } return $defineProperty(O, P, Attributes);
521
+ } : $defineProperty : function defineProperty(O, P, Attributes) {
522
+ anObject$b(O);
523
+ P = toPropertyKey(P);
524
+ anObject$b(Attributes);
525
+ if (IE8_DOM_DEFINE) try {
526
+ return $defineProperty(O, P, Attributes);
527
+ } catch (error) { /* empty */ }
528
+ if ('get' in Attributes || 'set' in Attributes) throw new $TypeError$5('Accessors not supported');
529
+ if ('value' in Attributes) O[P] = Attributes.value;
530
+ return O;
715
531
  };
716
532
 
717
- hiddenKeys$2[IE_PROTO$1] = true;
533
+ var DESCRIPTORS$c = descriptors;
534
+ var definePropertyModule$4 = objectDefineProperty;
535
+ var createPropertyDescriptor$3 = createPropertyDescriptor$5;
718
536
 
719
- // `Object.create` method
720
- // https://tc39.es/ecma262/#sec-object.create
721
- // eslint-disable-next-line es/no-object-create -- safe
722
- var objectCreate = Object.create || function create(O, Properties) {
723
- var result;
724
- if (O !== null) {
725
- EmptyConstructor[PROTOTYPE] = anObject$7(O);
726
- result = new EmptyConstructor();
727
- EmptyConstructor[PROTOTYPE] = null;
728
- // add "__proto__" for Object.getPrototypeOf polyfill
729
- result[IE_PROTO$1] = O;
730
- } else result = NullProtoObject();
731
- return Properties === undefined ? result : definePropertiesModule.f(result, Properties);
537
+ var createNonEnumerableProperty$5 = DESCRIPTORS$c ? function (object, key, value) {
538
+ return definePropertyModule$4.f(object, key, createPropertyDescriptor$3(1, value));
539
+ } : function (object, key, value) {
540
+ object[key] = value;
541
+ return object;
732
542
  };
733
543
 
734
- var wellKnownSymbol$a = wellKnownSymbol$c;
735
- var create$2 = objectCreate;
736
- var defineProperty$5 = objectDefineProperty.f;
544
+ var makeBuiltIn$3 = {exports: {}};
737
545
 
738
- var UNSCOPABLES = wellKnownSymbol$a('unscopables');
739
- var ArrayPrototype$1 = Array.prototype;
546
+ var DESCRIPTORS$b = descriptors;
547
+ var hasOwn$a = hasOwnProperty_1;
740
548
 
741
- // Array.prototype[@@unscopables]
742
- // https://tc39.es/ecma262/#sec-array.prototype-@@unscopables
743
- if (ArrayPrototype$1[UNSCOPABLES] === undefined) {
744
- defineProperty$5(ArrayPrototype$1, UNSCOPABLES, {
745
- configurable: true,
746
- value: create$2(null)
747
- });
748
- }
549
+ var FunctionPrototype$1 = Function.prototype;
550
+ // eslint-disable-next-line es/no-object-getownpropertydescriptor -- safe
551
+ var getDescriptor = DESCRIPTORS$b && Object.getOwnPropertyDescriptor;
749
552
 
750
- // add a key to Array.prototype[@@unscopables]
751
- var addToUnscopables$1 = function (key) {
752
- ArrayPrototype$1[UNSCOPABLES][key] = true;
553
+ var EXISTS = hasOwn$a(FunctionPrototype$1, 'name');
554
+ // additional protection from minified / mangled / dropped function names
555
+ var PROPER = EXISTS && (function something() { /* empty */ }).name === 'something';
556
+ var CONFIGURABLE = EXISTS && (!DESCRIPTORS$b || (DESCRIPTORS$b && getDescriptor(FunctionPrototype$1, 'name').configurable));
557
+
558
+ var functionName = {
559
+ PROPER: PROPER,
560
+ CONFIGURABLE: CONFIGURABLE
753
561
  };
754
562
 
755
- var iterators = {};
563
+ var uncurryThis$i = functionUncurryThis;
564
+ var isCallable$d = isCallable$j;
565
+ var store$1 = sharedStoreExports;
566
+
567
+ var functionToString = uncurryThis$i(Function.toString);
568
+
569
+ // this helper broken in `core-js@3.4.1-3.4.4`, so we can't use `shared` helper
570
+ if (!isCallable$d(store$1.inspectSource)) {
571
+ store$1.inspectSource = function (it) {
572
+ return functionToString(it);
573
+ };
574
+ }
756
575
 
757
- var global$7 = global$e;
758
- var isCallable$c = isCallable$i;
576
+ var inspectSource$2 = store$1.inspectSource;
759
577
 
760
- var WeakMap$1 = global$7.WeakMap;
578
+ var global$8 = global$f;
579
+ var isCallable$c = isCallable$j;
580
+
581
+ var WeakMap$1 = global$8.WeakMap;
761
582
 
762
583
  var weakMapBasicDetection = isCallable$c(WeakMap$1) && /native code/.test(String(WeakMap$1));
763
584
 
764
- var createPropertyDescriptor$5 = function (bitmap, value) {
765
- return {
766
- enumerable: !(bitmap & 1),
767
- configurable: !(bitmap & 2),
768
- writable: !(bitmap & 4),
769
- value: value
770
- };
771
- };
585
+ var shared$1 = shared$3;
586
+ var uid = uid$2;
772
587
 
773
- var DESCRIPTORS$b = descriptors;
774
- var definePropertyModule$3 = objectDefineProperty;
775
- var createPropertyDescriptor$4 = createPropertyDescriptor$5;
588
+ var keys = shared$1('keys');
776
589
 
777
- var createNonEnumerableProperty$4 = DESCRIPTORS$b ? function (object, key, value) {
778
- return definePropertyModule$3.f(object, key, createPropertyDescriptor$4(1, value));
779
- } : function (object, key, value) {
780
- object[key] = value;
781
- return object;
590
+ var sharedKey$3 = function (key) {
591
+ return keys[key] || (keys[key] = uid(key));
782
592
  };
783
593
 
594
+ var hiddenKeys$4 = {};
595
+
784
596
  var NATIVE_WEAK_MAP = weakMapBasicDetection;
785
- var global$6 = global$e;
597
+ var global$7 = global$f;
786
598
  var isObject$4 = isObject$9;
787
- var createNonEnumerableProperty$3 = createNonEnumerableProperty$4;
599
+ var createNonEnumerableProperty$4 = createNonEnumerableProperty$5;
788
600
  var hasOwn$9 = hasOwnProperty_1;
789
601
  var shared = sharedStoreExports;
790
- var sharedKey$1 = sharedKey$3;
791
- var hiddenKeys$1 = hiddenKeys$4;
602
+ var sharedKey$2 = sharedKey$3;
603
+ var hiddenKeys$3 = hiddenKeys$4;
792
604
 
793
605
  var OBJECT_ALREADY_INITIALIZED = 'Object already initialized';
794
- var TypeError$3 = global$6.TypeError;
795
- var WeakMap = global$6.WeakMap;
606
+ var TypeError$3 = global$7.TypeError;
607
+ var WeakMap = global$7.WeakMap;
796
608
  var set, get, has;
797
609
 
798
610
  var enforce = function (it) {
@@ -805,149 +617,73 @@ var getterFor = function (TYPE) {
805
617
  if (!isObject$4(it) || (state = get(it)).type !== TYPE) {
806
618
  throw new TypeError$3('Incompatible receiver, ' + TYPE + ' required');
807
619
  } return state;
808
- };
809
- };
810
-
811
- if (NATIVE_WEAK_MAP || shared.state) {
812
- var store$1 = shared.state || (shared.state = new WeakMap());
813
- /* eslint-disable no-self-assign -- prototype methods protection */
814
- store$1.get = store$1.get;
815
- store$1.has = store$1.has;
816
- store$1.set = store$1.set;
817
- /* eslint-enable no-self-assign -- prototype methods protection */
818
- set = function (it, metadata) {
819
- if (store$1.has(it)) throw new TypeError$3(OBJECT_ALREADY_INITIALIZED);
820
- metadata.facade = it;
821
- store$1.set(it, metadata);
822
- return metadata;
823
- };
824
- get = function (it) {
825
- return store$1.get(it) || {};
826
- };
827
- has = function (it) {
828
- return store$1.has(it);
829
- };
830
- } else {
831
- var STATE = sharedKey$1('state');
832
- hiddenKeys$1[STATE] = true;
833
- set = function (it, metadata) {
834
- if (hasOwn$9(it, STATE)) throw new TypeError$3(OBJECT_ALREADY_INITIALIZED);
835
- metadata.facade = it;
836
- createNonEnumerableProperty$3(it, STATE, metadata);
837
- return metadata;
838
- };
839
- get = function (it) {
840
- return hasOwn$9(it, STATE) ? it[STATE] : {};
841
- };
842
- has = function (it) {
843
- return hasOwn$9(it, STATE);
844
- };
845
- }
846
-
847
- var internalState = {
848
- set: set,
849
- get: get,
850
- has: has,
851
- enforce: enforce,
852
- getterFor: getterFor
853
- };
854
-
855
- var objectGetOwnPropertyDescriptor = {};
856
-
857
- var objectPropertyIsEnumerable = {};
858
-
859
- var $propertyIsEnumerable = {}.propertyIsEnumerable;
860
- // eslint-disable-next-line es/no-object-getownpropertydescriptor -- safe
861
- var getOwnPropertyDescriptor$2 = Object.getOwnPropertyDescriptor;
862
-
863
- // Nashorn ~ JDK8 bug
864
- var NASHORN_BUG = getOwnPropertyDescriptor$2 && !$propertyIsEnumerable.call({ 1: 2 }, 1);
865
-
866
- // `Object.prototype.propertyIsEnumerable` method implementation
867
- // https://tc39.es/ecma262/#sec-object.prototype.propertyisenumerable
868
- objectPropertyIsEnumerable.f = NASHORN_BUG ? function propertyIsEnumerable(V) {
869
- var descriptor = getOwnPropertyDescriptor$2(this, V);
870
- return !!descriptor && descriptor.enumerable;
871
- } : $propertyIsEnumerable;
872
-
873
- var DESCRIPTORS$a = descriptors;
874
- var call$a = functionCall;
875
- var propertyIsEnumerableModule$1 = objectPropertyIsEnumerable;
876
- var createPropertyDescriptor$3 = createPropertyDescriptor$5;
877
- var toIndexedObject$1 = toIndexedObject$5;
878
- var toPropertyKey = toPropertyKey$2;
879
- var hasOwn$8 = hasOwnProperty_1;
880
- var IE8_DOM_DEFINE = ie8DomDefine;
881
-
882
- // eslint-disable-next-line es/no-object-getownpropertydescriptor -- safe
883
- var $getOwnPropertyDescriptor = Object.getOwnPropertyDescriptor;
884
-
885
- // `Object.getOwnPropertyDescriptor` method
886
- // https://tc39.es/ecma262/#sec-object.getownpropertydescriptor
887
- objectGetOwnPropertyDescriptor.f = DESCRIPTORS$a ? $getOwnPropertyDescriptor : function getOwnPropertyDescriptor(O, P) {
888
- O = toIndexedObject$1(O);
889
- P = toPropertyKey(P);
890
- if (IE8_DOM_DEFINE) try {
891
- return $getOwnPropertyDescriptor(O, P);
892
- } catch (error) { /* empty */ }
893
- if (hasOwn$8(O, P)) return createPropertyDescriptor$3(!call$a(propertyIsEnumerableModule$1.f, O, P), O[P]);
894
- };
895
-
896
- var makeBuiltIn$3 = {exports: {}};
897
-
898
- var DESCRIPTORS$9 = descriptors;
899
- var hasOwn$7 = hasOwnProperty_1;
900
-
901
- var FunctionPrototype$1 = Function.prototype;
902
- // eslint-disable-next-line es/no-object-getownpropertydescriptor -- safe
903
- var getDescriptor = DESCRIPTORS$9 && Object.getOwnPropertyDescriptor;
904
-
905
- var EXISTS = hasOwn$7(FunctionPrototype$1, 'name');
906
- // additional protection from minified / mangled / dropped function names
907
- var PROPER = EXISTS && (function something() { /* empty */ }).name === 'something';
908
- var CONFIGURABLE = EXISTS && (!DESCRIPTORS$9 || (DESCRIPTORS$9 && getDescriptor(FunctionPrototype$1, 'name').configurable));
909
-
910
- var functionName = {
911
- EXISTS: EXISTS,
912
- PROPER: PROPER,
913
- CONFIGURABLE: CONFIGURABLE
620
+ };
914
621
  };
915
622
 
916
- var uncurryThis$h = functionUncurryThis;
917
- var isCallable$b = isCallable$i;
918
- var store = sharedStoreExports;
919
-
920
- var functionToString = uncurryThis$h(Function.toString);
921
-
922
- // this helper broken in `core-js@3.4.1-3.4.4`, so we can't use `shared` helper
923
- if (!isCallable$b(store.inspectSource)) {
924
- store.inspectSource = function (it) {
925
- return functionToString(it);
623
+ if (NATIVE_WEAK_MAP || shared.state) {
624
+ var store = shared.state || (shared.state = new WeakMap());
625
+ /* eslint-disable no-self-assign -- prototype methods protection */
626
+ store.get = store.get;
627
+ store.has = store.has;
628
+ store.set = store.set;
629
+ /* eslint-enable no-self-assign -- prototype methods protection */
630
+ set = function (it, metadata) {
631
+ if (store.has(it)) throw new TypeError$3(OBJECT_ALREADY_INITIALIZED);
632
+ metadata.facade = it;
633
+ store.set(it, metadata);
634
+ return metadata;
635
+ };
636
+ get = function (it) {
637
+ return store.get(it) || {};
638
+ };
639
+ has = function (it) {
640
+ return store.has(it);
641
+ };
642
+ } else {
643
+ var STATE = sharedKey$2('state');
644
+ hiddenKeys$3[STATE] = true;
645
+ set = function (it, metadata) {
646
+ if (hasOwn$9(it, STATE)) throw new TypeError$3(OBJECT_ALREADY_INITIALIZED);
647
+ metadata.facade = it;
648
+ createNonEnumerableProperty$4(it, STATE, metadata);
649
+ return metadata;
650
+ };
651
+ get = function (it) {
652
+ return hasOwn$9(it, STATE) ? it[STATE] : {};
653
+ };
654
+ has = function (it) {
655
+ return hasOwn$9(it, STATE);
926
656
  };
927
657
  }
928
658
 
929
- var inspectSource$2 = store.inspectSource;
659
+ var internalState = {
660
+ set: set,
661
+ get: get,
662
+ has: has,
663
+ enforce: enforce,
664
+ getterFor: getterFor
665
+ };
930
666
 
931
- var uncurryThis$g = functionUncurryThis;
932
- var fails$8 = fails$f;
933
- var isCallable$a = isCallable$i;
934
- var hasOwn$6 = hasOwnProperty_1;
935
- var DESCRIPTORS$8 = descriptors;
667
+ var uncurryThis$h = functionUncurryThis;
668
+ var fails$9 = fails$g;
669
+ var isCallable$b = isCallable$j;
670
+ var hasOwn$8 = hasOwnProperty_1;
671
+ var DESCRIPTORS$a = descriptors;
936
672
  var CONFIGURABLE_FUNCTION_NAME$1 = functionName.CONFIGURABLE;
937
673
  var inspectSource$1 = inspectSource$2;
938
- var InternalStateModule$4 = internalState;
674
+ var InternalStateModule$5 = internalState;
939
675
 
940
- var enforceInternalState = InternalStateModule$4.enforce;
941
- var getInternalState$2 = InternalStateModule$4.get;
676
+ var enforceInternalState = InternalStateModule$5.enforce;
677
+ var getInternalState$2 = InternalStateModule$5.get;
942
678
  var $String$3 = String;
943
679
  // eslint-disable-next-line es/no-object-defineproperty -- safe
944
- var defineProperty$4 = Object.defineProperty;
945
- var stringSlice$3 = uncurryThis$g(''.slice);
946
- var replace$4 = uncurryThis$g(''.replace);
947
- var join$3 = uncurryThis$g([].join);
680
+ var defineProperty$5 = Object.defineProperty;
681
+ var stringSlice$3 = uncurryThis$h(''.slice);
682
+ var replace$4 = uncurryThis$h(''.replace);
683
+ var join$3 = uncurryThis$h([].join);
948
684
 
949
- var CONFIGURABLE_LENGTH = DESCRIPTORS$8 && !fails$8(function () {
950
- return defineProperty$4(function () { /* empty */ }, 'length', { value: 8 }).length !== 8;
685
+ var CONFIGURABLE_LENGTH = DESCRIPTORS$a && !fails$9(function () {
686
+ return defineProperty$5(function () { /* empty */ }, 'length', { value: 8 }).length !== 8;
951
687
  });
952
688
 
953
689
  var TEMPLATE = String(String).split('String');
@@ -958,21 +694,21 @@ var makeBuiltIn$2 = makeBuiltIn$3.exports = function (value, name, options) {
958
694
  }
959
695
  if (options && options.getter) name = 'get ' + name;
960
696
  if (options && options.setter) name = 'set ' + name;
961
- if (!hasOwn$6(value, 'name') || (CONFIGURABLE_FUNCTION_NAME$1 && value.name !== name)) {
962
- if (DESCRIPTORS$8) defineProperty$4(value, 'name', { value: name, configurable: true });
697
+ if (!hasOwn$8(value, 'name') || (CONFIGURABLE_FUNCTION_NAME$1 && value.name !== name)) {
698
+ if (DESCRIPTORS$a) defineProperty$5(value, 'name', { value: name, configurable: true });
963
699
  else value.name = name;
964
700
  }
965
- if (CONFIGURABLE_LENGTH && options && hasOwn$6(options, 'arity') && value.length !== options.arity) {
966
- defineProperty$4(value, 'length', { value: options.arity });
701
+ if (CONFIGURABLE_LENGTH && options && hasOwn$8(options, 'arity') && value.length !== options.arity) {
702
+ defineProperty$5(value, 'length', { value: options.arity });
967
703
  }
968
704
  try {
969
- if (options && hasOwn$6(options, 'constructor') && options.constructor) {
970
- if (DESCRIPTORS$8) defineProperty$4(value, 'prototype', { writable: false });
705
+ if (options && hasOwn$8(options, 'constructor') && options.constructor) {
706
+ if (DESCRIPTORS$a) defineProperty$5(value, 'prototype', { writable: false });
971
707
  // in V8 ~ Chrome 53, prototypes of some methods, like `Array.prototype.values`, are non-writable
972
708
  } else if (value.prototype) value.prototype = undefined;
973
709
  } catch (error) { /* empty */ }
974
710
  var state = enforceInternalState(value);
975
- if (!hasOwn$6(state, 'source')) {
711
+ if (!hasOwn$8(state, 'source')) {
976
712
  state.source = join$3(TEMPLATE, typeof name == 'string' ? name : '');
977
713
  } return value;
978
714
  };
@@ -980,13 +716,13 @@ var makeBuiltIn$2 = makeBuiltIn$3.exports = function (value, name, options) {
980
716
  // add fake Function#toString for correct work wrapped methods / constructors with methods like LoDash isNative
981
717
  // eslint-disable-next-line no-extend-native -- required
982
718
  Function.prototype.toString = makeBuiltIn$2(function toString() {
983
- return isCallable$a(this) && getInternalState$2(this).source || inspectSource$1(this);
719
+ return isCallable$b(this) && getInternalState$2(this).source || inspectSource$1(this);
984
720
  }, 'toString');
985
721
 
986
722
  var makeBuiltInExports = makeBuiltIn$3.exports;
987
723
 
988
- var isCallable$9 = isCallable$i;
989
- var definePropertyModule$2 = objectDefineProperty;
724
+ var isCallable$a = isCallable$j;
725
+ var definePropertyModule$3 = objectDefineProperty;
990
726
  var makeBuiltIn$1 = makeBuiltInExports;
991
727
  var defineGlobalProperty$1 = defineGlobalProperty$3;
992
728
 
@@ -994,7 +730,7 @@ var defineBuiltIn$9 = function (O, key, value, options) {
994
730
  if (!options) options = {};
995
731
  var simple = options.enumerable;
996
732
  var name = options.name !== undefined ? options.name : key;
997
- if (isCallable$9(value)) makeBuiltIn$1(value, name, options);
733
+ if (isCallable$a(value)) makeBuiltIn$1(value, name, options);
998
734
  if (options.global) {
999
735
  if (simple) O[key] = value;
1000
736
  else defineGlobalProperty$1(key, value);
@@ -1004,7 +740,7 @@ var defineBuiltIn$9 = function (O, key, value, options) {
1004
740
  else if (O[key]) simple = true;
1005
741
  } catch (error) { /* empty */ }
1006
742
  if (simple) O[key] = value;
1007
- else definePropertyModule$2.f(O, key, {
743
+ else definePropertyModule$3.f(O, key, {
1008
744
  value: value,
1009
745
  enumerable: false,
1010
746
  configurable: !options.nonConfigurable,
@@ -1015,16 +751,132 @@ var defineBuiltIn$9 = function (O, key, value, options) {
1015
751
 
1016
752
  var objectGetOwnPropertyNames = {};
1017
753
 
1018
- var internalObjectKeys = objectKeysInternal;
1019
- var enumBugKeys = enumBugKeys$3;
754
+ var ceil = Math.ceil;
755
+ var floor$3 = Math.floor;
756
+
757
+ // `Math.trunc` method
758
+ // https://tc39.es/ecma262/#sec-math.trunc
759
+ // eslint-disable-next-line es/no-math-trunc -- safe
760
+ var mathTrunc = Math.trunc || function trunc(x) {
761
+ var n = +x;
762
+ return (n > 0 ? floor$3 : ceil)(n);
763
+ };
764
+
765
+ var trunc = mathTrunc;
766
+
767
+ // `ToIntegerOrInfinity` abstract operation
768
+ // https://tc39.es/ecma262/#sec-tointegerorinfinity
769
+ var toIntegerOrInfinity$3 = function (argument) {
770
+ var number = +argument;
771
+ // eslint-disable-next-line no-self-compare -- NaN check
772
+ return number !== number || number === 0 ? 0 : trunc(number);
773
+ };
774
+
775
+ var toIntegerOrInfinity$2 = toIntegerOrInfinity$3;
776
+
777
+ var max = Math.max;
778
+ var min$1 = Math.min;
779
+
780
+ // Helper for a popular repeating case of the spec:
781
+ // Let integer be ? ToInteger(index).
782
+ // If integer < 0, let result be max((length + integer), 0); else let result be min(integer, length).
783
+ var toAbsoluteIndex$1 = function (index, length) {
784
+ var integer = toIntegerOrInfinity$2(index);
785
+ return integer < 0 ? max(integer + length, 0) : min$1(integer, length);
786
+ };
787
+
788
+ var toIntegerOrInfinity$1 = toIntegerOrInfinity$3;
789
+
790
+ var min = Math.min;
791
+
792
+ // `ToLength` abstract operation
793
+ // https://tc39.es/ecma262/#sec-tolength
794
+ var toLength$1 = function (argument) {
795
+ var len = toIntegerOrInfinity$1(argument);
796
+ return len > 0 ? min(len, 0x1FFFFFFFFFFFFF) : 0; // 2 ** 53 - 1 == 9007199254740991
797
+ };
798
+
799
+ var toLength = toLength$1;
800
+
801
+ // `LengthOfArrayLike` abstract operation
802
+ // https://tc39.es/ecma262/#sec-lengthofarraylike
803
+ var lengthOfArrayLike$2 = function (obj) {
804
+ return toLength(obj.length);
805
+ };
806
+
807
+ var toIndexedObject$3 = toIndexedObject$5;
808
+ var toAbsoluteIndex = toAbsoluteIndex$1;
809
+ var lengthOfArrayLike$1 = lengthOfArrayLike$2;
810
+
811
+ // `Array.prototype.{ indexOf, includes }` methods implementation
812
+ var createMethod$1 = function (IS_INCLUDES) {
813
+ return function ($this, el, fromIndex) {
814
+ var O = toIndexedObject$3($this);
815
+ var length = lengthOfArrayLike$1(O);
816
+ if (length === 0) return !IS_INCLUDES && -1;
817
+ var index = toAbsoluteIndex(fromIndex, length);
818
+ var value;
819
+ // Array#includes uses SameValueZero equality algorithm
820
+ // eslint-disable-next-line no-self-compare -- NaN check
821
+ if (IS_INCLUDES && el !== el) while (length > index) {
822
+ value = O[index++];
823
+ // eslint-disable-next-line no-self-compare -- NaN check
824
+ if (value !== value) return true;
825
+ // Array#indexOf ignores holes, Array#includes - not
826
+ } else for (;length > index; index++) {
827
+ if ((IS_INCLUDES || index in O) && O[index] === el) return IS_INCLUDES || index || 0;
828
+ } return !IS_INCLUDES && -1;
829
+ };
830
+ };
831
+
832
+ var arrayIncludes = {
833
+ // `Array.prototype.indexOf` method
834
+ // https://tc39.es/ecma262/#sec-array.prototype.indexof
835
+ indexOf: createMethod$1(false)
836
+ };
1020
837
 
1021
- var hiddenKeys = enumBugKeys.concat('length', 'prototype');
838
+ var uncurryThis$g = functionUncurryThis;
839
+ var hasOwn$7 = hasOwnProperty_1;
840
+ var toIndexedObject$2 = toIndexedObject$5;
841
+ var indexOf = arrayIncludes.indexOf;
842
+ var hiddenKeys$2 = hiddenKeys$4;
843
+
844
+ var push$5 = uncurryThis$g([].push);
845
+
846
+ var objectKeysInternal = function (object, names) {
847
+ var O = toIndexedObject$2(object);
848
+ var i = 0;
849
+ var result = [];
850
+ var key;
851
+ for (key in O) !hasOwn$7(hiddenKeys$2, key) && hasOwn$7(O, key) && push$5(result, key);
852
+ // Don't enum bug & hidden keys
853
+ while (names.length > i) if (hasOwn$7(O, key = names[i++])) {
854
+ ~indexOf(result, key) || push$5(result, key);
855
+ }
856
+ return result;
857
+ };
858
+
859
+ // IE8- don't enum bug keys
860
+ var enumBugKeys$3 = [
861
+ 'constructor',
862
+ 'hasOwnProperty',
863
+ 'isPrototypeOf',
864
+ 'propertyIsEnumerable',
865
+ 'toLocaleString',
866
+ 'toString',
867
+ 'valueOf'
868
+ ];
869
+
870
+ var internalObjectKeys$1 = objectKeysInternal;
871
+ var enumBugKeys$2 = enumBugKeys$3;
872
+
873
+ var hiddenKeys$1 = enumBugKeys$2.concat('length', 'prototype');
1022
874
 
1023
875
  // `Object.getOwnPropertyNames` method
1024
876
  // https://tc39.es/ecma262/#sec-object.getownpropertynames
1025
877
  // eslint-disable-next-line es/no-object-getownpropertynames -- safe
1026
878
  objectGetOwnPropertyNames.f = Object.getOwnPropertyNames || function getOwnPropertyNames(O) {
1027
- return internalObjectKeys(O, hiddenKeys);
879
+ return internalObjectKeys$1(O, hiddenKeys$1);
1028
880
  };
1029
881
 
1030
882
  var objectGetOwnPropertySymbols = {};
@@ -1032,40 +884,40 @@ var objectGetOwnPropertySymbols = {};
1032
884
  // eslint-disable-next-line es/no-object-getownpropertysymbols -- safe
1033
885
  objectGetOwnPropertySymbols.f = Object.getOwnPropertySymbols;
1034
886
 
1035
- var getBuiltIn$2 = getBuiltIn$5;
887
+ var getBuiltIn$3 = getBuiltIn$5;
1036
888
  var uncurryThis$f = functionUncurryThis;
1037
889
  var getOwnPropertyNamesModule = objectGetOwnPropertyNames;
1038
890
  var getOwnPropertySymbolsModule$1 = objectGetOwnPropertySymbols;
1039
- var anObject$6 = anObject$a;
891
+ var anObject$a = anObject$c;
1040
892
 
1041
893
  var concat$1 = uncurryThis$f([].concat);
1042
894
 
1043
895
  // all object keys, includes non-enumerable and symbols
1044
- var ownKeys$1 = getBuiltIn$2('Reflect', 'ownKeys') || function ownKeys(it) {
1045
- var keys = getOwnPropertyNamesModule.f(anObject$6(it));
896
+ var ownKeys$1 = getBuiltIn$3('Reflect', 'ownKeys') || function ownKeys(it) {
897
+ var keys = getOwnPropertyNamesModule.f(anObject$a(it));
1046
898
  var getOwnPropertySymbols = getOwnPropertySymbolsModule$1.f;
1047
899
  return getOwnPropertySymbols ? concat$1(keys, getOwnPropertySymbols(it)) : keys;
1048
900
  };
1049
901
 
1050
- var hasOwn$5 = hasOwnProperty_1;
902
+ var hasOwn$6 = hasOwnProperty_1;
1051
903
  var ownKeys = ownKeys$1;
1052
904
  var getOwnPropertyDescriptorModule = objectGetOwnPropertyDescriptor;
1053
- var definePropertyModule$1 = objectDefineProperty;
905
+ var definePropertyModule$2 = objectDefineProperty;
1054
906
 
1055
907
  var copyConstructorProperties$1 = function (target, source, exceptions) {
1056
908
  var keys = ownKeys(source);
1057
- var defineProperty = definePropertyModule$1.f;
909
+ var defineProperty = definePropertyModule$2.f;
1058
910
  var getOwnPropertyDescriptor = getOwnPropertyDescriptorModule.f;
1059
911
  for (var i = 0; i < keys.length; i++) {
1060
912
  var key = keys[i];
1061
- if (!hasOwn$5(target, key) && !(exceptions && hasOwn$5(exceptions, key))) {
913
+ if (!hasOwn$6(target, key) && !(exceptions && hasOwn$6(exceptions, key))) {
1062
914
  defineProperty(target, key, getOwnPropertyDescriptor(source, key));
1063
915
  }
1064
916
  }
1065
917
  };
1066
918
 
1067
- var fails$7 = fails$f;
1068
- var isCallable$8 = isCallable$i;
919
+ var fails$8 = fails$g;
920
+ var isCallable$9 = isCallable$j;
1069
921
 
1070
922
  var replacement = /#|\.prototype\./;
1071
923
 
@@ -1073,7 +925,7 @@ var isForced$1 = function (feature, detection) {
1073
925
  var value = data[normalize(feature)];
1074
926
  return value === POLYFILL ? true
1075
927
  : value === NATIVE ? false
1076
- : isCallable$8(detection) ? fails$7(detection)
928
+ : isCallable$9(detection) ? fails$8(detection)
1077
929
  : !!detection;
1078
930
  };
1079
931
 
@@ -1087,9 +939,9 @@ var POLYFILL = isForced$1.POLYFILL = 'P';
1087
939
 
1088
940
  var isForced_1 = isForced$1;
1089
941
 
1090
- var global$5 = global$e;
942
+ var global$6 = global$f;
1091
943
  var getOwnPropertyDescriptor$1 = objectGetOwnPropertyDescriptor.f;
1092
- var createNonEnumerableProperty$2 = createNonEnumerableProperty$4;
944
+ var createNonEnumerableProperty$3 = createNonEnumerableProperty$5;
1093
945
  var defineBuiltIn$8 = defineBuiltIn$9;
1094
946
  var defineGlobalProperty = defineGlobalProperty$3;
1095
947
  var copyConstructorProperties = copyConstructorProperties$1;
@@ -1116,11 +968,11 @@ var _export = function (options, source) {
1116
968
  var STATIC = options.stat;
1117
969
  var FORCED, target, key, targetProperty, sourceProperty, descriptor;
1118
970
  if (GLOBAL) {
1119
- target = global$5;
971
+ target = global$6;
1120
972
  } else if (STATIC) {
1121
- target = global$5[TARGET] || defineGlobalProperty(TARGET, {});
973
+ target = global$6[TARGET] || defineGlobalProperty(TARGET, {});
1122
974
  } else {
1123
- target = global$5[TARGET] && global$5[TARGET].prototype;
975
+ target = global$6[TARGET] && global$6[TARGET].prototype;
1124
976
  }
1125
977
  if (target) for (key in source) {
1126
978
  sourceProperty = source[key];
@@ -1136,56 +988,204 @@ var _export = function (options, source) {
1136
988
  }
1137
989
  // add a flag to not completely full polyfills
1138
990
  if (options.sham || (targetProperty && targetProperty.sham)) {
1139
- createNonEnumerableProperty$2(sourceProperty, 'sham', true);
991
+ createNonEnumerableProperty$3(sourceProperty, 'sham', true);
1140
992
  }
1141
993
  defineBuiltIn$8(target, key, sourceProperty, options);
1142
994
  }
1143
995
  };
1144
996
 
1145
- var fails$6 = fails$f;
997
+ var isPrototypeOf$1 = objectIsPrototypeOf;
998
+
999
+ var $TypeError$4 = TypeError;
1000
+
1001
+ var anInstance$3 = function (it, Prototype) {
1002
+ if (isPrototypeOf$1(Prototype, it)) return it;
1003
+ throw new $TypeError$4('Incorrect invocation');
1004
+ };
1005
+
1006
+ var fails$7 = fails$g;
1007
+
1008
+ var correctPrototypeGetter = !fails$7(function () {
1009
+ function F() { /* empty */ }
1010
+ F.prototype.constructor = null;
1011
+ // eslint-disable-next-line es/no-object-getprototypeof -- required for testing
1012
+ return Object.getPrototypeOf(new F()) !== F.prototype;
1013
+ });
1014
+
1015
+ var hasOwn$5 = hasOwnProperty_1;
1016
+ var isCallable$8 = isCallable$j;
1017
+ var toObject$2 = toObject$4;
1018
+ var sharedKey$1 = sharedKey$3;
1019
+ var CORRECT_PROTOTYPE_GETTER = correctPrototypeGetter;
1020
+
1021
+ var IE_PROTO$1 = sharedKey$1('IE_PROTO');
1022
+ var $Object$1 = Object;
1023
+ var ObjectPrototype = $Object$1.prototype;
1024
+
1025
+ // `Object.getPrototypeOf` method
1026
+ // https://tc39.es/ecma262/#sec-object.getprototypeof
1027
+ // eslint-disable-next-line es/no-object-getprototypeof -- safe
1028
+ var objectGetPrototypeOf = CORRECT_PROTOTYPE_GETTER ? $Object$1.getPrototypeOf : function (O) {
1029
+ var object = toObject$2(O);
1030
+ if (hasOwn$5(object, IE_PROTO$1)) return object[IE_PROTO$1];
1031
+ var constructor = object.constructor;
1032
+ if (isCallable$8(constructor) && object instanceof constructor) {
1033
+ return constructor.prototype;
1034
+ } return object instanceof $Object$1 ? ObjectPrototype : null;
1035
+ };
1036
+
1037
+ var makeBuiltIn = makeBuiltInExports;
1038
+ var defineProperty$4 = objectDefineProperty;
1039
+
1040
+ var defineBuiltInAccessor$4 = function (target, name, descriptor) {
1041
+ if (descriptor.get) makeBuiltIn(descriptor.get, name, { getter: true });
1042
+ if (descriptor.set) makeBuiltIn(descriptor.set, name, { setter: true });
1043
+ return defineProperty$4.f(target, name, descriptor);
1044
+ };
1045
+
1046
+ var DESCRIPTORS$9 = descriptors;
1047
+ var definePropertyModule$1 = objectDefineProperty;
1048
+ var createPropertyDescriptor$2 = createPropertyDescriptor$5;
1049
+
1050
+ var createProperty$2 = function (object, key, value) {
1051
+ if (DESCRIPTORS$9) definePropertyModule$1.f(object, key, createPropertyDescriptor$2(0, value));
1052
+ else object[key] = value;
1053
+ };
1054
+
1055
+ var objectDefineProperties = {};
1056
+
1057
+ var internalObjectKeys = objectKeysInternal;
1058
+ var enumBugKeys$1 = enumBugKeys$3;
1059
+
1060
+ // `Object.keys` method
1061
+ // https://tc39.es/ecma262/#sec-object.keys
1062
+ // eslint-disable-next-line es/no-object-keys -- safe
1063
+ var objectKeys$2 = Object.keys || function keys(O) {
1064
+ return internalObjectKeys(O, enumBugKeys$1);
1065
+ };
1066
+
1067
+ var DESCRIPTORS$8 = descriptors;
1068
+ var V8_PROTOTYPE_DEFINE_BUG = v8PrototypeDefineBug;
1069
+ var definePropertyModule = objectDefineProperty;
1070
+ var anObject$9 = anObject$c;
1071
+ var toIndexedObject$1 = toIndexedObject$5;
1072
+ var objectKeys$1 = objectKeys$2;
1073
+
1074
+ // `Object.defineProperties` method
1075
+ // https://tc39.es/ecma262/#sec-object.defineproperties
1076
+ // eslint-disable-next-line es/no-object-defineproperties -- safe
1077
+ objectDefineProperties.f = DESCRIPTORS$8 && !V8_PROTOTYPE_DEFINE_BUG ? Object.defineProperties : function defineProperties(O, Properties) {
1078
+ anObject$9(O);
1079
+ var props = toIndexedObject$1(Properties);
1080
+ var keys = objectKeys$1(Properties);
1081
+ var length = keys.length;
1082
+ var index = 0;
1083
+ var key;
1084
+ while (length > index) definePropertyModule.f(O, key = keys[index++], props[key]);
1085
+ return O;
1086
+ };
1087
+
1088
+ var getBuiltIn$2 = getBuiltIn$5;
1089
+
1090
+ var html$1 = getBuiltIn$2('document', 'documentElement');
1091
+
1092
+ /* global ActiveXObject -- old IE, WSH */
1093
+ var anObject$8 = anObject$c;
1094
+ var definePropertiesModule = objectDefineProperties;
1095
+ var enumBugKeys = enumBugKeys$3;
1096
+ var hiddenKeys = hiddenKeys$4;
1097
+ var html = html$1;
1098
+ var documentCreateElement$1 = documentCreateElement$2;
1099
+ var sharedKey = sharedKey$3;
1100
+
1101
+ var GT = '>';
1102
+ var LT = '<';
1103
+ var PROTOTYPE = 'prototype';
1104
+ var SCRIPT = 'script';
1105
+ var IE_PROTO = sharedKey('IE_PROTO');
1106
+
1107
+ var EmptyConstructor = function () { /* empty */ };
1108
+
1109
+ var scriptTag = function (content) {
1110
+ return LT + SCRIPT + GT + content + LT + '/' + SCRIPT + GT;
1111
+ };
1112
+
1113
+ // Create object with fake `null` prototype: use ActiveX Object with cleared prototype
1114
+ var NullProtoObjectViaActiveX = function (activeXDocument) {
1115
+ activeXDocument.write(scriptTag(''));
1116
+ activeXDocument.close();
1117
+ var temp = activeXDocument.parentWindow.Object;
1118
+ activeXDocument = null; // avoid memory leak
1119
+ return temp;
1120
+ };
1146
1121
 
1147
- var correctPrototypeGetter = !fails$6(function () {
1148
- function F() { /* empty */ }
1149
- F.prototype.constructor = null;
1150
- // eslint-disable-next-line es/no-object-getprototypeof -- required for testing
1151
- return Object.getPrototypeOf(new F()) !== F.prototype;
1152
- });
1122
+ // Create object with fake `null` prototype: use iframe Object with cleared prototype
1123
+ var NullProtoObjectViaIFrame = function () {
1124
+ // Thrash, waste and sodomy: IE GC bug
1125
+ var iframe = documentCreateElement$1('iframe');
1126
+ var JS = 'java' + SCRIPT + ':';
1127
+ var iframeDocument;
1128
+ iframe.style.display = 'none';
1129
+ html.appendChild(iframe);
1130
+ // https://github.com/zloirock/core-js/issues/475
1131
+ iframe.src = String(JS);
1132
+ iframeDocument = iframe.contentWindow.document;
1133
+ iframeDocument.open();
1134
+ iframeDocument.write(scriptTag('document.F=Object'));
1135
+ iframeDocument.close();
1136
+ return iframeDocument.F;
1137
+ };
1153
1138
 
1154
- var hasOwn$4 = hasOwnProperty_1;
1155
- var isCallable$7 = isCallable$i;
1156
- var toObject$2 = toObject$4;
1157
- var sharedKey = sharedKey$3;
1158
- var CORRECT_PROTOTYPE_GETTER = correctPrototypeGetter;
1139
+ // Check for document.domain and active x support
1140
+ // No need to use active x approach when document.domain is not set
1141
+ // see https://github.com/es-shims/es5-shim/issues/150
1142
+ // variation of https://github.com/kitcambridge/es5-shim/commit/4f738ac066346
1143
+ // avoid IE GC bug
1144
+ var activeXDocument;
1145
+ var NullProtoObject = function () {
1146
+ try {
1147
+ activeXDocument = new ActiveXObject('htmlfile');
1148
+ } catch (error) { /* ignore */ }
1149
+ NullProtoObject = typeof document != 'undefined'
1150
+ ? document.domain && activeXDocument
1151
+ ? NullProtoObjectViaActiveX(activeXDocument) // old IE
1152
+ : NullProtoObjectViaIFrame()
1153
+ : NullProtoObjectViaActiveX(activeXDocument); // WSH
1154
+ var length = enumBugKeys.length;
1155
+ while (length--) delete NullProtoObject[PROTOTYPE][enumBugKeys[length]];
1156
+ return NullProtoObject();
1157
+ };
1159
1158
 
1160
- var IE_PROTO = sharedKey('IE_PROTO');
1161
- var $Object$1 = Object;
1162
- var ObjectPrototype = $Object$1.prototype;
1159
+ hiddenKeys[IE_PROTO] = true;
1163
1160
 
1164
- // `Object.getPrototypeOf` method
1165
- // https://tc39.es/ecma262/#sec-object.getprototypeof
1166
- // eslint-disable-next-line es/no-object-getprototypeof -- safe
1167
- var objectGetPrototypeOf = CORRECT_PROTOTYPE_GETTER ? $Object$1.getPrototypeOf : function (O) {
1168
- var object = toObject$2(O);
1169
- if (hasOwn$4(object, IE_PROTO)) return object[IE_PROTO];
1170
- var constructor = object.constructor;
1171
- if (isCallable$7(constructor) && object instanceof constructor) {
1172
- return constructor.prototype;
1173
- } return object instanceof $Object$1 ? ObjectPrototype : null;
1161
+ // `Object.create` method
1162
+ // https://tc39.es/ecma262/#sec-object.create
1163
+ // eslint-disable-next-line es/no-object-create -- safe
1164
+ var objectCreate = Object.create || function create(O, Properties) {
1165
+ var result;
1166
+ if (O !== null) {
1167
+ EmptyConstructor[PROTOTYPE] = anObject$8(O);
1168
+ result = new EmptyConstructor();
1169
+ EmptyConstructor[PROTOTYPE] = null;
1170
+ // add "__proto__" for Object.getPrototypeOf polyfill
1171
+ result[IE_PROTO] = O;
1172
+ } else result = NullProtoObject();
1173
+ return Properties === undefined ? result : definePropertiesModule.f(result, Properties);
1174
1174
  };
1175
1175
 
1176
- var fails$5 = fails$f;
1177
- var isCallable$6 = isCallable$i;
1176
+ var fails$6 = fails$g;
1177
+ var isCallable$7 = isCallable$j;
1178
1178
  var isObject$3 = isObject$9;
1179
- var getPrototypeOf$1 = objectGetPrototypeOf;
1179
+ var getPrototypeOf$2 = objectGetPrototypeOf;
1180
1180
  var defineBuiltIn$7 = defineBuiltIn$9;
1181
- var wellKnownSymbol$9 = wellKnownSymbol$c;
1181
+ var wellKnownSymbol$c = wellKnownSymbol$e;
1182
1182
 
1183
- var ITERATOR$6 = wellKnownSymbol$9('iterator');
1183
+ var ITERATOR$7 = wellKnownSymbol$c('iterator');
1184
1184
  var BUGGY_SAFARI_ITERATORS$1 = false;
1185
1185
 
1186
1186
  // `%IteratorPrototype%` object
1187
1187
  // https://tc39.es/ecma262/#sec-%iteratorprototype%-object
1188
- var IteratorPrototype$2, PrototypeOfArrayIteratorPrototype, arrayIterator;
1188
+ var IteratorPrototype$4, PrototypeOfArrayIteratorPrototype, arrayIterator;
1189
1189
 
1190
1190
  /* eslint-disable es/no-array-prototype-keys -- safe */
1191
1191
  if ([].keys) {
@@ -1193,48 +1193,303 @@ if ([].keys) {
1193
1193
  // Safari 8 has buggy iterators w/o `next`
1194
1194
  if (!('next' in arrayIterator)) BUGGY_SAFARI_ITERATORS$1 = true;
1195
1195
  else {
1196
- PrototypeOfArrayIteratorPrototype = getPrototypeOf$1(getPrototypeOf$1(arrayIterator));
1197
- if (PrototypeOfArrayIteratorPrototype !== Object.prototype) IteratorPrototype$2 = PrototypeOfArrayIteratorPrototype;
1196
+ PrototypeOfArrayIteratorPrototype = getPrototypeOf$2(getPrototypeOf$2(arrayIterator));
1197
+ if (PrototypeOfArrayIteratorPrototype !== Object.prototype) IteratorPrototype$4 = PrototypeOfArrayIteratorPrototype;
1198
1198
  }
1199
1199
  }
1200
1200
 
1201
- var NEW_ITERATOR_PROTOTYPE = !isObject$3(IteratorPrototype$2) || fails$5(function () {
1201
+ var NEW_ITERATOR_PROTOTYPE = !isObject$3(IteratorPrototype$4) || fails$6(function () {
1202
1202
  var test = {};
1203
1203
  // FF44- legacy iterators case
1204
- return IteratorPrototype$2[ITERATOR$6].call(test) !== test;
1204
+ return IteratorPrototype$4[ITERATOR$7].call(test) !== test;
1205
1205
  });
1206
1206
 
1207
- if (NEW_ITERATOR_PROTOTYPE) IteratorPrototype$2 = {};
1207
+ if (NEW_ITERATOR_PROTOTYPE) IteratorPrototype$4 = {};
1208
1208
 
1209
1209
  // `%IteratorPrototype%[@@iterator]()` method
1210
1210
  // https://tc39.es/ecma262/#sec-%iteratorprototype%-@@iterator
1211
- if (!isCallable$6(IteratorPrototype$2[ITERATOR$6])) {
1212
- defineBuiltIn$7(IteratorPrototype$2, ITERATOR$6, function () {
1211
+ if (!isCallable$7(IteratorPrototype$4[ITERATOR$7])) {
1212
+ defineBuiltIn$7(IteratorPrototype$4, ITERATOR$7, function () {
1213
1213
  return this;
1214
1214
  });
1215
1215
  }
1216
1216
 
1217
1217
  var iteratorsCore = {
1218
- IteratorPrototype: IteratorPrototype$2,
1218
+ IteratorPrototype: IteratorPrototype$4,
1219
1219
  BUGGY_SAFARI_ITERATORS: BUGGY_SAFARI_ITERATORS$1
1220
1220
  };
1221
1221
 
1222
+ var $$7 = _export;
1223
+ var global$5 = global$f;
1224
+ var anInstance$2 = anInstance$3;
1225
+ var anObject$7 = anObject$c;
1226
+ var isCallable$6 = isCallable$j;
1227
+ var getPrototypeOf$1 = objectGetPrototypeOf;
1228
+ var defineBuiltInAccessor$3 = defineBuiltInAccessor$4;
1229
+ var createProperty$1 = createProperty$2;
1230
+ var fails$5 = fails$g;
1231
+ var hasOwn$4 = hasOwnProperty_1;
1232
+ var wellKnownSymbol$b = wellKnownSymbol$e;
1233
+ var IteratorPrototype$3 = iteratorsCore.IteratorPrototype;
1234
+ var DESCRIPTORS$7 = descriptors;
1235
+
1236
+ var CONSTRUCTOR = 'constructor';
1237
+ var ITERATOR$6 = 'Iterator';
1238
+ var TO_STRING_TAG$4 = wellKnownSymbol$b('toStringTag');
1239
+
1240
+ var $TypeError$3 = TypeError;
1241
+ var NativeIterator = global$5[ITERATOR$6];
1242
+
1243
+ // FF56- have non-standard global helper `Iterator`
1244
+ var FORCED = !isCallable$6(NativeIterator)
1245
+ || NativeIterator.prototype !== IteratorPrototype$3
1246
+ // FF44- non-standard `Iterator` passes previous tests
1247
+ || !fails$5(function () { NativeIterator({}); });
1248
+
1249
+ var IteratorConstructor = function Iterator() {
1250
+ anInstance$2(this, IteratorPrototype$3);
1251
+ if (getPrototypeOf$1(this) === IteratorPrototype$3) throw new $TypeError$3('Abstract class Iterator not directly constructable');
1252
+ };
1253
+
1254
+ var defineIteratorPrototypeAccessor = function (key, value) {
1255
+ if (DESCRIPTORS$7) {
1256
+ defineBuiltInAccessor$3(IteratorPrototype$3, key, {
1257
+ configurable: true,
1258
+ get: function () {
1259
+ return value;
1260
+ },
1261
+ set: function (replacement) {
1262
+ anObject$7(this);
1263
+ if (this === IteratorPrototype$3) throw new $TypeError$3("You can't redefine this property");
1264
+ if (hasOwn$4(this, key)) this[key] = replacement;
1265
+ else createProperty$1(this, key, replacement);
1266
+ }
1267
+ });
1268
+ } else IteratorPrototype$3[key] = value;
1269
+ };
1270
+
1271
+ if (!hasOwn$4(IteratorPrototype$3, TO_STRING_TAG$4)) defineIteratorPrototypeAccessor(TO_STRING_TAG$4, ITERATOR$6);
1272
+
1273
+ if (FORCED || !hasOwn$4(IteratorPrototype$3, CONSTRUCTOR) || IteratorPrototype$3[CONSTRUCTOR] === Object) {
1274
+ defineIteratorPrototypeAccessor(CONSTRUCTOR, IteratorConstructor);
1275
+ }
1276
+
1277
+ IteratorConstructor.prototype = IteratorPrototype$3;
1278
+
1279
+ // `Iterator` constructor
1280
+ // https://github.com/tc39/proposal-iterator-helpers
1281
+ $$7({ global: true, constructor: true, forced: FORCED }, {
1282
+ Iterator: IteratorConstructor
1283
+ });
1284
+
1285
+ // `GetIteratorDirect(obj)` abstract operation
1286
+ // https://tc39.es/proposal-iterator-helpers/#sec-getiteratordirect
1287
+ var getIteratorDirect$1 = function (obj) {
1288
+ return {
1289
+ iterator: obj,
1290
+ next: obj.next,
1291
+ done: false
1292
+ };
1293
+ };
1294
+
1295
+ var defineBuiltIn$6 = defineBuiltIn$9;
1296
+
1297
+ var defineBuiltIns$2 = function (target, src, options) {
1298
+ for (var key in src) defineBuiltIn$6(target, key, src[key], options);
1299
+ return target;
1300
+ };
1301
+
1302
+ // `CreateIterResultObject` abstract operation
1303
+ // https://tc39.es/ecma262/#sec-createiterresultobject
1304
+ var createIterResultObject$4 = function (value, done) {
1305
+ return { value: value, done: done };
1306
+ };
1307
+
1308
+ var call$b = functionCall;
1309
+ var anObject$6 = anObject$c;
1310
+ var getMethod$2 = getMethod$4;
1311
+
1312
+ var iteratorClose$2 = function (iterator, kind, value) {
1313
+ var innerResult, innerError;
1314
+ anObject$6(iterator);
1315
+ try {
1316
+ innerResult = getMethod$2(iterator, 'return');
1317
+ if (!innerResult) {
1318
+ if (kind === 'throw') throw value;
1319
+ return value;
1320
+ }
1321
+ innerResult = call$b(innerResult, iterator);
1322
+ } catch (error) {
1323
+ innerError = true;
1324
+ innerResult = error;
1325
+ }
1326
+ if (kind === 'throw') throw value;
1327
+ if (innerError) throw innerResult;
1328
+ anObject$6(innerResult);
1329
+ return value;
1330
+ };
1331
+
1332
+ var call$a = functionCall;
1333
+ var create$3 = objectCreate;
1334
+ var createNonEnumerableProperty$2 = createNonEnumerableProperty$5;
1335
+ var defineBuiltIns$1 = defineBuiltIns$2;
1336
+ var wellKnownSymbol$a = wellKnownSymbol$e;
1337
+ var InternalStateModule$4 = internalState;
1338
+ var getMethod$1 = getMethod$4;
1339
+ var IteratorPrototype$2 = iteratorsCore.IteratorPrototype;
1340
+ var createIterResultObject$3 = createIterResultObject$4;
1341
+ var iteratorClose$1 = iteratorClose$2;
1342
+
1343
+ var TO_STRING_TAG$3 = wellKnownSymbol$a('toStringTag');
1344
+ var ITERATOR_HELPER = 'IteratorHelper';
1345
+ var WRAP_FOR_VALID_ITERATOR = 'WrapForValidIterator';
1346
+ var setInternalState$4 = InternalStateModule$4.set;
1347
+
1348
+ var createIteratorProxyPrototype = function (IS_ITERATOR) {
1349
+ var getInternalState = InternalStateModule$4.getterFor(IS_ITERATOR ? WRAP_FOR_VALID_ITERATOR : ITERATOR_HELPER);
1350
+
1351
+ return defineBuiltIns$1(create$3(IteratorPrototype$2), {
1352
+ next: function next() {
1353
+ var state = getInternalState(this);
1354
+ // for simplification:
1355
+ // for `%WrapForValidIteratorPrototype%.next` our `nextHandler` returns `IterResultObject`
1356
+ // for `%IteratorHelperPrototype%.next` - just a value
1357
+ if (IS_ITERATOR) return state.nextHandler();
1358
+ try {
1359
+ var result = state.done ? undefined : state.nextHandler();
1360
+ return createIterResultObject$3(result, state.done);
1361
+ } catch (error) {
1362
+ state.done = true;
1363
+ throw error;
1364
+ }
1365
+ },
1366
+ 'return': function () {
1367
+ var state = getInternalState(this);
1368
+ var iterator = state.iterator;
1369
+ state.done = true;
1370
+ if (IS_ITERATOR) {
1371
+ var returnMethod = getMethod$1(iterator, 'return');
1372
+ return returnMethod ? call$a(returnMethod, iterator) : createIterResultObject$3(undefined, true);
1373
+ }
1374
+ if (state.inner) try {
1375
+ iteratorClose$1(state.inner.iterator, 'normal');
1376
+ } catch (error) {
1377
+ return iteratorClose$1(iterator, 'throw', error);
1378
+ }
1379
+ iteratorClose$1(iterator, 'normal');
1380
+ return createIterResultObject$3(undefined, true);
1381
+ }
1382
+ });
1383
+ };
1384
+
1385
+ var WrapForValidIteratorPrototype = createIteratorProxyPrototype(true);
1386
+ var IteratorHelperPrototype = createIteratorProxyPrototype(false);
1387
+
1388
+ createNonEnumerableProperty$2(IteratorHelperPrototype, TO_STRING_TAG$3, 'Iterator Helper');
1389
+
1390
+ var iteratorCreateProxy = function (nextHandler, IS_ITERATOR) {
1391
+ var IteratorProxy = function Iterator(record, state) {
1392
+ if (state) {
1393
+ state.iterator = record.iterator;
1394
+ state.next = record.next;
1395
+ } else state = record;
1396
+ state.type = IS_ITERATOR ? WRAP_FOR_VALID_ITERATOR : ITERATOR_HELPER;
1397
+ state.nextHandler = nextHandler;
1398
+ state.counter = 0;
1399
+ state.done = false;
1400
+ setInternalState$4(this, state);
1401
+ };
1402
+
1403
+ IteratorProxy.prototype = IS_ITERATOR ? WrapForValidIteratorPrototype : IteratorHelperPrototype;
1404
+
1405
+ return IteratorProxy;
1406
+ };
1407
+
1408
+ var anObject$5 = anObject$c;
1409
+ var iteratorClose = iteratorClose$2;
1410
+
1411
+ // call something on iterator step with safe closing on error
1412
+ var callWithSafeIterationClosing$2 = function (iterator, fn, value, ENTRIES) {
1413
+ try {
1414
+ return ENTRIES ? fn(anObject$5(value)[0], value[1]) : fn(value);
1415
+ } catch (error) {
1416
+ iteratorClose(iterator, 'throw', error);
1417
+ }
1418
+ };
1419
+
1420
+ var call$9 = functionCall;
1421
+ var aCallable$3 = aCallable$5;
1422
+ var anObject$4 = anObject$c;
1423
+ var getIteratorDirect = getIteratorDirect$1;
1424
+ var createIteratorProxy = iteratorCreateProxy;
1425
+ var callWithSafeIterationClosing$1 = callWithSafeIterationClosing$2;
1426
+
1427
+ var IteratorProxy = createIteratorProxy(function () {
1428
+ var iterator = this.iterator;
1429
+ var result = anObject$4(call$9(this.next, iterator));
1430
+ var done = this.done = !!result.done;
1431
+ if (!done) return callWithSafeIterationClosing$1(iterator, this.mapper, [result.value, this.counter++], true);
1432
+ });
1433
+
1434
+ // `Iterator.prototype.map` method
1435
+ // https://github.com/tc39/proposal-iterator-helpers
1436
+ var iteratorMap = function map(mapper) {
1437
+ anObject$4(this);
1438
+ aCallable$3(mapper);
1439
+ return new IteratorProxy(getIteratorDirect(this), {
1440
+ mapper: mapper
1441
+ });
1442
+ };
1443
+
1444
+ var $$6 = _export;
1445
+ var map = iteratorMap;
1446
+ var IS_PURE$1 = isPure;
1447
+
1448
+ // `Iterator.prototype.map` method
1449
+ // https://github.com/tc39/proposal-iterator-helpers
1450
+ $$6({ target: 'Iterator', proto: true, real: true, forced: IS_PURE$1 }, {
1451
+ map: map
1452
+ });
1453
+
1454
+ var wellKnownSymbol$9 = wellKnownSymbol$e;
1455
+ var create$2 = objectCreate;
1222
1456
  var defineProperty$3 = objectDefineProperty.f;
1457
+
1458
+ var UNSCOPABLES = wellKnownSymbol$9('unscopables');
1459
+ var ArrayPrototype$1 = Array.prototype;
1460
+
1461
+ // Array.prototype[@@unscopables]
1462
+ // https://tc39.es/ecma262/#sec-array.prototype-@@unscopables
1463
+ if (ArrayPrototype$1[UNSCOPABLES] === undefined) {
1464
+ defineProperty$3(ArrayPrototype$1, UNSCOPABLES, {
1465
+ configurable: true,
1466
+ value: create$2(null)
1467
+ });
1468
+ }
1469
+
1470
+ // add a key to Array.prototype[@@unscopables]
1471
+ var addToUnscopables$1 = function (key) {
1472
+ ArrayPrototype$1[UNSCOPABLES][key] = true;
1473
+ };
1474
+
1475
+ var iterators = {};
1476
+
1477
+ var defineProperty$2 = objectDefineProperty.f;
1223
1478
  var hasOwn$3 = hasOwnProperty_1;
1224
- var wellKnownSymbol$8 = wellKnownSymbol$c;
1479
+ var wellKnownSymbol$8 = wellKnownSymbol$e;
1225
1480
 
1226
1481
  var TO_STRING_TAG$2 = wellKnownSymbol$8('toStringTag');
1227
1482
 
1228
1483
  var setToStringTag$5 = function (target, TAG, STATIC) {
1229
1484
  if (target && !STATIC) target = target.prototype;
1230
1485
  if (target && !hasOwn$3(target, TO_STRING_TAG$2)) {
1231
- defineProperty$3(target, TO_STRING_TAG$2, { configurable: true, value: TAG });
1486
+ defineProperty$2(target, TO_STRING_TAG$2, { configurable: true, value: TAG });
1232
1487
  }
1233
1488
  };
1234
1489
 
1235
1490
  var IteratorPrototype$1 = iteratorsCore.IteratorPrototype;
1236
1491
  var create$1 = objectCreate;
1237
- var createPropertyDescriptor$2 = createPropertyDescriptor$5;
1492
+ var createPropertyDescriptor$1 = createPropertyDescriptor$5;
1238
1493
  var setToStringTag$4 = setToStringTag$5;
1239
1494
  var Iterators$4 = iterators;
1240
1495
 
@@ -1242,14 +1497,14 @@ var returnThis$1 = function () { return this; };
1242
1497
 
1243
1498
  var iteratorCreateConstructor = function (IteratorConstructor, NAME, next, ENUMERABLE_NEXT) {
1244
1499
  var TO_STRING_TAG = NAME + ' Iterator';
1245
- IteratorConstructor.prototype = create$1(IteratorPrototype$1, { next: createPropertyDescriptor$2(+!ENUMERABLE_NEXT, next) });
1500
+ IteratorConstructor.prototype = create$1(IteratorPrototype$1, { next: createPropertyDescriptor$1(+!ENUMERABLE_NEXT, next) });
1246
1501
  setToStringTag$4(IteratorConstructor, TO_STRING_TAG, false);
1247
1502
  Iterators$4[TO_STRING_TAG] = returnThis$1;
1248
1503
  return IteratorConstructor;
1249
1504
  };
1250
1505
 
1251
1506
  var uncurryThis$e = functionUncurryThis;
1252
- var aCallable$2 = aCallable$4;
1507
+ var aCallable$2 = aCallable$5;
1253
1508
 
1254
1509
  var functionUncurryThisAccessor = function (object, key, method) {
1255
1510
  try {
@@ -1267,11 +1522,11 @@ var isPossiblePrototype$1 = function (argument) {
1267
1522
  var isPossiblePrototype = isPossiblePrototype$1;
1268
1523
 
1269
1524
  var $String$2 = String;
1270
- var $TypeError$3 = TypeError;
1525
+ var $TypeError$2 = TypeError;
1271
1526
 
1272
1527
  var aPossiblePrototype$1 = function (argument) {
1273
1528
  if (isPossiblePrototype(argument)) return argument;
1274
- throw new $TypeError$3("Can't set " + $String$2(argument) + ' as a prototype');
1529
+ throw new $TypeError$2("Can't set " + $String$2(argument) + ' as a prototype');
1275
1530
  };
1276
1531
 
1277
1532
  /* eslint-disable no-proto -- safe */
@@ -1304,16 +1559,16 @@ var objectSetPrototypeOf = Object.setPrototypeOf || ('__proto__' in {} ? functio
1304
1559
  }() : undefined);
1305
1560
 
1306
1561
  var $$5 = _export;
1307
- var call$9 = functionCall;
1562
+ var call$8 = functionCall;
1308
1563
  var FunctionName = functionName;
1309
- var isCallable$5 = isCallable$i;
1564
+ var isCallable$5 = isCallable$j;
1310
1565
  var createIteratorConstructor$1 = iteratorCreateConstructor;
1311
1566
  var getPrototypeOf = objectGetPrototypeOf;
1312
1567
  var setPrototypeOf = objectSetPrototypeOf;
1313
1568
  var setToStringTag$3 = setToStringTag$5;
1314
- var createNonEnumerableProperty$1 = createNonEnumerableProperty$4;
1315
- var defineBuiltIn$6 = defineBuiltIn$9;
1316
- var wellKnownSymbol$7 = wellKnownSymbol$c;
1569
+ var createNonEnumerableProperty$1 = createNonEnumerableProperty$5;
1570
+ var defineBuiltIn$5 = defineBuiltIn$9;
1571
+ var wellKnownSymbol$7 = wellKnownSymbol$e;
1317
1572
  var Iterators$3 = iterators;
1318
1573
  var IteratorsCore = iteratorsCore;
1319
1574
 
@@ -1362,7 +1617,7 @@ var iteratorDefine = function (Iterable, NAME, IteratorConstructor, next, DEFAUL
1362
1617
  if (setPrototypeOf) {
1363
1618
  setPrototypeOf(CurrentIteratorPrototype, IteratorPrototype);
1364
1619
  } else if (!isCallable$5(CurrentIteratorPrototype[ITERATOR$5])) {
1365
- defineBuiltIn$6(CurrentIteratorPrototype, ITERATOR$5, returnThis);
1620
+ defineBuiltIn$5(CurrentIteratorPrototype, ITERATOR$5, returnThis);
1366
1621
  }
1367
1622
  }
1368
1623
  // Set @@toStringTag to native iterators
@@ -1376,7 +1631,7 @@ var iteratorDefine = function (Iterable, NAME, IteratorConstructor, next, DEFAUL
1376
1631
  createNonEnumerableProperty$1(IterablePrototype, 'name', VALUES);
1377
1632
  } else {
1378
1633
  INCORRECT_VALUES_NAME = true;
1379
- defaultIterator = function values() { return call$9(nativeIterator, this); };
1634
+ defaultIterator = function values() { return call$8(nativeIterator, this); };
1380
1635
  }
1381
1636
  }
1382
1637
 
@@ -1389,34 +1644,28 @@ var iteratorDefine = function (Iterable, NAME, IteratorConstructor, next, DEFAUL
1389
1644
  };
1390
1645
  if (FORCED) for (KEY in methods) {
1391
1646
  if (BUGGY_SAFARI_ITERATORS || INCORRECT_VALUES_NAME || !(KEY in IterablePrototype)) {
1392
- defineBuiltIn$6(IterablePrototype, KEY, methods[KEY]);
1647
+ defineBuiltIn$5(IterablePrototype, KEY, methods[KEY]);
1393
1648
  }
1394
1649
  } else $$5({ target: NAME, proto: true, forced: BUGGY_SAFARI_ITERATORS || INCORRECT_VALUES_NAME }, methods);
1395
1650
  }
1396
1651
 
1397
1652
  // define iterator
1398
1653
  if (IterablePrototype[ITERATOR$5] !== defaultIterator) {
1399
- defineBuiltIn$6(IterablePrototype, ITERATOR$5, defaultIterator, { name: DEFAULT });
1654
+ defineBuiltIn$5(IterablePrototype, ITERATOR$5, defaultIterator, { name: DEFAULT });
1400
1655
  }
1401
1656
  Iterators$3[NAME] = defaultIterator;
1402
1657
 
1403
1658
  return methods;
1404
1659
  };
1405
1660
 
1406
- // `CreateIterResultObject` abstract operation
1407
- // https://tc39.es/ecma262/#sec-createiterresultobject
1408
- var createIterResultObject$3 = function (value, done) {
1409
- return { value: value, done: done };
1410
- };
1411
-
1412
1661
  var toIndexedObject = toIndexedObject$5;
1413
1662
  var addToUnscopables = addToUnscopables$1;
1414
1663
  var Iterators$2 = iterators;
1415
1664
  var InternalStateModule$3 = internalState;
1416
- var defineProperty$2 = objectDefineProperty.f;
1665
+ var defineProperty$1 = objectDefineProperty.f;
1417
1666
  var defineIterator$1 = iteratorDefine;
1418
- var createIterResultObject$2 = createIterResultObject$3;
1419
- var DESCRIPTORS$7 = descriptors;
1667
+ var createIterResultObject$2 = createIterResultObject$4;
1668
+ var DESCRIPTORS$6 = descriptors;
1420
1669
 
1421
1670
  var ARRAY_ITERATOR = 'Array Iterator';
1422
1671
  var setInternalState$3 = InternalStateModule$3.set;
@@ -1466,14 +1715,14 @@ addToUnscopables('values');
1466
1715
  addToUnscopables('entries');
1467
1716
 
1468
1717
  // V8 ~ Chrome 45- bug
1469
- if (DESCRIPTORS$7 && values.name !== 'values') try {
1470
- defineProperty$2(values, 'name', { value: 'values' });
1718
+ if (DESCRIPTORS$6 && values.name !== 'values') try {
1719
+ defineProperty$1(values, 'name', { value: 'values' });
1471
1720
  } catch (error) { /* empty */ }
1472
1721
 
1473
- var DESCRIPTORS$6 = descriptors;
1722
+ var DESCRIPTORS$5 = descriptors;
1474
1723
  var uncurryThis$d = functionUncurryThis;
1475
- var call$8 = functionCall;
1476
- var fails$4 = fails$f;
1724
+ var call$7 = functionCall;
1725
+ var fails$4 = fails$g;
1477
1726
  var objectKeys = objectKeys$2;
1478
1727
  var getOwnPropertySymbolsModule = objectGetOwnPropertySymbols;
1479
1728
  var propertyIsEnumerableModule = objectPropertyIsEnumerable;
@@ -1483,17 +1732,17 @@ var IndexedObject = indexedObject;
1483
1732
  // eslint-disable-next-line es/no-object-assign -- safe
1484
1733
  var $assign = Object.assign;
1485
1734
  // eslint-disable-next-line es/no-object-defineproperty -- required for testing
1486
- var defineProperty$1 = Object.defineProperty;
1735
+ var defineProperty = Object.defineProperty;
1487
1736
  var concat = uncurryThis$d([].concat);
1488
1737
 
1489
1738
  // `Object.assign` method
1490
1739
  // https://tc39.es/ecma262/#sec-object.assign
1491
1740
  var objectAssign = !$assign || fails$4(function () {
1492
1741
  // should have correct order of operations (Edge bug)
1493
- if (DESCRIPTORS$6 && $assign({ b: 1 }, $assign(defineProperty$1({}, 'a', {
1742
+ if (DESCRIPTORS$5 && $assign({ b: 1 }, $assign(defineProperty({}, 'a', {
1494
1743
  enumerable: true,
1495
1744
  get: function () {
1496
- defineProperty$1(this, 'b', {
1745
+ defineProperty(this, 'b', {
1497
1746
  value: 3,
1498
1747
  enumerable: false
1499
1748
  });
@@ -1522,7 +1771,7 @@ var objectAssign = !$assign || fails$4(function () {
1522
1771
  var key;
1523
1772
  while (length > j) {
1524
1773
  key = keys[j++];
1525
- if (!DESCRIPTORS$6 || call$8(propertyIsEnumerable, S, key)) T[key] = S[key];
1774
+ if (!DESCRIPTORS$5 || call$7(propertyIsEnumerable, S, key)) T[key] = S[key];
1526
1775
  }
1527
1776
  } return T;
1528
1777
  } : $assign;
@@ -1581,13 +1830,13 @@ var DOMTokenListPrototype$1 = classList && classList.constructor && classList.co
1581
1830
 
1582
1831
  var domTokenListPrototype = DOMTokenListPrototype$1 === Object.prototype ? undefined : DOMTokenListPrototype$1;
1583
1832
 
1584
- var global$4 = global$e;
1833
+ var global$4 = global$f;
1585
1834
  var DOMIterables = domIterables;
1586
1835
  var DOMTokenListPrototype = domTokenListPrototype;
1587
1836
  var ArrayIteratorMethods = es_array_iterator;
1588
- var createNonEnumerableProperty = createNonEnumerableProperty$4;
1837
+ var createNonEnumerableProperty = createNonEnumerableProperty$5;
1589
1838
  var setToStringTag$2 = setToStringTag$5;
1590
- var wellKnownSymbol$6 = wellKnownSymbol$c;
1839
+ var wellKnownSymbol$6 = wellKnownSymbol$e;
1591
1840
 
1592
1841
  var ITERATOR$4 = wellKnownSymbol$6('iterator');
1593
1842
  var ArrayValues = ArrayIteratorMethods.values;
@@ -1649,11 +1898,11 @@ var NATIVE_BIND$1 = functionBindNative;
1649
1898
 
1650
1899
  var FunctionPrototype = Function.prototype;
1651
1900
  var apply$1 = FunctionPrototype.apply;
1652
- var call$7 = FunctionPrototype.call;
1901
+ var call$6 = FunctionPrototype.call;
1653
1902
 
1654
1903
  // eslint-disable-next-line es/no-reflect -- safe
1655
- var functionApply = typeof Reflect == 'object' && Reflect.apply || (NATIVE_BIND$1 ? call$7.bind(apply$1) : function () {
1656
- return call$7.apply(apply$1, arguments);
1904
+ var functionApply = typeof Reflect == 'object' && Reflect.apply || (NATIVE_BIND$1 ? call$6.bind(apply$1) : function () {
1905
+ return call$6.apply(apply$1, arguments);
1657
1906
  });
1658
1907
 
1659
1908
  var uncurryThis$c = functionUncurryThis;
@@ -1669,7 +1918,7 @@ var isArray$1 = Array.isArray || function isArray(argument) {
1669
1918
  return classof$6(argument) === 'Array';
1670
1919
  };
1671
1920
 
1672
- var wellKnownSymbol$5 = wellKnownSymbol$c;
1921
+ var wellKnownSymbol$5 = wellKnownSymbol$e;
1673
1922
 
1674
1923
  var TO_STRING_TAG$1 = wellKnownSymbol$5('toStringTag');
1675
1924
  var test = {};
@@ -1679,9 +1928,9 @@ test[TO_STRING_TAG$1] = 'z';
1679
1928
  var toStringTagSupport = String(test) === '[object z]';
1680
1929
 
1681
1930
  var TO_STRING_TAG_SUPPORT = toStringTagSupport;
1682
- var isCallable$4 = isCallable$i;
1931
+ var isCallable$4 = isCallable$j;
1683
1932
  var classofRaw$1 = classofRaw$2;
1684
- var wellKnownSymbol$4 = wellKnownSymbol$c;
1933
+ var wellKnownSymbol$4 = wellKnownSymbol$e;
1685
1934
 
1686
1935
  var TO_STRING_TAG = wellKnownSymbol$4('toStringTag');
1687
1936
  var $Object = Object;
@@ -1719,7 +1968,7 @@ var toString$5 = function (argument) {
1719
1968
 
1720
1969
  var uncurryThis$b = functionUncurryThis;
1721
1970
  var isArray = isArray$1;
1722
- var isCallable$3 = isCallable$i;
1971
+ var isCallable$3 = isCallable$j;
1723
1972
  var classof$3 = classofRaw$2;
1724
1973
  var toString$4 = toString$5;
1725
1974
 
@@ -1750,10 +1999,10 @@ var getJsonReplacerFunction = function (replacer) {
1750
1999
  var $$3 = _export;
1751
2000
  var getBuiltIn$1 = getBuiltIn$5;
1752
2001
  var apply = functionApply;
1753
- var call$6 = functionCall;
2002
+ var call$5 = functionCall;
1754
2003
  var uncurryThis$a = functionUncurryThis;
1755
- var fails$3 = fails$f;
1756
- var isCallable$2 = isCallable$i;
2004
+ var fails$3 = fails$g;
2005
+ var isCallable$2 = isCallable$j;
1757
2006
  var isSymbol = isSymbol$3;
1758
2007
  var arraySlice$2 = arraySlice$3;
1759
2008
  var getReplacerFunction = getJsonReplacerFunction;
@@ -1793,7 +2042,7 @@ var stringifyWithSymbolsFix = function (it, replacer) {
1793
2042
  if (!isCallable$2($replacer) && (it === undefined || isSymbol(it))) return; // IE8 returns string on undefined
1794
2043
  args[1] = function (key, value) {
1795
2044
  // some old implementations (like WebKit) could pass numbers as keys
1796
- if (isCallable$2($replacer)) value = call$6($replacer, this, $String(key), value);
2045
+ if (isCallable$2($replacer)) value = call$5($replacer, this, $String(key), value);
1797
2046
  if (!isSymbol(value)) return value;
1798
2047
  };
1799
2048
  return apply($stringify, null, args);
@@ -1820,12 +2069,12 @@ if ($stringify) {
1820
2069
  });
1821
2070
  }
1822
2071
 
1823
- var anObject$5 = anObject$a;
2072
+ var anObject$3 = anObject$c;
1824
2073
 
1825
2074
  // `RegExp.prototype.flags` getter implementation
1826
2075
  // https://tc39.es/ecma262/#sec-get-regexp.prototype.flags
1827
2076
  var regexpFlags = function () {
1828
- var that = anObject$5(this);
2077
+ var that = anObject$3(this);
1829
2078
  var result = '';
1830
2079
  if (that.hasIndices) result += 'd';
1831
2080
  if (that.global) result += 'g';
@@ -1838,24 +2087,24 @@ var regexpFlags = function () {
1838
2087
  return result;
1839
2088
  };
1840
2089
 
1841
- var call$5 = functionCall;
2090
+ var call$4 = functionCall;
1842
2091
  var hasOwn$2 = hasOwnProperty_1;
1843
- var isPrototypeOf$1 = objectIsPrototypeOf;
2092
+ var isPrototypeOf = objectIsPrototypeOf;
1844
2093
  var regExpFlags = regexpFlags;
1845
2094
 
1846
2095
  var RegExpPrototype$1 = RegExp.prototype;
1847
2096
 
1848
2097
  var regexpGetFlags = function (R) {
1849
2098
  var flags = R.flags;
1850
- return flags === undefined && !('flags' in RegExpPrototype$1) && !hasOwn$2(R, 'flags') && isPrototypeOf$1(RegExpPrototype$1, R)
1851
- ? call$5(regExpFlags, R) : flags;
2099
+ return flags === undefined && !('flags' in RegExpPrototype$1) && !hasOwn$2(R, 'flags') && isPrototypeOf(RegExpPrototype$1, R)
2100
+ ? call$4(regExpFlags, R) : flags;
1852
2101
  };
1853
2102
 
1854
2103
  var PROPER_FUNCTION_NAME = functionName.PROPER;
1855
- var defineBuiltIn$5 = defineBuiltIn$9;
1856
- var anObject$4 = anObject$a;
2104
+ var defineBuiltIn$4 = defineBuiltIn$9;
2105
+ var anObject$2 = anObject$c;
1857
2106
  var $toString$2 = toString$5;
1858
- var fails$2 = fails$f;
2107
+ var fails$2 = fails$g;
1859
2108
  var getRegExpFlags = regexpGetFlags;
1860
2109
 
1861
2110
  var TO_STRING = 'toString';
@@ -1869,8 +2118,8 @@ var INCORRECT_NAME = PROPER_FUNCTION_NAME && nativeToString.name !== TO_STRING;
1869
2118
  // `RegExp.prototype.toString` method
1870
2119
  // https://tc39.es/ecma262/#sec-regexp.prototype.tostring
1871
2120
  if (NOT_GENERIC || INCORRECT_NAME) {
1872
- defineBuiltIn$5(RegExpPrototype, TO_STRING, function toString() {
1873
- var R = anObject$4(this);
2121
+ defineBuiltIn$4(RegExpPrototype, TO_STRING, function toString() {
2122
+ var R = anObject$2(this);
1874
2123
  var pattern = $toString$2(R.source);
1875
2124
  var flags = $toString$2(getRegExpFlags(R));
1876
2125
  return '/' + pattern + '/' + flags;
@@ -1918,7 +2167,7 @@ var charAt$2 = stringMultibyte.charAt;
1918
2167
  var toString$2 = toString$5;
1919
2168
  var InternalStateModule$2 = internalState;
1920
2169
  var defineIterator = iteratorDefine;
1921
- var createIterResultObject$1 = createIterResultObject$3;
2170
+ var createIterResultObject$1 = createIterResultObject$4;
1922
2171
 
1923
2172
  var STRING_ITERATOR = 'String Iterator';
1924
2173
  var setInternalState$2 = InternalStateModule$2.set;
@@ -1945,9 +2194,9 @@ defineIterator(String, 'String', function (iterated) {
1945
2194
  return createIterResultObject$1(point, false);
1946
2195
  });
1947
2196
 
1948
- var fails$1 = fails$f;
1949
- var wellKnownSymbol$3 = wellKnownSymbol$c;
1950
- var DESCRIPTORS$5 = descriptors;
2197
+ var fails$1 = fails$g;
2198
+ var wellKnownSymbol$3 = wellKnownSymbol$e;
2199
+ var DESCRIPTORS$4 = descriptors;
1951
2200
  var IS_PURE = isPure;
1952
2201
 
1953
2202
  var ITERATOR$3 = wellKnownSymbol$3('iterator');
@@ -1968,7 +2217,7 @@ var urlConstructorDetection = !fails$1(function () {
1968
2217
  // https://bugs.chromium.org/p/v8/issues/detail?id=14222
1969
2218
  params2['delete']('b', undefined);
1970
2219
  return (IS_PURE && (!url.toJSON || !params2.has('a', 1) || params2.has('a', 2) || !params2.has('a', undefined) || params2.has('b')))
1971
- || (!params.size && (IS_PURE || !DESCRIPTORS$5))
2220
+ || (!params.size && (IS_PURE || !DESCRIPTORS$4))
1972
2221
  || !params.sort
1973
2222
  || url.href !== 'http://a/c%20d?a=1&c=3'
1974
2223
  || params.get('c') !== '3'
@@ -1998,7 +2247,7 @@ var functionUncurryThisClause = function (fn) {
1998
2247
  };
1999
2248
 
2000
2249
  var uncurryThis$7 = functionUncurryThisClause;
2001
- var aCallable$1 = aCallable$4;
2250
+ var aCallable$1 = aCallable$5;
2002
2251
  var NATIVE_BIND = functionBindNative;
2003
2252
 
2004
2253
  var bind$3 = uncurryThis$7(uncurryThis$7.bind);
@@ -2011,61 +2260,7 @@ var functionBindContext = function (fn, that) {
2011
2260
  };
2012
2261
  };
2013
2262
 
2014
- var makeBuiltIn = makeBuiltInExports;
2015
- var defineProperty = objectDefineProperty;
2016
-
2017
- var defineBuiltInAccessor$3 = function (target, name, descriptor) {
2018
- if (descriptor.get) makeBuiltIn(descriptor.get, name, { getter: true });
2019
- if (descriptor.set) makeBuiltIn(descriptor.set, name, { setter: true });
2020
- return defineProperty.f(target, name, descriptor);
2021
- };
2022
-
2023
- var isPrototypeOf = objectIsPrototypeOf;
2024
-
2025
- var $TypeError$2 = TypeError;
2026
-
2027
- var anInstance$2 = function (it, Prototype) {
2028
- if (isPrototypeOf(Prototype, it)) return it;
2029
- throw new $TypeError$2('Incorrect invocation');
2030
- };
2031
-
2032
- var call$4 = functionCall;
2033
- var anObject$3 = anObject$a;
2034
- var getMethod$1 = getMethod$3;
2035
-
2036
- var iteratorClose$1 = function (iterator, kind, value) {
2037
- var innerResult, innerError;
2038
- anObject$3(iterator);
2039
- try {
2040
- innerResult = getMethod$1(iterator, 'return');
2041
- if (!innerResult) {
2042
- if (kind === 'throw') throw value;
2043
- return value;
2044
- }
2045
- innerResult = call$4(innerResult, iterator);
2046
- } catch (error) {
2047
- innerError = true;
2048
- innerResult = error;
2049
- }
2050
- if (kind === 'throw') throw value;
2051
- if (innerError) throw innerResult;
2052
- anObject$3(innerResult);
2053
- return value;
2054
- };
2055
-
2056
- var anObject$2 = anObject$a;
2057
- var iteratorClose = iteratorClose$1;
2058
-
2059
- // call something on iterator step with safe closing on error
2060
- var callWithSafeIterationClosing$1 = function (iterator, fn, value, ENTRIES) {
2061
- try {
2062
- return ENTRIES ? fn(anObject$2(value)[0], value[1]) : fn(value);
2063
- } catch (error) {
2064
- iteratorClose(iterator, 'throw', error);
2065
- }
2066
- };
2067
-
2068
- var wellKnownSymbol$2 = wellKnownSymbol$c;
2263
+ var wellKnownSymbol$2 = wellKnownSymbol$e;
2069
2264
  var Iterators$1 = iterators;
2070
2265
 
2071
2266
  var ITERATOR$2 = wellKnownSymbol$2('iterator');
@@ -2077,8 +2272,8 @@ var isArrayIteratorMethod$1 = function (it) {
2077
2272
  };
2078
2273
 
2079
2274
  var uncurryThis$6 = functionUncurryThis;
2080
- var fails = fails$f;
2081
- var isCallable$1 = isCallable$i;
2275
+ var fails = fails$g;
2276
+ var isCallable$1 = isCallable$j;
2082
2277
  var classof$2 = classof$5;
2083
2278
  var getBuiltIn = getBuiltIn$5;
2084
2279
  var inspectSource = inspectSource$2;
@@ -2128,20 +2323,11 @@ var isConstructor$1 = !construct || fails(function () {
2128
2323
  || called;
2129
2324
  }) ? isConstructorLegacy : isConstructorModern;
2130
2325
 
2131
- var DESCRIPTORS$4 = descriptors;
2132
- var definePropertyModule = objectDefineProperty;
2133
- var createPropertyDescriptor$1 = createPropertyDescriptor$5;
2134
-
2135
- var createProperty$1 = function (object, key, value) {
2136
- if (DESCRIPTORS$4) definePropertyModule.f(object, key, createPropertyDescriptor$1(0, value));
2137
- else object[key] = value;
2138
- };
2139
-
2140
2326
  var classof$1 = classof$5;
2141
- var getMethod = getMethod$3;
2327
+ var getMethod = getMethod$4;
2142
2328
  var isNullOrUndefined = isNullOrUndefined$3;
2143
2329
  var Iterators = iterators;
2144
- var wellKnownSymbol$1 = wellKnownSymbol$c;
2330
+ var wellKnownSymbol$1 = wellKnownSymbol$e;
2145
2331
 
2146
2332
  var ITERATOR$1 = wellKnownSymbol$1('iterator');
2147
2333
 
@@ -2152,8 +2338,8 @@ var getIteratorMethod$3 = function (it) {
2152
2338
  };
2153
2339
 
2154
2340
  var call$3 = functionCall;
2155
- var aCallable = aCallable$4;
2156
- var anObject$1 = anObject$a;
2341
+ var aCallable = aCallable$5;
2342
+ var anObject$1 = anObject$c;
2157
2343
  var tryToString = tryToString$2;
2158
2344
  var getIteratorMethod$2 = getIteratorMethod$3;
2159
2345
 
@@ -2168,11 +2354,11 @@ var getIterator$2 = function (argument, usingIterator) {
2168
2354
  var bind$2 = functionBindContext;
2169
2355
  var call$2 = functionCall;
2170
2356
  var toObject = toObject$4;
2171
- var callWithSafeIterationClosing = callWithSafeIterationClosing$1;
2357
+ var callWithSafeIterationClosing = callWithSafeIterationClosing$2;
2172
2358
  var isArrayIteratorMethod = isArrayIteratorMethod$1;
2173
2359
  var isConstructor = isConstructor$1;
2174
2360
  var lengthOfArrayLike = lengthOfArrayLike$2;
2175
- var createProperty = createProperty$1;
2361
+ var createProperty = createProperty$2;
2176
2362
  var getIterator$1 = getIterator$2;
2177
2363
  var getIteratorMethod$1 = getIteratorMethod$3;
2178
2364
 
@@ -2399,7 +2585,7 @@ var validateArgumentsLength$4 = function (passed, required) {
2399
2585
  return passed;
2400
2586
  };
2401
2587
 
2402
- var global$3 = global$e;
2588
+ var global$3 = global$f;
2403
2589
  var DESCRIPTORS$3 = descriptors;
2404
2590
 
2405
2591
  // eslint-disable-next-line es/no-object-getownpropertydescriptor -- safe
@@ -2412,13 +2598,6 @@ var safeGetBuiltIn$1 = function (name) {
2412
2598
  return descriptor && descriptor.value;
2413
2599
  };
2414
2600
 
2415
- var defineBuiltIn$4 = defineBuiltIn$9;
2416
-
2417
- var defineBuiltIns$1 = function (target, src, options) {
2418
- for (var key in src) defineBuiltIn$4(target, key, src[key], options);
2419
- return target;
2420
- };
2421
-
2422
2601
  var arraySlice$1 = arraySlice$3;
2423
2602
 
2424
2603
  var floor$1 = Math.floor;
@@ -2464,33 +2643,33 @@ var arraySort$1 = sort;
2464
2643
  // TODO: in core-js@4, move /modules/ dependencies to public entries for better optimization by tools like `preset-env`
2465
2644
 
2466
2645
  var $$2 = _export;
2467
- var global$2 = global$e;
2646
+ var global$2 = global$f;
2468
2647
  var safeGetBuiltIn = safeGetBuiltIn$1;
2469
2648
  var call$1 = functionCall;
2470
2649
  var uncurryThis$4 = functionUncurryThis;
2471
2650
  var DESCRIPTORS$2 = descriptors;
2472
2651
  var USE_NATIVE_URL$1 = urlConstructorDetection;
2473
2652
  var defineBuiltIn$3 = defineBuiltIn$9;
2474
- var defineBuiltInAccessor$2 = defineBuiltInAccessor$3;
2475
- var defineBuiltIns = defineBuiltIns$1;
2653
+ var defineBuiltInAccessor$2 = defineBuiltInAccessor$4;
2654
+ var defineBuiltIns = defineBuiltIns$2;
2476
2655
  var setToStringTag$1 = setToStringTag$5;
2477
2656
  var createIteratorConstructor = iteratorCreateConstructor;
2478
2657
  var InternalStateModule$1 = internalState;
2479
- var anInstance$1 = anInstance$2;
2480
- var isCallable = isCallable$i;
2658
+ var anInstance$1 = anInstance$3;
2659
+ var isCallable = isCallable$j;
2481
2660
  var hasOwn$1 = hasOwnProperty_1;
2482
2661
  var bind$1 = functionBindContext;
2483
2662
  var classof = classof$5;
2484
- var anObject = anObject$a;
2663
+ var anObject = anObject$c;
2485
2664
  var isObject = isObject$9;
2486
2665
  var $toString$1 = toString$5;
2487
2666
  var create = objectCreate;
2488
2667
  var createPropertyDescriptor = createPropertyDescriptor$5;
2489
2668
  var getIterator = getIterator$2;
2490
2669
  var getIteratorMethod = getIteratorMethod$3;
2491
- var createIterResultObject = createIterResultObject$3;
2670
+ var createIterResultObject = createIterResultObject$4;
2492
2671
  var validateArgumentsLength$3 = validateArgumentsLength$4;
2493
- var wellKnownSymbol = wellKnownSymbol$c;
2672
+ var wellKnownSymbol = wellKnownSymbol$e;
2494
2673
  var arraySort = arraySort$1;
2495
2674
 
2496
2675
  var ITERATOR = wellKnownSymbol('iterator');
@@ -2882,12 +3061,12 @@ var web_urlSearchParams_constructor = {
2882
3061
  var $$1 = _export;
2883
3062
  var DESCRIPTORS$1 = descriptors;
2884
3063
  var USE_NATIVE_URL = urlConstructorDetection;
2885
- var global$1 = global$e;
3064
+ var global$1 = global$f;
2886
3065
  var bind = functionBindContext;
2887
3066
  var uncurryThis$3 = functionUncurryThis;
2888
3067
  var defineBuiltIn$2 = defineBuiltIn$9;
2889
- var defineBuiltInAccessor$1 = defineBuiltInAccessor$3;
2890
- var anInstance = anInstance$2;
3068
+ var defineBuiltInAccessor$1 = defineBuiltInAccessor$4;
3069
+ var anInstance = anInstance$3;
2891
3070
  var hasOwn = hasOwnProperty_1;
2892
3071
  var assign = objectAssign;
2893
3072
  var arrayFrom = arrayFrom$1;
@@ -4015,7 +4194,7 @@ if (params.has('a', 2) || !params.has('a', undefined)) {
4015
4194
 
4016
4195
  var DESCRIPTORS = descriptors;
4017
4196
  var uncurryThis = functionUncurryThis;
4018
- var defineBuiltInAccessor = defineBuiltInAccessor$3;
4197
+ var defineBuiltInAccessor = defineBuiltInAccessor$4;
4019
4198
 
4020
4199
  var URLSearchParamsPrototype = URLSearchParams.prototype;
4021
4200
  var forEach = uncurryThis(URLSearchParamsPrototype.forEach);
@@ -4034,4 +4213,4 @@ if (DESCRIPTORS && !('size' in URLSearchParamsPrototype)) {
4034
4213
  });
4035
4214
  }
4036
4215
 
4037
- export { styleInject as s };
4216
+ export { _export as _, anObject$c as a, aCallable$5 as b, callWithSafeIterationClosing$2 as c, isPure as d, functionCall as f, getIteratorDirect$1 as g, iteratorCreateProxy as i, styleInject as s };