@opengeoweb/metronome 9.12.0 → 9.14.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/index.esm.js +921 -741
  2. package/package.json +1 -1
package/index.esm.js CHANGED
@@ -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$a = 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$c =
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$c = function (exec) {
4
22
  try {
5
23
  return !!exec();
6
24
  } catch (error) {
@@ -8,9 +26,17 @@ var fails$a = function (exec) {
8
26
  }
9
27
  };
10
28
 
11
- var fails$9 = fails$a;
29
+ var fails$b = fails$c;
30
+
31
+ // Detect IE8's incomplete defineProperty implementation
32
+ var descriptors = !fails$b(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$a = fails$c;
12
38
 
13
- var functionBindNative = !fails$9(function () {
39
+ var functionBindNative = !fails$a(function () {
14
40
  // eslint-disable-next-line es/no-function-prototype-bind -- safe
15
41
  var test = (function () { /* empty */ }).bind();
16
42
  // eslint-disable-next-line no-prototype-builtins -- safe
@@ -19,40 +45,73 @@ var functionBindNative = !fails$9(function () {
19
45
 
20
46
  var NATIVE_BIND$1 = functionBindNative;
21
47
 
48
+ var call$5 = Function.prototype.call;
49
+
50
+ var functionCall = NATIVE_BIND$1 ? call$5.bind(call$5) : function () {
51
+ return call$5.apply(call$5, 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$3 = 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 = functionBindNative;
80
+
22
81
  var FunctionPrototype$1 = Function.prototype;
23
- var call$5 = FunctionPrototype$1.call;
24
- var uncurryThisWithBind = NATIVE_BIND$1 && FunctionPrototype$1.bind.bind(call$5, call$5);
82
+ var call$4 = FunctionPrototype$1.call;
83
+ var uncurryThisWithBind = NATIVE_BIND && FunctionPrototype$1.bind.bind(call$4, call$4);
25
84
 
26
- var functionUncurryThis = NATIVE_BIND$1 ? uncurryThisWithBind : function (fn) {
85
+ var functionUncurryThis = NATIVE_BIND ? uncurryThisWithBind : function (fn) {
27
86
  return function () {
28
- return call$5.apply(fn, arguments);
87
+ return call$4.apply(fn, arguments);
29
88
  };
30
89
  };
31
90
 
32
- var uncurryThis$9 = functionUncurryThis;
91
+ var uncurryThis$a = functionUncurryThis;
33
92
 
34
- var toString$1 = uncurryThis$9({}.toString);
35
- var stringSlice$1 = uncurryThis$9(''.slice);
93
+ var toString$3 = uncurryThis$a({}.toString);
94
+ var stringSlice$1 = uncurryThis$a(''.slice);
36
95
 
37
- var classofRaw = function (it) {
38
- return stringSlice$1(toString$1(it), 8, -1);
96
+ var classofRaw$1 = function (it) {
97
+ return stringSlice$1(toString$3(it), 8, -1);
39
98
  };
40
99
 
41
- var uncurryThis$8 = functionUncurryThis;
42
- var fails$8 = fails$a;
43
- var classof = classofRaw;
100
+ var uncurryThis$9 = functionUncurryThis;
101
+ var fails$9 = fails$c;
102
+ var classof$3 = classofRaw$1;
44
103
 
45
- var $Object$3 = Object;
46
- var split = uncurryThis$8(''.split);
104
+ var $Object$4 = Object;
105
+ var split = uncurryThis$9(''.split);
47
106
 
48
107
  // fallback for non-array-like ES3 and non-enumerable old V8 strings
49
- var indexedObject = fails$8(function () {
108
+ var indexedObject = fails$9(function () {
50
109
  // throws an error in rhino, see https://github.com/mozilla/rhino/issues/346
51
110
  // eslint-disable-next-line no-prototype-builtins -- safe
52
- return !$Object$3('z').propertyIsEnumerable(0);
111
+ return !$Object$4('z').propertyIsEnumerable(0);
53
112
  }) ? function (it) {
54
- return classof(it) === 'String' ? split(it, '') : $Object$3(it);
55
- } : $Object$3;
113
+ return classof$3(it) === 'String' ? split(it, '') : $Object$4(it);
114
+ } : $Object$4;
56
115
 
57
116
  // we can't use just `it == null` since of `document.all` special case
58
117
  // https://tc39.es/ecma262/#sec-IsHTMLDDA-internal-slot-aec
@@ -62,113 +121,63 @@ var isNullOrUndefined$2 = function (it) {
62
121
 
63
122
  var isNullOrUndefined$1 = isNullOrUndefined$2;
64
123
 
65
- var $TypeError$6 = TypeError;
124
+ var $TypeError$8 = TypeError;
66
125
 
67
126
  // `RequireObjectCoercible` abstract operation
68
127
  // https://tc39.es/ecma262/#sec-requireobjectcoercible
69
- var requireObjectCoercible$2 = function (it) {
70
- if (isNullOrUndefined$1(it)) throw new $TypeError$6("Can't call method on " + it);
128
+ var requireObjectCoercible$3 = function (it) {
129
+ if (isNullOrUndefined$1(it)) throw new $TypeError$8("Can't call method on " + it);
71
130
  return it;
72
131
  };
73
132
 
74
133
  // toObject with fallback for non-array-like ES3 strings
75
134
  var IndexedObject = indexedObject;
76
- var requireObjectCoercible$1 = requireObjectCoercible$2;
135
+ var requireObjectCoercible$2 = requireObjectCoercible$3;
77
136
 
78
137
  var toIndexedObject$5 = function (it) {
79
- return IndexedObject(requireObjectCoercible$1(it));
138
+ return IndexedObject(requireObjectCoercible$2(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$c =
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 shared$3 = {exports: {}};
99
-
100
- var global$b = global$c;
101
-
102
- // eslint-disable-next-line es/no-object-defineproperty -- safe
103
- var defineProperty$4 = Object.defineProperty;
141
+ // https://tc39.es/ecma262/#sec-IsHTMLDDA-internal-slot
142
+ var documentAll = typeof document == 'object' && document.all;
104
143
 
105
- var defineGlobalProperty$3 = function (key, value) {
106
- try {
107
- defineProperty$4(global$b, key, { value: value, configurable: true, writable: true });
108
- } catch (error) {
109
- global$b[key] = value;
110
- } 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$e = typeof documentAll == 'undefined' && documentAll !== undefined ? function (argument) {
148
+ return typeof argument == 'function' || argument === documentAll;
149
+ } : function (argument) {
150
+ return typeof argument == 'function';
111
151
  };
112
152
 
113
- var global$a = global$c;
114
- var defineGlobalProperty$2 = defineGlobalProperty$3;
115
-
116
- var SHARED = '__core-js_shared__';
117
- var store$3 = global$a[SHARED] || defineGlobalProperty$2(SHARED, {});
118
-
119
- var sharedStore = store$3;
120
-
121
- var store$2 = sharedStore;
122
-
123
- (shared$3.exports = function (key, value) {
124
- return store$2[key] || (store$2[key] = value !== undefined ? value : {});
125
- })('versions', []).push({
126
- version: '3.35.1',
127
- mode: 'global',
128
- copyright: '© 2014-2024 Denis Pushkarev (zloirock.ru)',
129
- license: 'https://github.com/zloirock/core-js/blob/v3.35.1/LICENSE',
130
- source: 'https://github.com/zloirock/core-js'
131
- });
132
-
133
- var requireObjectCoercible = requireObjectCoercible$2;
134
-
135
- var $Object$2 = Object;
153
+ var isCallable$d = isCallable$e;
136
154
 
137
- // `ToObject` abstract operation
138
- // https://tc39.es/ecma262/#sec-toobject
139
- var toObject$2 = function (argument) {
140
- return $Object$2(requireObjectCoercible(argument));
155
+ var isObject$7 = function (it) {
156
+ return typeof it == 'object' ? it !== null : isCallable$d(it);
141
157
  };
142
158
 
143
- var uncurryThis$7 = functionUncurryThis;
144
- var toObject$1 = toObject$2;
145
-
146
- var hasOwnProperty = uncurryThis$7({}.hasOwnProperty);
159
+ var global$b = global$c;
160
+ var isCallable$c = isCallable$e;
147
161
 
148
- // `HasOwnProperty` abstract operation
149
- // https://tc39.es/ecma262/#sec-hasownproperty
150
- // eslint-disable-next-line es/no-object-hasown -- safe
151
- var hasOwnProperty_1 = Object.hasOwn || function hasOwn(it, key) {
152
- return hasOwnProperty(toObject$1(it), key);
162
+ var aFunction = function (argument) {
163
+ return isCallable$c(argument) ? argument : undefined;
153
164
  };
154
165
 
155
- var uncurryThis$6 = functionUncurryThis;
166
+ var getBuiltIn$3 = function (namespace, method) {
167
+ return arguments.length < 2 ? aFunction(global$b[namespace]) : global$b[namespace] && global$b[namespace][method];
168
+ };
156
169
 
157
- var id = 0;
158
- var postfix = Math.random();
159
- var toString = uncurryThis$6(1.0.toString);
170
+ var uncurryThis$8 = functionUncurryThis;
160
171
 
161
- var uid$2 = function (key) {
162
- return 'Symbol(' + (key === undefined ? '' : key) + ')_' + toString(++id + postfix, 36);
163
- };
172
+ var objectIsPrototypeOf = uncurryThis$8({}.isPrototypeOf);
164
173
 
165
174
  var engineUserAgent = typeof navigator != 'undefined' && String(navigator.userAgent) || '';
166
175
 
167
- var global$9 = global$c;
176
+ var global$a = global$c;
168
177
  var userAgent = engineUserAgent;
169
178
 
170
- var process = global$9.process;
171
- var Deno = global$9.Deno;
179
+ var process = global$a.process;
180
+ var Deno = global$a.Deno;
172
181
  var versions = process && process.versions || Deno && Deno.version;
173
182
  var v8 = versions && versions.v8;
174
183
  var match, version;
@@ -194,19 +203,19 @@ var engineV8Version = version;
194
203
 
195
204
  /* eslint-disable es/no-symbol -- required for testing */
196
205
  var V8_VERSION = engineV8Version;
197
- var fails$7 = fails$a;
198
- var global$8 = global$c;
206
+ var fails$8 = fails$c;
207
+ var global$9 = global$c;
199
208
 
200
- var $String$4 = global$8.String;
209
+ var $String$5 = global$9.String;
201
210
 
202
211
  // eslint-disable-next-line es/no-object-getownpropertysymbols -- required for testing
203
- var symbolConstructorDetection = !!Object.getOwnPropertySymbols && !fails$7(function () {
212
+ var symbolConstructorDetection = !!Object.getOwnPropertySymbols && !fails$8(function () {
204
213
  var symbol = Symbol('symbol detection');
205
214
  // Chrome 38 Symbol has incorrect toString conversion
206
215
  // `get-own-property-symbols` polyfill symbols converted to object are not Symbol instances
207
216
  // nb: Do not call `String` directly to avoid this being optimized out to `symbol+''` which will,
208
217
  // of course, fail.
209
- return !$String$4(symbol) || !(Object(symbol) instanceof Symbol) ||
218
+ return !$String$5(symbol) || !(Object(symbol) instanceof Symbol) ||
210
219
  // Chrome 38-40 symbols are not inherited from DOM collections prototypes to instances
211
220
  !Symbol.sham && V8_VERSION && V8_VERSION < 41;
212
221
  });
@@ -218,158 +227,39 @@ var useSymbolAsUid = NATIVE_SYMBOL$1
218
227
  && !Symbol.sham
219
228
  && typeof Symbol.iterator == 'symbol';
220
229
 
221
- var global$7 = global$c;
222
- var shared$2 = shared$3.exports;
223
- var hasOwn$8 = hasOwnProperty_1;
224
- var uid$1 = uid$2;
225
- var NATIVE_SYMBOL = symbolConstructorDetection;
226
- var USE_SYMBOL_AS_UID$1 = useSymbolAsUid;
227
-
228
- var Symbol$1 = global$7.Symbol;
229
- var WellKnownSymbolsStore = shared$2('wks');
230
- var createWellKnownSymbol = USE_SYMBOL_AS_UID$1 ? Symbol$1['for'] || Symbol$1 : Symbol$1 && Symbol$1.withoutSetter || uid$1;
231
-
232
- var wellKnownSymbol$6 = function (name) {
233
- if (!hasOwn$8(WellKnownSymbolsStore, name)) {
234
- WellKnownSymbolsStore[name] = NATIVE_SYMBOL && hasOwn$8(Symbol$1, name)
235
- ? Symbol$1[name]
236
- : createWellKnownSymbol('Symbol.' + name);
237
- } return WellKnownSymbolsStore[name];
238
- };
239
-
240
- // https://tc39.es/ecma262/#sec-IsHTMLDDA-internal-slot
241
- var documentAll = typeof document == 'object' && document.all;
242
-
243
- // `IsCallable` abstract operation
244
- // https://tc39.es/ecma262/#sec-iscallable
245
- // eslint-disable-next-line unicorn/no-typeof-undefined -- required for testing
246
- var isCallable$d = typeof documentAll == 'undefined' && documentAll !== undefined ? function (argument) {
247
- return typeof argument == 'function' || argument === documentAll;
248
- } : function (argument) {
249
- return typeof argument == 'function';
250
- };
251
-
252
- var isCallable$c = isCallable$d;
253
-
254
- var isObject$7 = function (it) {
255
- return typeof it == 'object' ? it !== null : isCallable$c(it);
256
- };
257
-
258
- var isObject$6 = isObject$7;
259
-
260
- var $String$3 = String;
261
- var $TypeError$5 = TypeError;
262
-
263
- // `Assert: Type(argument) is Object`
264
- var anObject$5 = function (argument) {
265
- if (isObject$6(argument)) return argument;
266
- throw new $TypeError$5($String$3(argument) + ' is not an object');
267
- };
268
-
269
- var objectDefineProperties = {};
270
-
271
- var fails$6 = fails$a;
272
-
273
- // Detect IE8's incomplete defineProperty implementation
274
- var descriptors = !fails$6(function () {
275
- // eslint-disable-next-line es/no-object-defineproperty -- required for testing
276
- return Object.defineProperty({}, 1, { get: function () { return 7; } })[1] !== 7;
277
- });
278
-
279
- var DESCRIPTORS$8 = descriptors;
280
- var fails$5 = fails$a;
281
-
282
- // V8 ~ Chrome 36-
283
- // https://bugs.chromium.org/p/v8/issues/detail?id=3334
284
- var v8PrototypeDefineBug = DESCRIPTORS$8 && fails$5(function () {
285
- // eslint-disable-next-line es/no-object-defineproperty -- required for testing
286
- return Object.defineProperty(function () { /* empty */ }, 'prototype', {
287
- value: 42,
288
- writable: false
289
- }).prototype !== 42;
290
- });
291
-
292
- var objectDefineProperty = {};
293
-
294
- var global$6 = global$c;
295
- var isObject$5 = isObject$7;
296
-
297
- var document$1 = global$6.document;
298
- // typeof document.createElement is 'object' in old IE
299
- var EXISTS$1 = isObject$5(document$1) && isObject$5(document$1.createElement);
300
-
301
- var documentCreateElement$2 = function (it) {
302
- return EXISTS$1 ? document$1.createElement(it) : {};
303
- };
304
-
305
- var DESCRIPTORS$7 = descriptors;
306
- var fails$4 = fails$a;
307
- var createElement = documentCreateElement$2;
308
-
309
- // Thanks to IE8 for its funny defineProperty
310
- var ie8DomDefine = !DESCRIPTORS$7 && !fails$4(function () {
311
- // eslint-disable-next-line es/no-object-defineproperty -- required for testing
312
- return Object.defineProperty(createElement('div'), 'a', {
313
- get: function () { return 7; }
314
- }).a !== 7;
315
- });
316
-
317
- var NATIVE_BIND = functionBindNative;
318
-
319
- var call$4 = Function.prototype.call;
320
-
321
- var functionCall = NATIVE_BIND ? call$4.bind(call$4) : function () {
322
- return call$4.apply(call$4, arguments);
323
- };
324
-
325
- var global$5 = global$c;
326
- var isCallable$b = isCallable$d;
327
-
328
- var aFunction = function (argument) {
329
- return isCallable$b(argument) ? argument : undefined;
330
- };
331
-
332
- var getBuiltIn$3 = function (namespace, method) {
333
- return arguments.length < 2 ? aFunction(global$5[namespace]) : global$5[namespace] && global$5[namespace][method];
334
- };
335
-
336
- var uncurryThis$5 = functionUncurryThis;
337
-
338
- var objectIsPrototypeOf = uncurryThis$5({}.isPrototypeOf);
339
-
340
230
  var getBuiltIn$2 = getBuiltIn$3;
341
- var isCallable$a = isCallable$d;
231
+ var isCallable$b = isCallable$e;
342
232
  var isPrototypeOf = objectIsPrototypeOf;
343
- var USE_SYMBOL_AS_UID = useSymbolAsUid;
233
+ var USE_SYMBOL_AS_UID$1 = useSymbolAsUid;
344
234
 
345
- var $Object$1 = Object;
235
+ var $Object$3 = Object;
346
236
 
347
- var isSymbol$2 = USE_SYMBOL_AS_UID ? function (it) {
237
+ var isSymbol$2 = USE_SYMBOL_AS_UID$1 ? function (it) {
348
238
  return typeof it == 'symbol';
349
239
  } : function (it) {
350
240
  var $Symbol = getBuiltIn$2('Symbol');
351
- return isCallable$a($Symbol) && isPrototypeOf($Symbol.prototype, $Object$1(it));
241
+ return isCallable$b($Symbol) && isPrototypeOf($Symbol.prototype, $Object$3(it));
352
242
  };
353
243
 
354
- var $String$2 = String;
244
+ var $String$4 = String;
355
245
 
356
246
  var tryToString$1 = function (argument) {
357
247
  try {
358
- return $String$2(argument);
248
+ return $String$4(argument);
359
249
  } catch (error) {
360
250
  return 'Object';
361
251
  }
362
252
  };
363
253
 
364
- var isCallable$9 = isCallable$d;
254
+ var isCallable$a = isCallable$e;
365
255
  var tryToString = tryToString$1;
366
256
 
367
- var $TypeError$4 = TypeError;
257
+ var $TypeError$7 = TypeError;
368
258
 
369
259
  // `Assert: IsCallable(argument) is true`
370
260
  var aCallable$2 = function (argument) {
371
- if (isCallable$9(argument)) return argument;
372
- throw new $TypeError$4(tryToString(argument) + ' is not a function');
261
+ if (isCallable$a(argument)) return argument;
262
+ throw new $TypeError$7(tryToString(argument) + ' is not a function');
373
263
  };
374
264
 
375
265
  var aCallable$1 = aCallable$2;
@@ -383,407 +273,331 @@ var getMethod$1 = function (V, P) {
383
273
  };
384
274
 
385
275
  var call$3 = functionCall;
386
- var isCallable$8 = isCallable$d;
387
- var isObject$4 = isObject$7;
276
+ var isCallable$9 = isCallable$e;
277
+ var isObject$6 = isObject$7;
388
278
 
389
- var $TypeError$3 = TypeError;
279
+ var $TypeError$6 = TypeError;
390
280
 
391
281
  // `OrdinaryToPrimitive` abstract operation
392
282
  // https://tc39.es/ecma262/#sec-ordinarytoprimitive
393
283
  var ordinaryToPrimitive$1 = function (input, pref) {
394
284
  var fn, val;
395
- if (pref === 'string' && isCallable$8(fn = input.toString) && !isObject$4(val = call$3(fn, input))) return val;
396
- if (isCallable$8(fn = input.valueOf) && !isObject$4(val = call$3(fn, input))) return val;
397
- if (pref !== 'string' && isCallable$8(fn = input.toString) && !isObject$4(val = call$3(fn, input))) return val;
398
- throw new $TypeError$3("Can't convert object to primitive value");
285
+ if (pref === 'string' && isCallable$9(fn = input.toString) && !isObject$6(val = call$3(fn, input))) return val;
286
+ if (isCallable$9(fn = input.valueOf) && !isObject$6(val = call$3(fn, input))) return val;
287
+ if (pref !== 'string' && isCallable$9(fn = input.toString) && !isObject$6(val = call$3(fn, input))) return val;
288
+ throw new $TypeError$6("Can't convert object to primitive value");
399
289
  };
400
290
 
401
- var call$2 = functionCall;
402
- var isObject$3 = isObject$7;
403
- var isSymbol$1 = isSymbol$2;
404
- var getMethod = getMethod$1;
405
- var ordinaryToPrimitive = ordinaryToPrimitive$1;
406
- var wellKnownSymbol$5 = wellKnownSymbol$6;
291
+ var shared$3 = {exports: {}};
407
292
 
408
- var $TypeError$2 = TypeError;
409
- var TO_PRIMITIVE = wellKnownSymbol$5('toPrimitive');
293
+ var global$8 = global$c;
410
294
 
411
- // `ToPrimitive` abstract operation
412
- // https://tc39.es/ecma262/#sec-toprimitive
413
- var toPrimitive$1 = function (input, pref) {
414
- if (!isObject$3(input) || isSymbol$1(input)) return input;
415
- var exoticToPrim = getMethod(input, TO_PRIMITIVE);
416
- var result;
417
- if (exoticToPrim) {
418
- if (pref === undefined) pref = 'default';
419
- result = call$2(exoticToPrim, input, pref);
420
- if (!isObject$3(result) || isSymbol$1(result)) return result;
421
- throw new $TypeError$2("Can't convert object to primitive value");
422
- }
423
- if (pref === undefined) pref = 'number';
424
- return ordinaryToPrimitive(input, pref);
425
- };
426
-
427
- var toPrimitive = toPrimitive$1;
428
- var isSymbol = isSymbol$2;
429
-
430
- // `ToPropertyKey` abstract operation
431
- // https://tc39.es/ecma262/#sec-topropertykey
432
- var toPropertyKey$2 = function (argument) {
433
- var key = toPrimitive(argument, 'string');
434
- return isSymbol(key) ? key : key + '';
435
- };
436
-
437
- var DESCRIPTORS$6 = descriptors;
438
- var IE8_DOM_DEFINE$1 = ie8DomDefine;
439
- var V8_PROTOTYPE_DEFINE_BUG$1 = v8PrototypeDefineBug;
440
- var anObject$4 = anObject$5;
441
- var toPropertyKey$1 = toPropertyKey$2;
442
-
443
- var $TypeError$1 = TypeError;
444
295
  // eslint-disable-next-line es/no-object-defineproperty -- safe
445
- var $defineProperty = Object.defineProperty;
446
- // eslint-disable-next-line es/no-object-getownpropertydescriptor -- safe
447
- var $getOwnPropertyDescriptor$1 = Object.getOwnPropertyDescriptor;
448
- var ENUMERABLE = 'enumerable';
449
- var CONFIGURABLE$1 = 'configurable';
450
- var WRITABLE = 'writable';
296
+ var defineProperty$4 = Object.defineProperty;
451
297
 
452
- // `Object.defineProperty` method
453
- // https://tc39.es/ecma262/#sec-object.defineproperty
454
- objectDefineProperty.f = DESCRIPTORS$6 ? V8_PROTOTYPE_DEFINE_BUG$1 ? function defineProperty(O, P, Attributes) {
455
- anObject$4(O);
456
- P = toPropertyKey$1(P);
457
- anObject$4(Attributes);
458
- if (typeof O === 'function' && P === 'prototype' && 'value' in Attributes && WRITABLE in Attributes && !Attributes[WRITABLE]) {
459
- var current = $getOwnPropertyDescriptor$1(O, P);
460
- if (current && current[WRITABLE]) {
461
- O[P] = Attributes.value;
462
- Attributes = {
463
- configurable: CONFIGURABLE$1 in Attributes ? Attributes[CONFIGURABLE$1] : current[CONFIGURABLE$1],
464
- enumerable: ENUMERABLE in Attributes ? Attributes[ENUMERABLE] : current[ENUMERABLE],
465
- writable: false
466
- };
467
- }
468
- } return $defineProperty(O, P, Attributes);
469
- } : $defineProperty : function defineProperty(O, P, Attributes) {
470
- anObject$4(O);
471
- P = toPropertyKey$1(P);
472
- anObject$4(Attributes);
473
- if (IE8_DOM_DEFINE$1) try {
474
- return $defineProperty(O, P, Attributes);
475
- } catch (error) { /* empty */ }
476
- if ('get' in Attributes || 'set' in Attributes) throw new $TypeError$1('Accessors not supported');
477
- if ('value' in Attributes) O[P] = Attributes.value;
478
- return O;
298
+ var defineGlobalProperty$3 = function (key, value) {
299
+ try {
300
+ defineProperty$4(global$8, key, { value: value, configurable: true, writable: true });
301
+ } catch (error) {
302
+ global$8[key] = value;
303
+ } return value;
479
304
  };
480
305
 
481
- var ceil = Math.ceil;
482
- var floor = Math.floor;
306
+ var global$7 = global$c;
307
+ var defineGlobalProperty$2 = defineGlobalProperty$3;
483
308
 
484
- // `Math.trunc` method
485
- // https://tc39.es/ecma262/#sec-math.trunc
486
- // eslint-disable-next-line es/no-math-trunc -- safe
487
- var mathTrunc = Math.trunc || function trunc(x) {
488
- var n = +x;
489
- return (n > 0 ? floor : ceil)(n);
490
- };
309
+ var SHARED = '__core-js_shared__';
310
+ var store$3 = global$7[SHARED] || defineGlobalProperty$2(SHARED, {});
491
311
 
492
- var trunc = mathTrunc;
312
+ var sharedStore = store$3;
493
313
 
494
- // `ToIntegerOrInfinity` abstract operation
495
- // https://tc39.es/ecma262/#sec-tointegerorinfinity
496
- var toIntegerOrInfinity$2 = function (argument) {
497
- var number = +argument;
498
- // eslint-disable-next-line no-self-compare -- NaN check
499
- return number !== number || number === 0 ? 0 : trunc(number);
500
- };
314
+ var store$2 = sharedStore;
501
315
 
502
- var toIntegerOrInfinity$1 = toIntegerOrInfinity$2;
316
+ (shared$3.exports = function (key, value) {
317
+ return store$2[key] || (store$2[key] = value !== undefined ? value : {});
318
+ })('versions', []).push({
319
+ version: '3.35.1',
320
+ mode: 'global',
321
+ copyright: '© 2014-2024 Denis Pushkarev (zloirock.ru)',
322
+ license: 'https://github.com/zloirock/core-js/blob/v3.35.1/LICENSE',
323
+ source: 'https://github.com/zloirock/core-js'
324
+ });
503
325
 
504
- var max = Math.max;
505
- var min$1 = Math.min;
326
+ var requireObjectCoercible$1 = requireObjectCoercible$3;
506
327
 
507
- // Helper for a popular repeating case of the spec:
508
- // Let integer be ? ToInteger(index).
509
- // If integer < 0, let result be max((length + integer), 0); else let result be min(integer, length).
510
- var toAbsoluteIndex$1 = function (index, length) {
511
- var integer = toIntegerOrInfinity$1(index);
512
- return integer < 0 ? max(integer + length, 0) : min$1(integer, length);
328
+ var $Object$2 = Object;
329
+
330
+ // `ToObject` abstract operation
331
+ // https://tc39.es/ecma262/#sec-toobject
332
+ var toObject$4 = function (argument) {
333
+ return $Object$2(requireObjectCoercible$1(argument));
513
334
  };
514
335
 
515
- var toIntegerOrInfinity = toIntegerOrInfinity$2;
336
+ var uncurryThis$7 = functionUncurryThis;
337
+ var toObject$3 = toObject$4;
516
338
 
517
- var min = Math.min;
339
+ var hasOwnProperty = uncurryThis$7({}.hasOwnProperty);
518
340
 
519
- // `ToLength` abstract operation
520
- // https://tc39.es/ecma262/#sec-tolength
521
- var toLength$1 = function (argument) {
522
- var len = toIntegerOrInfinity(argument);
523
- return len > 0 ? min(len, 0x1FFFFFFFFFFFFF) : 0; // 2 ** 53 - 1 == 9007199254740991
341
+ // `HasOwnProperty` abstract operation
342
+ // https://tc39.es/ecma262/#sec-hasownproperty
343
+ // eslint-disable-next-line es/no-object-hasown -- safe
344
+ var hasOwnProperty_1 = Object.hasOwn || function hasOwn(it, key) {
345
+ return hasOwnProperty(toObject$3(it), key);
524
346
  };
525
347
 
526
- var toLength = toLength$1;
348
+ var uncurryThis$6 = functionUncurryThis;
527
349
 
528
- // `LengthOfArrayLike` abstract operation
529
- // https://tc39.es/ecma262/#sec-lengthofarraylike
530
- var lengthOfArrayLike$1 = function (obj) {
531
- return toLength(obj.length);
350
+ var id = 0;
351
+ var postfix = Math.random();
352
+ var toString$2 = uncurryThis$6(1.0.toString);
353
+
354
+ var uid$2 = function (key) {
355
+ return 'Symbol(' + (key === undefined ? '' : key) + ')_' + toString$2(++id + postfix, 36);
532
356
  };
533
357
 
534
- var toIndexedObject$4 = toIndexedObject$5;
535
- var toAbsoluteIndex = toAbsoluteIndex$1;
536
- var lengthOfArrayLike = lengthOfArrayLike$1;
358
+ var global$6 = global$c;
359
+ var shared$2 = shared$3.exports;
360
+ var hasOwn$8 = hasOwnProperty_1;
361
+ var uid$1 = uid$2;
362
+ var NATIVE_SYMBOL = symbolConstructorDetection;
363
+ var USE_SYMBOL_AS_UID = useSymbolAsUid;
537
364
 
538
- // `Array.prototype.{ indexOf, includes }` methods implementation
539
- var createMethod = function (IS_INCLUDES) {
540
- return function ($this, el, fromIndex) {
541
- var O = toIndexedObject$4($this);
542
- var length = lengthOfArrayLike(O);
543
- var index = toAbsoluteIndex(fromIndex, length);
544
- var value;
545
- // Array#includes uses SameValueZero equality algorithm
546
- // eslint-disable-next-line no-self-compare -- NaN check
547
- if (IS_INCLUDES && el !== el) while (length > index) {
548
- value = O[index++];
549
- // eslint-disable-next-line no-self-compare -- NaN check
550
- if (value !== value) return true;
551
- // Array#indexOf ignores holes, Array#includes - not
552
- } else for (;length > index; index++) {
553
- if ((IS_INCLUDES || index in O) && O[index] === el) return IS_INCLUDES || index || 0;
554
- } return !IS_INCLUDES && -1;
555
- };
556
- };
365
+ var Symbol$1 = global$6.Symbol;
366
+ var WellKnownSymbolsStore = shared$2('wks');
367
+ var createWellKnownSymbol = USE_SYMBOL_AS_UID ? Symbol$1['for'] || Symbol$1 : Symbol$1 && Symbol$1.withoutSetter || uid$1;
557
368
 
558
- var arrayIncludes = {
559
- // `Array.prototype.includes` method
560
- // https://tc39.es/ecma262/#sec-array.prototype.includes
561
- includes: createMethod(true),
562
- // `Array.prototype.indexOf` method
563
- // https://tc39.es/ecma262/#sec-array.prototype.indexof
564
- indexOf: createMethod(false)
369
+ var wellKnownSymbol$8 = function (name) {
370
+ if (!hasOwn$8(WellKnownSymbolsStore, name)) {
371
+ WellKnownSymbolsStore[name] = NATIVE_SYMBOL && hasOwn$8(Symbol$1, name)
372
+ ? Symbol$1[name]
373
+ : createWellKnownSymbol('Symbol.' + name);
374
+ } return WellKnownSymbolsStore[name];
565
375
  };
566
376
 
567
- var hiddenKeys$4 = {};
568
-
569
- var uncurryThis$4 = functionUncurryThis;
570
- var hasOwn$7 = hasOwnProperty_1;
571
- var toIndexedObject$3 = toIndexedObject$5;
572
- var indexOf = arrayIncludes.indexOf;
573
- var hiddenKeys$3 = hiddenKeys$4;
377
+ var call$2 = functionCall;
378
+ var isObject$5 = isObject$7;
379
+ var isSymbol$1 = isSymbol$2;
380
+ var getMethod = getMethod$1;
381
+ var ordinaryToPrimitive = ordinaryToPrimitive$1;
382
+ var wellKnownSymbol$7 = wellKnownSymbol$8;
574
383
 
575
- var push = uncurryThis$4([].push);
384
+ var $TypeError$5 = TypeError;
385
+ var TO_PRIMITIVE = wellKnownSymbol$7('toPrimitive');
576
386
 
577
- var objectKeysInternal = function (object, names) {
578
- var O = toIndexedObject$3(object);
579
- var i = 0;
580
- var result = [];
581
- var key;
582
- for (key in O) !hasOwn$7(hiddenKeys$3, key) && hasOwn$7(O, key) && push(result, key);
583
- // Don't enum bug & hidden keys
584
- while (names.length > i) if (hasOwn$7(O, key = names[i++])) {
585
- ~indexOf(result, key) || push(result, key);
387
+ // `ToPrimitive` abstract operation
388
+ // https://tc39.es/ecma262/#sec-toprimitive
389
+ var toPrimitive$1 = function (input, pref) {
390
+ if (!isObject$5(input) || isSymbol$1(input)) return input;
391
+ var exoticToPrim = getMethod(input, TO_PRIMITIVE);
392
+ var result;
393
+ if (exoticToPrim) {
394
+ if (pref === undefined) pref = 'default';
395
+ result = call$2(exoticToPrim, input, pref);
396
+ if (!isObject$5(result) || isSymbol$1(result)) return result;
397
+ throw new $TypeError$5("Can't convert object to primitive value");
586
398
  }
587
- return result;
399
+ if (pref === undefined) pref = 'number';
400
+ return ordinaryToPrimitive(input, pref);
588
401
  };
589
402
 
590
- // IE8- don't enum bug keys
591
- var enumBugKeys$3 = [
592
- 'constructor',
593
- 'hasOwnProperty',
594
- 'isPrototypeOf',
595
- 'propertyIsEnumerable',
596
- 'toLocaleString',
597
- 'toString',
598
- 'valueOf'
599
- ];
600
-
601
- var internalObjectKeys$1 = objectKeysInternal;
602
- var enumBugKeys$2 = enumBugKeys$3;
403
+ var toPrimitive = toPrimitive$1;
404
+ var isSymbol = isSymbol$2;
603
405
 
604
- // `Object.keys` method
605
- // https://tc39.es/ecma262/#sec-object.keys
606
- // eslint-disable-next-line es/no-object-keys -- safe
607
- var objectKeys$1 = Object.keys || function keys(O) {
608
- return internalObjectKeys$1(O, enumBugKeys$2);
406
+ // `ToPropertyKey` abstract operation
407
+ // https://tc39.es/ecma262/#sec-topropertykey
408
+ var toPropertyKey$2 = function (argument) {
409
+ var key = toPrimitive(argument, 'string');
410
+ return isSymbol(key) ? key : key + '';
609
411
  };
610
412
 
611
- var DESCRIPTORS$5 = descriptors;
612
- var V8_PROTOTYPE_DEFINE_BUG = v8PrototypeDefineBug;
613
- var definePropertyModule$3 = objectDefineProperty;
614
- var anObject$3 = anObject$5;
615
- var toIndexedObject$2 = toIndexedObject$5;
616
- var objectKeys = objectKeys$1;
413
+ var global$5 = global$c;
414
+ var isObject$4 = isObject$7;
617
415
 
618
- // `Object.defineProperties` method
619
- // https://tc39.es/ecma262/#sec-object.defineproperties
620
- // eslint-disable-next-line es/no-object-defineproperties -- safe
621
- objectDefineProperties.f = DESCRIPTORS$5 && !V8_PROTOTYPE_DEFINE_BUG ? Object.defineProperties : function defineProperties(O, Properties) {
622
- anObject$3(O);
623
- var props = toIndexedObject$2(Properties);
624
- var keys = objectKeys(Properties);
625
- var length = keys.length;
626
- var index = 0;
627
- var key;
628
- while (length > index) definePropertyModule$3.f(O, key = keys[index++], props[key]);
629
- return O;
416
+ var document$1 = global$5.document;
417
+ // typeof document.createElement is 'object' in old IE
418
+ var EXISTS$1 = isObject$4(document$1) && isObject$4(document$1.createElement);
419
+
420
+ var documentCreateElement$2 = function (it) {
421
+ return EXISTS$1 ? document$1.createElement(it) : {};
630
422
  };
631
423
 
632
- var getBuiltIn$1 = getBuiltIn$3;
424
+ var DESCRIPTORS$9 = descriptors;
425
+ var fails$7 = fails$c;
426
+ var createElement = documentCreateElement$2;
633
427
 
634
- var html$1 = getBuiltIn$1('document', 'documentElement');
428
+ // Thanks to IE8 for its funny defineProperty
429
+ var ie8DomDefine = !DESCRIPTORS$9 && !fails$7(function () {
430
+ // eslint-disable-next-line es/no-object-defineproperty -- required for testing
431
+ return Object.defineProperty(createElement('div'), 'a', {
432
+ get: function () { return 7; }
433
+ }).a !== 7;
434
+ });
635
435
 
636
- var shared$1 = shared$3.exports;
637
- var uid = uid$2;
436
+ var DESCRIPTORS$8 = descriptors;
437
+ var call$1 = functionCall;
438
+ var propertyIsEnumerableModule = objectPropertyIsEnumerable;
439
+ var createPropertyDescriptor$2 = createPropertyDescriptor$3;
440
+ var toIndexedObject$4 = toIndexedObject$5;
441
+ var toPropertyKey$1 = toPropertyKey$2;
442
+ var hasOwn$7 = hasOwnProperty_1;
443
+ var IE8_DOM_DEFINE$1 = ie8DomDefine;
638
444
 
639
- var keys = shared$1('keys');
445
+ // eslint-disable-next-line es/no-object-getownpropertydescriptor -- safe
446
+ var $getOwnPropertyDescriptor$1 = Object.getOwnPropertyDescriptor;
640
447
 
641
- var sharedKey$3 = function (key) {
642
- return keys[key] || (keys[key] = uid(key));
448
+ // `Object.getOwnPropertyDescriptor` method
449
+ // https://tc39.es/ecma262/#sec-object.getownpropertydescriptor
450
+ objectGetOwnPropertyDescriptor.f = DESCRIPTORS$8 ? $getOwnPropertyDescriptor$1 : function getOwnPropertyDescriptor(O, P) {
451
+ O = toIndexedObject$4(O);
452
+ P = toPropertyKey$1(P);
453
+ if (IE8_DOM_DEFINE$1) try {
454
+ return $getOwnPropertyDescriptor$1(O, P);
455
+ } catch (error) { /* empty */ }
456
+ if (hasOwn$7(O, P)) return createPropertyDescriptor$2(!call$1(propertyIsEnumerableModule.f, O, P), O[P]);
643
457
  };
644
458
 
645
- /* global ActiveXObject -- old IE, WSH */
646
- var anObject$2 = anObject$5;
647
- var definePropertiesModule = objectDefineProperties;
648
- var enumBugKeys$1 = enumBugKeys$3;
649
- var hiddenKeys$2 = hiddenKeys$4;
650
- var html = html$1;
651
- var documentCreateElement$1 = documentCreateElement$2;
652
- var sharedKey$2 = sharedKey$3;
459
+ var objectDefineProperty = {};
653
460
 
654
- var GT = '>';
655
- var LT = '<';
656
- var PROTOTYPE = 'prototype';
657
- var SCRIPT = 'script';
658
- var IE_PROTO$1 = sharedKey$2('IE_PROTO');
461
+ var DESCRIPTORS$7 = descriptors;
462
+ var fails$6 = fails$c;
659
463
 
660
- var EmptyConstructor = function () { /* empty */ };
464
+ // V8 ~ Chrome 36-
465
+ // https://bugs.chromium.org/p/v8/issues/detail?id=3334
466
+ var v8PrototypeDefineBug = DESCRIPTORS$7 && fails$6(function () {
467
+ // eslint-disable-next-line es/no-object-defineproperty -- required for testing
468
+ return Object.defineProperty(function () { /* empty */ }, 'prototype', {
469
+ value: 42,
470
+ writable: false
471
+ }).prototype !== 42;
472
+ });
661
473
 
662
- var scriptTag = function (content) {
663
- return LT + SCRIPT + GT + content + LT + '/' + SCRIPT + GT;
664
- };
474
+ var isObject$3 = isObject$7;
665
475
 
666
- // Create object with fake `null` prototype: use ActiveX Object with cleared prototype
667
- var NullProtoObjectViaActiveX = function (activeXDocument) {
668
- activeXDocument.write(scriptTag(''));
669
- activeXDocument.close();
670
- var temp = activeXDocument.parentWindow.Object;
671
- activeXDocument = null; // avoid memory leak
672
- return temp;
673
- };
476
+ var $String$3 = String;
477
+ var $TypeError$4 = TypeError;
674
478
 
675
- // Create object with fake `null` prototype: use iframe Object with cleared prototype
676
- var NullProtoObjectViaIFrame = function () {
677
- // Thrash, waste and sodomy: IE GC bug
678
- var iframe = documentCreateElement$1('iframe');
679
- var JS = 'java' + SCRIPT + ':';
680
- var iframeDocument;
681
- iframe.style.display = 'none';
682
- html.appendChild(iframe);
683
- // https://github.com/zloirock/core-js/issues/475
684
- iframe.src = String(JS);
685
- iframeDocument = iframe.contentWindow.document;
686
- iframeDocument.open();
687
- iframeDocument.write(scriptTag('document.F=Object'));
688
- iframeDocument.close();
689
- return iframeDocument.F;
479
+ // `Assert: Type(argument) is Object`
480
+ var anObject$5 = function (argument) {
481
+ if (isObject$3(argument)) return argument;
482
+ throw new $TypeError$4($String$3(argument) + ' is not an object');
690
483
  };
691
484
 
692
- // Check for document.domain and active x support
693
- // No need to use active x approach when document.domain is not set
694
- // see https://github.com/es-shims/es5-shim/issues/150
695
- // variation of https://github.com/kitcambridge/es5-shim/commit/4f738ac066346
696
- // avoid IE GC bug
697
- var activeXDocument;
698
- var NullProtoObject = function () {
699
- try {
700
- activeXDocument = new ActiveXObject('htmlfile');
701
- } catch (error) { /* ignore */ }
702
- NullProtoObject = typeof document != 'undefined'
703
- ? document.domain && activeXDocument
704
- ? NullProtoObjectViaActiveX(activeXDocument) // old IE
705
- : NullProtoObjectViaIFrame()
706
- : NullProtoObjectViaActiveX(activeXDocument); // WSH
707
- var length = enumBugKeys$1.length;
708
- while (length--) delete NullProtoObject[PROTOTYPE][enumBugKeys$1[length]];
709
- return NullProtoObject();
485
+ var DESCRIPTORS$6 = descriptors;
486
+ var IE8_DOM_DEFINE = ie8DomDefine;
487
+ var V8_PROTOTYPE_DEFINE_BUG$1 = v8PrototypeDefineBug;
488
+ var anObject$4 = anObject$5;
489
+ var toPropertyKey = toPropertyKey$2;
490
+
491
+ var $TypeError$3 = TypeError;
492
+ // eslint-disable-next-line es/no-object-defineproperty -- safe
493
+ var $defineProperty = Object.defineProperty;
494
+ // eslint-disable-next-line es/no-object-getownpropertydescriptor -- safe
495
+ var $getOwnPropertyDescriptor = Object.getOwnPropertyDescriptor;
496
+ var ENUMERABLE = 'enumerable';
497
+ var CONFIGURABLE$1 = 'configurable';
498
+ var WRITABLE = 'writable';
499
+
500
+ // `Object.defineProperty` method
501
+ // https://tc39.es/ecma262/#sec-object.defineproperty
502
+ objectDefineProperty.f = DESCRIPTORS$6 ? V8_PROTOTYPE_DEFINE_BUG$1 ? function defineProperty(O, P, Attributes) {
503
+ anObject$4(O);
504
+ P = toPropertyKey(P);
505
+ anObject$4(Attributes);
506
+ if (typeof O === 'function' && P === 'prototype' && 'value' in Attributes && WRITABLE in Attributes && !Attributes[WRITABLE]) {
507
+ var current = $getOwnPropertyDescriptor(O, P);
508
+ if (current && current[WRITABLE]) {
509
+ O[P] = Attributes.value;
510
+ Attributes = {
511
+ configurable: CONFIGURABLE$1 in Attributes ? Attributes[CONFIGURABLE$1] : current[CONFIGURABLE$1],
512
+ enumerable: ENUMERABLE in Attributes ? Attributes[ENUMERABLE] : current[ENUMERABLE],
513
+ writable: false
514
+ };
515
+ }
516
+ } return $defineProperty(O, P, Attributes);
517
+ } : $defineProperty : function defineProperty(O, P, Attributes) {
518
+ anObject$4(O);
519
+ P = toPropertyKey(P);
520
+ anObject$4(Attributes);
521
+ if (IE8_DOM_DEFINE) try {
522
+ return $defineProperty(O, P, Attributes);
523
+ } catch (error) { /* empty */ }
524
+ if ('get' in Attributes || 'set' in Attributes) throw new $TypeError$3('Accessors not supported');
525
+ if ('value' in Attributes) O[P] = Attributes.value;
526
+ return O;
710
527
  };
711
528
 
712
- hiddenKeys$2[IE_PROTO$1] = true;
529
+ var DESCRIPTORS$5 = descriptors;
530
+ var definePropertyModule$3 = objectDefineProperty;
531
+ var createPropertyDescriptor$1 = createPropertyDescriptor$3;
713
532
 
714
- // `Object.create` method
715
- // https://tc39.es/ecma262/#sec-object.create
716
- // eslint-disable-next-line es/no-object-create -- safe
717
- var objectCreate = Object.create || function create(O, Properties) {
718
- var result;
719
- if (O !== null) {
720
- EmptyConstructor[PROTOTYPE] = anObject$2(O);
721
- result = new EmptyConstructor();
722
- EmptyConstructor[PROTOTYPE] = null;
723
- // add "__proto__" for Object.getPrototypeOf polyfill
724
- result[IE_PROTO$1] = O;
725
- } else result = NullProtoObject();
726
- return Properties === undefined ? result : definePropertiesModule.f(result, Properties);
533
+ var createNonEnumerableProperty$4 = DESCRIPTORS$5 ? function (object, key, value) {
534
+ return definePropertyModule$3.f(object, key, createPropertyDescriptor$1(1, value));
535
+ } : function (object, key, value) {
536
+ object[key] = value;
537
+ return object;
727
538
  };
728
539
 
729
- var wellKnownSymbol$4 = wellKnownSymbol$6;
730
- var create$1 = objectCreate;
731
- var defineProperty$3 = objectDefineProperty.f;
540
+ var makeBuiltIn$2 = {exports: {}};
732
541
 
733
- var UNSCOPABLES = wellKnownSymbol$4('unscopables');
734
- var ArrayPrototype = Array.prototype;
542
+ var DESCRIPTORS$4 = descriptors;
543
+ var hasOwn$6 = hasOwnProperty_1;
735
544
 
736
- // Array.prototype[@@unscopables]
737
- // https://tc39.es/ecma262/#sec-array.prototype-@@unscopables
738
- if (ArrayPrototype[UNSCOPABLES] === undefined) {
739
- defineProperty$3(ArrayPrototype, UNSCOPABLES, {
740
- configurable: true,
741
- value: create$1(null)
742
- });
743
- }
545
+ var FunctionPrototype = Function.prototype;
546
+ // eslint-disable-next-line es/no-object-getownpropertydescriptor -- safe
547
+ var getDescriptor = DESCRIPTORS$4 && Object.getOwnPropertyDescriptor;
744
548
 
745
- // add a key to Array.prototype[@@unscopables]
746
- var addToUnscopables$1 = function (key) {
747
- ArrayPrototype[UNSCOPABLES][key] = true;
549
+ var EXISTS = hasOwn$6(FunctionPrototype, 'name');
550
+ // additional protection from minified / mangled / dropped function names
551
+ var PROPER = EXISTS && (function something() { /* empty */ }).name === 'something';
552
+ var CONFIGURABLE = EXISTS && (!DESCRIPTORS$4 || (DESCRIPTORS$4 && getDescriptor(FunctionPrototype, 'name').configurable));
553
+
554
+ var functionName = {
555
+ EXISTS: EXISTS,
556
+ PROPER: PROPER,
557
+ CONFIGURABLE: CONFIGURABLE
748
558
  };
749
559
 
750
- var iterators = {};
560
+ var uncurryThis$5 = functionUncurryThis;
561
+ var isCallable$8 = isCallable$e;
562
+ var store$1 = sharedStore;
563
+
564
+ var functionToString = uncurryThis$5(Function.toString);
565
+
566
+ // this helper broken in `core-js@3.4.1-3.4.4`, so we can't use `shared` helper
567
+ if (!isCallable$8(store$1.inspectSource)) {
568
+ store$1.inspectSource = function (it) {
569
+ return functionToString(it);
570
+ };
571
+ }
572
+
573
+ var inspectSource$1 = store$1.inspectSource;
751
574
 
752
575
  var global$4 = global$c;
753
- var isCallable$7 = isCallable$d;
576
+ var isCallable$7 = isCallable$e;
754
577
 
755
578
  var WeakMap$1 = global$4.WeakMap;
756
579
 
757
580
  var weakMapBasicDetection = isCallable$7(WeakMap$1) && /native code/.test(String(WeakMap$1));
758
581
 
759
- var createPropertyDescriptor$3 = function (bitmap, value) {
760
- return {
761
- enumerable: !(bitmap & 1),
762
- configurable: !(bitmap & 2),
763
- writable: !(bitmap & 4),
764
- value: value
765
- };
766
- };
582
+ var shared$1 = shared$3.exports;
583
+ var uid = uid$2;
767
584
 
768
- var DESCRIPTORS$4 = descriptors;
769
- var definePropertyModule$2 = objectDefineProperty;
770
- var createPropertyDescriptor$2 = createPropertyDescriptor$3;
585
+ var keys = shared$1('keys');
771
586
 
772
- var createNonEnumerableProperty$4 = DESCRIPTORS$4 ? function (object, key, value) {
773
- return definePropertyModule$2.f(object, key, createPropertyDescriptor$2(1, value));
774
- } : function (object, key, value) {
775
- object[key] = value;
776
- return object;
587
+ var sharedKey$3 = function (key) {
588
+ return keys[key] || (keys[key] = uid(key));
777
589
  };
778
590
 
591
+ var hiddenKeys$4 = {};
592
+
779
593
  var NATIVE_WEAK_MAP = weakMapBasicDetection;
780
594
  var global$3 = global$c;
781
595
  var isObject$2 = isObject$7;
782
596
  var createNonEnumerableProperty$3 = createNonEnumerableProperty$4;
783
- var hasOwn$6 = hasOwnProperty_1;
597
+ var hasOwn$5 = hasOwnProperty_1;
784
598
  var shared = sharedStore;
785
- var sharedKey$1 = sharedKey$3;
786
- var hiddenKeys$1 = hiddenKeys$4;
599
+ var sharedKey$2 = sharedKey$3;
600
+ var hiddenKeys$3 = hiddenKeys$4;
787
601
 
788
602
  var OBJECT_ALREADY_INITIALIZED = 'Object already initialized';
789
603
  var TypeError$1 = global$3.TypeError;
@@ -804,38 +618,38 @@ var getterFor = function (TYPE) {
804
618
  };
805
619
 
806
620
  if (NATIVE_WEAK_MAP || shared.state) {
807
- var store$1 = shared.state || (shared.state = new WeakMap());
621
+ var store = shared.state || (shared.state = new WeakMap());
808
622
  /* eslint-disable no-self-assign -- prototype methods protection */
809
- store$1.get = store$1.get;
810
- store$1.has = store$1.has;
811
- store$1.set = store$1.set;
623
+ store.get = store.get;
624
+ store.has = store.has;
625
+ store.set = store.set;
812
626
  /* eslint-enable no-self-assign -- prototype methods protection */
813
627
  set = function (it, metadata) {
814
- if (store$1.has(it)) throw new TypeError$1(OBJECT_ALREADY_INITIALIZED);
628
+ if (store.has(it)) throw new TypeError$1(OBJECT_ALREADY_INITIALIZED);
815
629
  metadata.facade = it;
816
- store$1.set(it, metadata);
630
+ store.set(it, metadata);
817
631
  return metadata;
818
632
  };
819
633
  get = function (it) {
820
- return store$1.get(it) || {};
634
+ return store.get(it) || {};
821
635
  };
822
636
  has = function (it) {
823
- return store$1.has(it);
637
+ return store.has(it);
824
638
  };
825
639
  } else {
826
- var STATE = sharedKey$1('state');
827
- hiddenKeys$1[STATE] = true;
640
+ var STATE = sharedKey$2('state');
641
+ hiddenKeys$3[STATE] = true;
828
642
  set = function (it, metadata) {
829
- if (hasOwn$6(it, STATE)) throw new TypeError$1(OBJECT_ALREADY_INITIALIZED);
643
+ if (hasOwn$5(it, STATE)) throw new TypeError$1(OBJECT_ALREADY_INITIALIZED);
830
644
  metadata.facade = it;
831
645
  createNonEnumerableProperty$3(it, STATE, metadata);
832
646
  return metadata;
833
647
  };
834
648
  get = function (it) {
835
- return hasOwn$6(it, STATE) ? it[STATE] : {};
649
+ return hasOwn$5(it, STATE) ? it[STATE] : {};
836
650
  };
837
651
  has = function (it) {
838
- return hasOwn$6(it, STATE);
652
+ return hasOwn$5(it, STATE);
839
653
  };
840
654
  }
841
655
 
@@ -847,127 +661,51 @@ var internalState = {
847
661
  getterFor: getterFor
848
662
  };
849
663
 
850
- var objectGetOwnPropertyDescriptor = {};
851
-
852
- var objectPropertyIsEnumerable = {};
853
-
854
- var $propertyIsEnumerable = {}.propertyIsEnumerable;
855
- // eslint-disable-next-line es/no-object-getownpropertydescriptor -- safe
856
- var getOwnPropertyDescriptor$1 = Object.getOwnPropertyDescriptor;
857
-
858
- // Nashorn ~ JDK8 bug
859
- var NASHORN_BUG = getOwnPropertyDescriptor$1 && !$propertyIsEnumerable.call({ 1: 2 }, 1);
860
-
861
- // `Object.prototype.propertyIsEnumerable` method implementation
862
- // https://tc39.es/ecma262/#sec-object.prototype.propertyisenumerable
863
- objectPropertyIsEnumerable.f = NASHORN_BUG ? function propertyIsEnumerable(V) {
864
- var descriptor = getOwnPropertyDescriptor$1(this, V);
865
- return !!descriptor && descriptor.enumerable;
866
- } : $propertyIsEnumerable;
867
-
868
- var DESCRIPTORS$3 = descriptors;
869
- var call$1 = functionCall;
870
- var propertyIsEnumerableModule = objectPropertyIsEnumerable;
871
- var createPropertyDescriptor$1 = createPropertyDescriptor$3;
872
- var toIndexedObject$1 = toIndexedObject$5;
873
- var toPropertyKey = toPropertyKey$2;
874
- var hasOwn$5 = hasOwnProperty_1;
875
- var IE8_DOM_DEFINE = ie8DomDefine;
876
-
877
- // eslint-disable-next-line es/no-object-getownpropertydescriptor -- safe
878
- var $getOwnPropertyDescriptor = Object.getOwnPropertyDescriptor;
879
-
880
- // `Object.getOwnPropertyDescriptor` method
881
- // https://tc39.es/ecma262/#sec-object.getownpropertydescriptor
882
- objectGetOwnPropertyDescriptor.f = DESCRIPTORS$3 ? $getOwnPropertyDescriptor : function getOwnPropertyDescriptor(O, P) {
883
- O = toIndexedObject$1(O);
884
- P = toPropertyKey(P);
885
- if (IE8_DOM_DEFINE) try {
886
- return $getOwnPropertyDescriptor(O, P);
887
- } catch (error) { /* empty */ }
888
- if (hasOwn$5(O, P)) return createPropertyDescriptor$1(!call$1(propertyIsEnumerableModule.f, O, P), O[P]);
889
- };
890
-
891
- var makeBuiltIn$2 = {exports: {}};
892
-
893
- var DESCRIPTORS$2 = descriptors;
664
+ var uncurryThis$4 = functionUncurryThis;
665
+ var fails$5 = fails$c;
666
+ var isCallable$6 = isCallable$e;
894
667
  var hasOwn$4 = hasOwnProperty_1;
895
-
896
- var FunctionPrototype = Function.prototype;
897
- // eslint-disable-next-line es/no-object-getownpropertydescriptor -- safe
898
- var getDescriptor = DESCRIPTORS$2 && Object.getOwnPropertyDescriptor;
899
-
900
- var EXISTS = hasOwn$4(FunctionPrototype, 'name');
901
- // additional protection from minified / mangled / dropped function names
902
- var PROPER = EXISTS && (function something() { /* empty */ }).name === 'something';
903
- var CONFIGURABLE = EXISTS && (!DESCRIPTORS$2 || (DESCRIPTORS$2 && getDescriptor(FunctionPrototype, 'name').configurable));
904
-
905
- var functionName = {
906
- EXISTS: EXISTS,
907
- PROPER: PROPER,
908
- CONFIGURABLE: CONFIGURABLE
909
- };
910
-
911
- var uncurryThis$3 = functionUncurryThis;
912
- var isCallable$6 = isCallable$d;
913
- var store = sharedStore;
914
-
915
- var functionToString = uncurryThis$3(Function.toString);
916
-
917
- // this helper broken in `core-js@3.4.1-3.4.4`, so we can't use `shared` helper
918
- if (!isCallable$6(store.inspectSource)) {
919
- store.inspectSource = function (it) {
920
- return functionToString(it);
921
- };
922
- }
923
-
924
- var inspectSource$1 = store.inspectSource;
925
-
926
- var uncurryThis$2 = functionUncurryThis;
927
- var fails$3 = fails$a;
928
- var isCallable$5 = isCallable$d;
929
- var hasOwn$3 = hasOwnProperty_1;
930
- var DESCRIPTORS$1 = descriptors;
668
+ var DESCRIPTORS$3 = descriptors;
931
669
  var CONFIGURABLE_FUNCTION_NAME$1 = functionName.CONFIGURABLE;
932
670
  var inspectSource = inspectSource$1;
933
671
  var InternalStateModule$1 = internalState;
934
672
 
935
673
  var enforceInternalState = InternalStateModule$1.enforce;
936
674
  var getInternalState$1 = InternalStateModule$1.get;
937
- var $String$1 = String;
675
+ var $String$2 = String;
938
676
  // eslint-disable-next-line es/no-object-defineproperty -- safe
939
- var defineProperty$2 = Object.defineProperty;
940
- var stringSlice = uncurryThis$2(''.slice);
941
- var replace = uncurryThis$2(''.replace);
942
- var join = uncurryThis$2([].join);
677
+ var defineProperty$3 = Object.defineProperty;
678
+ var stringSlice = uncurryThis$4(''.slice);
679
+ var replace = uncurryThis$4(''.replace);
680
+ var join = uncurryThis$4([].join);
943
681
 
944
- var CONFIGURABLE_LENGTH = DESCRIPTORS$1 && !fails$3(function () {
945
- return defineProperty$2(function () { /* empty */ }, 'length', { value: 8 }).length !== 8;
682
+ var CONFIGURABLE_LENGTH = DESCRIPTORS$3 && !fails$5(function () {
683
+ return defineProperty$3(function () { /* empty */ }, 'length', { value: 8 }).length !== 8;
946
684
  });
947
685
 
948
686
  var TEMPLATE = String(String).split('String');
949
687
 
950
688
  var makeBuiltIn$1 = makeBuiltIn$2.exports = function (value, name, options) {
951
- if (stringSlice($String$1(name), 0, 7) === 'Symbol(') {
952
- name = '[' + replace($String$1(name), /^Symbol\(([^)]*)\).*$/, '$1') + ']';
689
+ if (stringSlice($String$2(name), 0, 7) === 'Symbol(') {
690
+ name = '[' + replace($String$2(name), /^Symbol\(([^)]*)\).*$/, '$1') + ']';
953
691
  }
954
692
  if (options && options.getter) name = 'get ' + name;
955
693
  if (options && options.setter) name = 'set ' + name;
956
- if (!hasOwn$3(value, 'name') || (CONFIGURABLE_FUNCTION_NAME$1 && value.name !== name)) {
957
- if (DESCRIPTORS$1) defineProperty$2(value, 'name', { value: name, configurable: true });
694
+ if (!hasOwn$4(value, 'name') || (CONFIGURABLE_FUNCTION_NAME$1 && value.name !== name)) {
695
+ if (DESCRIPTORS$3) defineProperty$3(value, 'name', { value: name, configurable: true });
958
696
  else value.name = name;
959
697
  }
960
- if (CONFIGURABLE_LENGTH && options && hasOwn$3(options, 'arity') && value.length !== options.arity) {
961
- defineProperty$2(value, 'length', { value: options.arity });
698
+ if (CONFIGURABLE_LENGTH && options && hasOwn$4(options, 'arity') && value.length !== options.arity) {
699
+ defineProperty$3(value, 'length', { value: options.arity });
962
700
  }
963
701
  try {
964
- if (options && hasOwn$3(options, 'constructor') && options.constructor) {
965
- if (DESCRIPTORS$1) defineProperty$2(value, 'prototype', { writable: false });
702
+ if (options && hasOwn$4(options, 'constructor') && options.constructor) {
703
+ if (DESCRIPTORS$3) defineProperty$3(value, 'prototype', { writable: false });
966
704
  // in V8 ~ Chrome 53, prototypes of some methods, like `Array.prototype.values`, are non-writable
967
705
  } else if (value.prototype) value.prototype = undefined;
968
706
  } catch (error) { /* empty */ }
969
707
  var state = enforceInternalState(value);
970
- if (!hasOwn$3(state, 'source')) {
708
+ if (!hasOwn$4(state, 'source')) {
971
709
  state.source = join(TEMPLATE, typeof name == 'string' ? name : '');
972
710
  } return value;
973
711
  };
@@ -975,49 +713,167 @@ var makeBuiltIn$1 = makeBuiltIn$2.exports = function (value, name, options) {
975
713
  // add fake Function#toString for correct work wrapped methods / constructors with methods like LoDash isNative
976
714
  // eslint-disable-next-line no-extend-native -- required
977
715
  Function.prototype.toString = makeBuiltIn$1(function toString() {
978
- return isCallable$5(this) && getInternalState$1(this).source || inspectSource(this);
716
+ return isCallable$6(this) && getInternalState$1(this).source || inspectSource(this);
979
717
  }, 'toString');
980
718
 
981
- var isCallable$4 = isCallable$d;
982
- var definePropertyModule$1 = objectDefineProperty;
983
- var makeBuiltIn = makeBuiltIn$2.exports;
984
- var defineGlobalProperty$1 = defineGlobalProperty$3;
719
+ var isCallable$5 = isCallable$e;
720
+ var definePropertyModule$2 = objectDefineProperty;
721
+ var makeBuiltIn = makeBuiltIn$2.exports;
722
+ var defineGlobalProperty$1 = defineGlobalProperty$3;
723
+
724
+ var defineBuiltIn$3 = function (O, key, value, options) {
725
+ if (!options) options = {};
726
+ var simple = options.enumerable;
727
+ var name = options.name !== undefined ? options.name : key;
728
+ if (isCallable$5(value)) makeBuiltIn(value, name, options);
729
+ if (options.global) {
730
+ if (simple) O[key] = value;
731
+ else defineGlobalProperty$1(key, value);
732
+ } else {
733
+ try {
734
+ if (!options.unsafe) delete O[key];
735
+ else if (O[key]) simple = true;
736
+ } catch (error) { /* empty */ }
737
+ if (simple) O[key] = value;
738
+ else definePropertyModule$2.f(O, key, {
739
+ value: value,
740
+ enumerable: false,
741
+ configurable: !options.nonConfigurable,
742
+ writable: !options.nonWritable
743
+ });
744
+ } return O;
745
+ };
746
+
747
+ var objectGetOwnPropertyNames = {};
748
+
749
+ var ceil = Math.ceil;
750
+ var floor = Math.floor;
751
+
752
+ // `Math.trunc` method
753
+ // https://tc39.es/ecma262/#sec-math.trunc
754
+ // eslint-disable-next-line es/no-math-trunc -- safe
755
+ var mathTrunc = Math.trunc || function trunc(x) {
756
+ var n = +x;
757
+ return (n > 0 ? floor : ceil)(n);
758
+ };
759
+
760
+ var trunc = mathTrunc;
761
+
762
+ // `ToIntegerOrInfinity` abstract operation
763
+ // https://tc39.es/ecma262/#sec-tointegerorinfinity
764
+ var toIntegerOrInfinity$4 = function (argument) {
765
+ var number = +argument;
766
+ // eslint-disable-next-line no-self-compare -- NaN check
767
+ return number !== number || number === 0 ? 0 : trunc(number);
768
+ };
769
+
770
+ var toIntegerOrInfinity$3 = toIntegerOrInfinity$4;
771
+
772
+ var max = Math.max;
773
+ var min$1 = Math.min;
774
+
775
+ // Helper for a popular repeating case of the spec:
776
+ // Let integer be ? ToInteger(index).
777
+ // If integer < 0, let result be max((length + integer), 0); else let result be min(integer, length).
778
+ var toAbsoluteIndex$1 = function (index, length) {
779
+ var integer = toIntegerOrInfinity$3(index);
780
+ return integer < 0 ? max(integer + length, 0) : min$1(integer, length);
781
+ };
782
+
783
+ var toIntegerOrInfinity$2 = toIntegerOrInfinity$4;
784
+
785
+ var min = Math.min;
786
+
787
+ // `ToLength` abstract operation
788
+ // https://tc39.es/ecma262/#sec-tolength
789
+ var toLength$1 = function (argument) {
790
+ var len = toIntegerOrInfinity$2(argument);
791
+ return len > 0 ? min(len, 0x1FFFFFFFFFFFFF) : 0; // 2 ** 53 - 1 == 9007199254740991
792
+ };
793
+
794
+ var toLength = toLength$1;
795
+
796
+ // `LengthOfArrayLike` abstract operation
797
+ // https://tc39.es/ecma262/#sec-lengthofarraylike
798
+ var lengthOfArrayLike$3 = function (obj) {
799
+ return toLength(obj.length);
800
+ };
801
+
802
+ var toIndexedObject$3 = toIndexedObject$5;
803
+ var toAbsoluteIndex = toAbsoluteIndex$1;
804
+ var lengthOfArrayLike$2 = lengthOfArrayLike$3;
805
+
806
+ // `Array.prototype.{ indexOf, includes }` methods implementation
807
+ var createMethod = function (IS_INCLUDES) {
808
+ return function ($this, el, fromIndex) {
809
+ var O = toIndexedObject$3($this);
810
+ var length = lengthOfArrayLike$2(O);
811
+ var index = toAbsoluteIndex(fromIndex, length);
812
+ var value;
813
+ // Array#includes uses SameValueZero equality algorithm
814
+ // eslint-disable-next-line no-self-compare -- NaN check
815
+ if (IS_INCLUDES && el !== el) while (length > index) {
816
+ value = O[index++];
817
+ // eslint-disable-next-line no-self-compare -- NaN check
818
+ if (value !== value) return true;
819
+ // Array#indexOf ignores holes, Array#includes - not
820
+ } else for (;length > index; index++) {
821
+ if ((IS_INCLUDES || index in O) && O[index] === el) return IS_INCLUDES || index || 0;
822
+ } return !IS_INCLUDES && -1;
823
+ };
824
+ };
825
+
826
+ var arrayIncludes = {
827
+ // `Array.prototype.includes` method
828
+ // https://tc39.es/ecma262/#sec-array.prototype.includes
829
+ includes: createMethod(true),
830
+ // `Array.prototype.indexOf` method
831
+ // https://tc39.es/ecma262/#sec-array.prototype.indexof
832
+ indexOf: createMethod(false)
833
+ };
834
+
835
+ var uncurryThis$3 = functionUncurryThis;
836
+ var hasOwn$3 = hasOwnProperty_1;
837
+ var toIndexedObject$2 = toIndexedObject$5;
838
+ var indexOf = arrayIncludes.indexOf;
839
+ var hiddenKeys$2 = hiddenKeys$4;
840
+
841
+ var push = uncurryThis$3([].push);
985
842
 
986
- var defineBuiltIn$3 = function (O, key, value, options) {
987
- if (!options) options = {};
988
- var simple = options.enumerable;
989
- var name = options.name !== undefined ? options.name : key;
990
- if (isCallable$4(value)) makeBuiltIn(value, name, options);
991
- if (options.global) {
992
- if (simple) O[key] = value;
993
- else defineGlobalProperty$1(key, value);
994
- } else {
995
- try {
996
- if (!options.unsafe) delete O[key];
997
- else if (O[key]) simple = true;
998
- } catch (error) { /* empty */ }
999
- if (simple) O[key] = value;
1000
- else definePropertyModule$1.f(O, key, {
1001
- value: value,
1002
- enumerable: false,
1003
- configurable: !options.nonConfigurable,
1004
- writable: !options.nonWritable
1005
- });
1006
- } return O;
843
+ var objectKeysInternal = function (object, names) {
844
+ var O = toIndexedObject$2(object);
845
+ var i = 0;
846
+ var result = [];
847
+ var key;
848
+ for (key in O) !hasOwn$3(hiddenKeys$2, key) && hasOwn$3(O, key) && push(result, key);
849
+ // Don't enum bug & hidden keys
850
+ while (names.length > i) if (hasOwn$3(O, key = names[i++])) {
851
+ ~indexOf(result, key) || push(result, key);
852
+ }
853
+ return result;
1007
854
  };
1008
855
 
1009
- var objectGetOwnPropertyNames = {};
856
+ // IE8- don't enum bug keys
857
+ var enumBugKeys$3 = [
858
+ 'constructor',
859
+ 'hasOwnProperty',
860
+ 'isPrototypeOf',
861
+ 'propertyIsEnumerable',
862
+ 'toLocaleString',
863
+ 'toString',
864
+ 'valueOf'
865
+ ];
1010
866
 
1011
- var internalObjectKeys = objectKeysInternal;
1012
- var enumBugKeys = enumBugKeys$3;
867
+ var internalObjectKeys$1 = objectKeysInternal;
868
+ var enumBugKeys$2 = enumBugKeys$3;
1013
869
 
1014
- var hiddenKeys = enumBugKeys.concat('length', 'prototype');
870
+ var hiddenKeys$1 = enumBugKeys$2.concat('length', 'prototype');
1015
871
 
1016
872
  // `Object.getOwnPropertyNames` method
1017
873
  // https://tc39.es/ecma262/#sec-object.getownpropertynames
1018
874
  // eslint-disable-next-line es/no-object-getownpropertynames -- safe
1019
875
  objectGetOwnPropertyNames.f = Object.getOwnPropertyNames || function getOwnPropertyNames(O) {
1020
- return internalObjectKeys(O, hiddenKeys);
876
+ return internalObjectKeys$1(O, hiddenKeys$1);
1021
877
  };
1022
878
 
1023
879
  var objectGetOwnPropertySymbols = {};
@@ -1025,17 +881,17 @@ var objectGetOwnPropertySymbols = {};
1025
881
  // eslint-disable-next-line es/no-object-getownpropertysymbols -- safe
1026
882
  objectGetOwnPropertySymbols.f = Object.getOwnPropertySymbols;
1027
883
 
1028
- var getBuiltIn = getBuiltIn$3;
1029
- var uncurryThis$1 = functionUncurryThis;
884
+ var getBuiltIn$1 = getBuiltIn$3;
885
+ var uncurryThis$2 = functionUncurryThis;
1030
886
  var getOwnPropertyNamesModule = objectGetOwnPropertyNames;
1031
887
  var getOwnPropertySymbolsModule = objectGetOwnPropertySymbols;
1032
- var anObject$1 = anObject$5;
888
+ var anObject$3 = anObject$5;
1033
889
 
1034
- var concat = uncurryThis$1([].concat);
890
+ var concat = uncurryThis$2([].concat);
1035
891
 
1036
892
  // all object keys, includes non-enumerable and symbols
1037
- var ownKeys$1 = getBuiltIn('Reflect', 'ownKeys') || function ownKeys(it) {
1038
- var keys = getOwnPropertyNamesModule.f(anObject$1(it));
893
+ var ownKeys$1 = getBuiltIn$1('Reflect', 'ownKeys') || function ownKeys(it) {
894
+ var keys = getOwnPropertyNamesModule.f(anObject$3(it));
1039
895
  var getOwnPropertySymbols = getOwnPropertySymbolsModule.f;
1040
896
  return getOwnPropertySymbols ? concat(keys, getOwnPropertySymbols(it)) : keys;
1041
897
  };
@@ -1043,11 +899,11 @@ var ownKeys$1 = getBuiltIn('Reflect', 'ownKeys') || function ownKeys(it) {
1043
899
  var hasOwn$2 = hasOwnProperty_1;
1044
900
  var ownKeys = ownKeys$1;
1045
901
  var getOwnPropertyDescriptorModule = objectGetOwnPropertyDescriptor;
1046
- var definePropertyModule = objectDefineProperty;
902
+ var definePropertyModule$1 = objectDefineProperty;
1047
903
 
1048
904
  var copyConstructorProperties$1 = function (target, source, exceptions) {
1049
905
  var keys = ownKeys(source);
1050
- var defineProperty = definePropertyModule.f;
906
+ var defineProperty = definePropertyModule$1.f;
1051
907
  var getOwnPropertyDescriptor = getOwnPropertyDescriptorModule.f;
1052
908
  for (var i = 0; i < keys.length; i++) {
1053
909
  var key = keys[i];
@@ -1057,8 +913,8 @@ var copyConstructorProperties$1 = function (target, source, exceptions) {
1057
913
  }
1058
914
  };
1059
915
 
1060
- var fails$2 = fails$a;
1061
- var isCallable$3 = isCallable$d;
916
+ var fails$4 = fails$c;
917
+ var isCallable$4 = isCallable$e;
1062
918
 
1063
919
  var replacement = /#|\.prototype\./;
1064
920
 
@@ -1066,7 +922,7 @@ var isForced$1 = function (feature, detection) {
1066
922
  var value = data[normalize(feature)];
1067
923
  return value === POLYFILL ? true
1068
924
  : value === NATIVE ? false
1069
- : isCallable$3(detection) ? fails$2(detection)
925
+ : isCallable$4(detection) ? fails$4(detection)
1070
926
  : !!detection;
1071
927
  };
1072
928
 
@@ -1081,7 +937,7 @@ var POLYFILL = isForced$1.POLYFILL = 'P';
1081
937
  var isForced_1 = isForced$1;
1082
938
 
1083
939
  var global$2 = global$c;
1084
- var getOwnPropertyDescriptor = objectGetOwnPropertyDescriptor.f;
940
+ var getOwnPropertyDescriptor$1 = objectGetOwnPropertyDescriptor.f;
1085
941
  var createNonEnumerableProperty$2 = createNonEnumerableProperty$4;
1086
942
  var defineBuiltIn$2 = defineBuiltIn$3;
1087
943
  var defineGlobalProperty = defineGlobalProperty$3;
@@ -1118,7 +974,7 @@ var _export = function (options, source) {
1118
974
  if (target) for (key in source) {
1119
975
  sourceProperty = source[key];
1120
976
  if (options.dontCallGetSet) {
1121
- descriptor = getOwnPropertyDescriptor(target, key);
977
+ descriptor = getOwnPropertyDescriptor$1(target, key);
1122
978
  targetProperty = descriptor && descriptor.value;
1123
979
  } else targetProperty = target[key];
1124
980
  FORCED = isForced(GLOBAL ? key : TARGET + (STATIC ? '.' : '#') + key, options.forced);
@@ -1135,9 +991,173 @@ var _export = function (options, source) {
1135
991
  }
1136
992
  };
1137
993
 
1138
- var fails$1 = fails$a;
994
+ var objectDefineProperties = {};
995
+
996
+ var internalObjectKeys = objectKeysInternal;
997
+ var enumBugKeys$1 = enumBugKeys$3;
998
+
999
+ // `Object.keys` method
1000
+ // https://tc39.es/ecma262/#sec-object.keys
1001
+ // eslint-disable-next-line es/no-object-keys -- safe
1002
+ var objectKeys$1 = Object.keys || function keys(O) {
1003
+ return internalObjectKeys(O, enumBugKeys$1);
1004
+ };
1005
+
1006
+ var DESCRIPTORS$2 = descriptors;
1007
+ var V8_PROTOTYPE_DEFINE_BUG = v8PrototypeDefineBug;
1008
+ var definePropertyModule = objectDefineProperty;
1009
+ var anObject$2 = anObject$5;
1010
+ var toIndexedObject$1 = toIndexedObject$5;
1011
+ var objectKeys = objectKeys$1;
1012
+
1013
+ // `Object.defineProperties` method
1014
+ // https://tc39.es/ecma262/#sec-object.defineproperties
1015
+ // eslint-disable-next-line es/no-object-defineproperties -- safe
1016
+ objectDefineProperties.f = DESCRIPTORS$2 && !V8_PROTOTYPE_DEFINE_BUG ? Object.defineProperties : function defineProperties(O, Properties) {
1017
+ anObject$2(O);
1018
+ var props = toIndexedObject$1(Properties);
1019
+ var keys = objectKeys(Properties);
1020
+ var length = keys.length;
1021
+ var index = 0;
1022
+ var key;
1023
+ while (length > index) definePropertyModule.f(O, key = keys[index++], props[key]);
1024
+ return O;
1025
+ };
1026
+
1027
+ var getBuiltIn = getBuiltIn$3;
1028
+
1029
+ var html$1 = getBuiltIn('document', 'documentElement');
1030
+
1031
+ /* global ActiveXObject -- old IE, WSH */
1032
+ var anObject$1 = anObject$5;
1033
+ var definePropertiesModule = objectDefineProperties;
1034
+ var enumBugKeys = enumBugKeys$3;
1035
+ var hiddenKeys = hiddenKeys$4;
1036
+ var html = html$1;
1037
+ var documentCreateElement$1 = documentCreateElement$2;
1038
+ var sharedKey$1 = sharedKey$3;
1039
+
1040
+ var GT = '>';
1041
+ var LT = '<';
1042
+ var PROTOTYPE = 'prototype';
1043
+ var SCRIPT = 'script';
1044
+ var IE_PROTO$1 = sharedKey$1('IE_PROTO');
1045
+
1046
+ var EmptyConstructor = function () { /* empty */ };
1047
+
1048
+ var scriptTag = function (content) {
1049
+ return LT + SCRIPT + GT + content + LT + '/' + SCRIPT + GT;
1050
+ };
1051
+
1052
+ // Create object with fake `null` prototype: use ActiveX Object with cleared prototype
1053
+ var NullProtoObjectViaActiveX = function (activeXDocument) {
1054
+ activeXDocument.write(scriptTag(''));
1055
+ activeXDocument.close();
1056
+ var temp = activeXDocument.parentWindow.Object;
1057
+ activeXDocument = null; // avoid memory leak
1058
+ return temp;
1059
+ };
1060
+
1061
+ // Create object with fake `null` prototype: use iframe Object with cleared prototype
1062
+ var NullProtoObjectViaIFrame = function () {
1063
+ // Thrash, waste and sodomy: IE GC bug
1064
+ var iframe = documentCreateElement$1('iframe');
1065
+ var JS = 'java' + SCRIPT + ':';
1066
+ var iframeDocument;
1067
+ iframe.style.display = 'none';
1068
+ html.appendChild(iframe);
1069
+ // https://github.com/zloirock/core-js/issues/475
1070
+ iframe.src = String(JS);
1071
+ iframeDocument = iframe.contentWindow.document;
1072
+ iframeDocument.open();
1073
+ iframeDocument.write(scriptTag('document.F=Object'));
1074
+ iframeDocument.close();
1075
+ return iframeDocument.F;
1076
+ };
1077
+
1078
+ // Check for document.domain and active x support
1079
+ // No need to use active x approach when document.domain is not set
1080
+ // see https://github.com/es-shims/es5-shim/issues/150
1081
+ // variation of https://github.com/kitcambridge/es5-shim/commit/4f738ac066346
1082
+ // avoid IE GC bug
1083
+ var activeXDocument;
1084
+ var NullProtoObject = function () {
1085
+ try {
1086
+ activeXDocument = new ActiveXObject('htmlfile');
1087
+ } catch (error) { /* ignore */ }
1088
+ NullProtoObject = typeof document != 'undefined'
1089
+ ? document.domain && activeXDocument
1090
+ ? NullProtoObjectViaActiveX(activeXDocument) // old IE
1091
+ : NullProtoObjectViaIFrame()
1092
+ : NullProtoObjectViaActiveX(activeXDocument); // WSH
1093
+ var length = enumBugKeys.length;
1094
+ while (length--) delete NullProtoObject[PROTOTYPE][enumBugKeys[length]];
1095
+ return NullProtoObject();
1096
+ };
1097
+
1098
+ hiddenKeys[IE_PROTO$1] = true;
1099
+
1100
+ // `Object.create` method
1101
+ // https://tc39.es/ecma262/#sec-object.create
1102
+ // eslint-disable-next-line es/no-object-create -- safe
1103
+ var objectCreate = Object.create || function create(O, Properties) {
1104
+ var result;
1105
+ if (O !== null) {
1106
+ EmptyConstructor[PROTOTYPE] = anObject$1(O);
1107
+ result = new EmptyConstructor();
1108
+ EmptyConstructor[PROTOTYPE] = null;
1109
+ // add "__proto__" for Object.getPrototypeOf polyfill
1110
+ result[IE_PROTO$1] = O;
1111
+ } else result = NullProtoObject();
1112
+ return Properties === undefined ? result : definePropertiesModule.f(result, Properties);
1113
+ };
1114
+
1115
+ var wellKnownSymbol$6 = wellKnownSymbol$8;
1116
+ var create$1 = objectCreate;
1117
+ var defineProperty$2 = objectDefineProperty.f;
1118
+
1119
+ var UNSCOPABLES = wellKnownSymbol$6('unscopables');
1120
+ var ArrayPrototype = Array.prototype;
1121
+
1122
+ // Array.prototype[@@unscopables]
1123
+ // https://tc39.es/ecma262/#sec-array.prototype-@@unscopables
1124
+ if (ArrayPrototype[UNSCOPABLES] === undefined) {
1125
+ defineProperty$2(ArrayPrototype, UNSCOPABLES, {
1126
+ configurable: true,
1127
+ value: create$1(null)
1128
+ });
1129
+ }
1130
+
1131
+ // add a key to Array.prototype[@@unscopables]
1132
+ var addToUnscopables$2 = function (key) {
1133
+ ArrayPrototype[UNSCOPABLES][key] = true;
1134
+ };
1135
+
1136
+ var $$3 = _export;
1137
+ var toObject$2 = toObject$4;
1138
+ var lengthOfArrayLike$1 = lengthOfArrayLike$3;
1139
+ var toIntegerOrInfinity$1 = toIntegerOrInfinity$4;
1140
+ var addToUnscopables$1 = addToUnscopables$2;
1141
+
1142
+ // `Array.prototype.at` method
1143
+ // https://tc39.es/ecma262/#sec-array.prototype.at
1144
+ $$3({ target: 'Array', proto: true }, {
1145
+ at: function at(index) {
1146
+ var O = toObject$2(this);
1147
+ var len = lengthOfArrayLike$1(O);
1148
+ var relativeIndex = toIntegerOrInfinity$1(index);
1149
+ var k = relativeIndex >= 0 ? relativeIndex : len + relativeIndex;
1150
+ return (k < 0 || k >= len) ? undefined : O[k];
1151
+ }
1152
+ });
1153
+
1154
+ addToUnscopables$1('at');
1155
+
1156
+ var iterators = {};
1157
+
1158
+ var fails$3 = fails$c;
1139
1159
 
1140
- var correctPrototypeGetter = !fails$1(function () {
1160
+ var correctPrototypeGetter = !fails$3(function () {
1141
1161
  function F() { /* empty */ }
1142
1162
  F.prototype.constructor = null;
1143
1163
  // eslint-disable-next-line es/no-object-getprototypeof -- required for testing
@@ -1145,35 +1165,35 @@ var correctPrototypeGetter = !fails$1(function () {
1145
1165
  });
1146
1166
 
1147
1167
  var hasOwn$1 = hasOwnProperty_1;
1148
- var isCallable$2 = isCallable$d;
1149
- var toObject = toObject$2;
1168
+ var isCallable$3 = isCallable$e;
1169
+ var toObject$1 = toObject$4;
1150
1170
  var sharedKey = sharedKey$3;
1151
1171
  var CORRECT_PROTOTYPE_GETTER = correctPrototypeGetter;
1152
1172
 
1153
1173
  var IE_PROTO = sharedKey('IE_PROTO');
1154
- var $Object = Object;
1155
- var ObjectPrototype = $Object.prototype;
1174
+ var $Object$1 = Object;
1175
+ var ObjectPrototype = $Object$1.prototype;
1156
1176
 
1157
1177
  // `Object.getPrototypeOf` method
1158
1178
  // https://tc39.es/ecma262/#sec-object.getprototypeof
1159
1179
  // eslint-disable-next-line es/no-object-getprototypeof -- safe
1160
- var objectGetPrototypeOf = CORRECT_PROTOTYPE_GETTER ? $Object.getPrototypeOf : function (O) {
1161
- var object = toObject(O);
1180
+ var objectGetPrototypeOf = CORRECT_PROTOTYPE_GETTER ? $Object$1.getPrototypeOf : function (O) {
1181
+ var object = toObject$1(O);
1162
1182
  if (hasOwn$1(object, IE_PROTO)) return object[IE_PROTO];
1163
1183
  var constructor = object.constructor;
1164
- if (isCallable$2(constructor) && object instanceof constructor) {
1184
+ if (isCallable$3(constructor) && object instanceof constructor) {
1165
1185
  return constructor.prototype;
1166
- } return object instanceof $Object ? ObjectPrototype : null;
1186
+ } return object instanceof $Object$1 ? ObjectPrototype : null;
1167
1187
  };
1168
1188
 
1169
- var fails = fails$a;
1170
- var isCallable$1 = isCallable$d;
1189
+ var fails$2 = fails$c;
1190
+ var isCallable$2 = isCallable$e;
1171
1191
  var isObject$1 = isObject$7;
1172
1192
  var getPrototypeOf$1 = objectGetPrototypeOf;
1173
1193
  var defineBuiltIn$1 = defineBuiltIn$3;
1174
- var wellKnownSymbol$3 = wellKnownSymbol$6;
1194
+ var wellKnownSymbol$5 = wellKnownSymbol$8;
1175
1195
 
1176
- var ITERATOR$2 = wellKnownSymbol$3('iterator');
1196
+ var ITERATOR$2 = wellKnownSymbol$5('iterator');
1177
1197
  var BUGGY_SAFARI_ITERATORS$1 = false;
1178
1198
 
1179
1199
  // `%IteratorPrototype%` object
@@ -1191,7 +1211,7 @@ if ([].keys) {
1191
1211
  }
1192
1212
  }
1193
1213
 
1194
- var NEW_ITERATOR_PROTOTYPE = !isObject$1(IteratorPrototype$2) || fails(function () {
1214
+ var NEW_ITERATOR_PROTOTYPE = !isObject$1(IteratorPrototype$2) || fails$2(function () {
1195
1215
  var test = {};
1196
1216
  // FF44- legacy iterators case
1197
1217
  return IteratorPrototype$2[ITERATOR$2].call(test) !== test;
@@ -1201,7 +1221,7 @@ if (NEW_ITERATOR_PROTOTYPE) IteratorPrototype$2 = {};
1201
1221
 
1202
1222
  // `%IteratorPrototype%[@@iterator]()` method
1203
1223
  // https://tc39.es/ecma262/#sec-%iteratorprototype%-@@iterator
1204
- if (!isCallable$1(IteratorPrototype$2[ITERATOR$2])) {
1224
+ if (!isCallable$2(IteratorPrototype$2[ITERATOR$2])) {
1205
1225
  defineBuiltIn$1(IteratorPrototype$2, ITERATOR$2, function () {
1206
1226
  return this;
1207
1227
  });
@@ -1214,14 +1234,14 @@ var iteratorsCore = {
1214
1234
 
1215
1235
  var defineProperty$1 = objectDefineProperty.f;
1216
1236
  var hasOwn = hasOwnProperty_1;
1217
- var wellKnownSymbol$2 = wellKnownSymbol$6;
1237
+ var wellKnownSymbol$4 = wellKnownSymbol$8;
1218
1238
 
1219
- var TO_STRING_TAG = wellKnownSymbol$2('toStringTag');
1239
+ var TO_STRING_TAG$2 = wellKnownSymbol$4('toStringTag');
1220
1240
 
1221
1241
  var setToStringTag$3 = function (target, TAG, STATIC) {
1222
1242
  if (target && !STATIC) target = target.prototype;
1223
- if (target && !hasOwn(target, TO_STRING_TAG)) {
1224
- defineProperty$1(target, TO_STRING_TAG, { configurable: true, value: TAG });
1243
+ if (target && !hasOwn(target, TO_STRING_TAG$2)) {
1244
+ defineProperty$1(target, TO_STRING_TAG$2, { configurable: true, value: TAG });
1225
1245
  }
1226
1246
  };
1227
1247
 
@@ -1241,13 +1261,13 @@ var iteratorCreateConstructor = function (IteratorConstructor, NAME, next, ENUME
1241
1261
  return IteratorConstructor;
1242
1262
  };
1243
1263
 
1244
- var uncurryThis = functionUncurryThis;
1264
+ var uncurryThis$1 = functionUncurryThis;
1245
1265
  var aCallable = aCallable$2;
1246
1266
 
1247
1267
  var functionUncurryThisAccessor = function (object, key, method) {
1248
1268
  try {
1249
1269
  // eslint-disable-next-line es/no-object-getownpropertydescriptor -- safe
1250
- return uncurryThis(aCallable(Object.getOwnPropertyDescriptor(object, key)[method]));
1270
+ return uncurryThis$1(aCallable(Object.getOwnPropertyDescriptor(object, key)[method]));
1251
1271
  } catch (error) { /* empty */ }
1252
1272
  };
1253
1273
 
@@ -1259,12 +1279,12 @@ var isPossiblePrototype$1 = function (argument) {
1259
1279
 
1260
1280
  var isPossiblePrototype = isPossiblePrototype$1;
1261
1281
 
1262
- var $String = String;
1263
- var $TypeError = TypeError;
1282
+ var $String$1 = String;
1283
+ var $TypeError$2 = TypeError;
1264
1284
 
1265
1285
  var aPossiblePrototype$1 = function (argument) {
1266
1286
  if (isPossiblePrototype(argument)) return argument;
1267
- throw new $TypeError("Can't set " + $String(argument) + ' as a prototype');
1287
+ throw new $TypeError$2("Can't set " + $String$1(argument) + ' as a prototype');
1268
1288
  };
1269
1289
 
1270
1290
  /* eslint-disable no-proto -- safe */
@@ -1294,17 +1314,17 @@ var objectSetPrototypeOf = Object.setPrototypeOf || ('__proto__' in {} ? functio
1294
1314
  };
1295
1315
  }() : undefined);
1296
1316
 
1297
- var $ = _export;
1317
+ var $$2 = _export;
1298
1318
  var call = functionCall;
1299
1319
  var FunctionName = functionName;
1300
- var isCallable = isCallable$d;
1320
+ var isCallable$1 = isCallable$e;
1301
1321
  var createIteratorConstructor = iteratorCreateConstructor;
1302
1322
  var getPrototypeOf = objectGetPrototypeOf;
1303
1323
  var setPrototypeOf = objectSetPrototypeOf;
1304
1324
  var setToStringTag$1 = setToStringTag$3;
1305
1325
  var createNonEnumerableProperty$1 = createNonEnumerableProperty$4;
1306
1326
  var defineBuiltIn = defineBuiltIn$3;
1307
- var wellKnownSymbol$1 = wellKnownSymbol$6;
1327
+ var wellKnownSymbol$3 = wellKnownSymbol$8;
1308
1328
  var Iterators$1 = iterators;
1309
1329
  var IteratorsCore = iteratorsCore;
1310
1330
 
@@ -1312,7 +1332,7 @@ var PROPER_FUNCTION_NAME = FunctionName.PROPER;
1312
1332
  var CONFIGURABLE_FUNCTION_NAME = FunctionName.CONFIGURABLE;
1313
1333
  var IteratorPrototype = IteratorsCore.IteratorPrototype;
1314
1334
  var BUGGY_SAFARI_ITERATORS = IteratorsCore.BUGGY_SAFARI_ITERATORS;
1315
- var ITERATOR$1 = wellKnownSymbol$1('iterator');
1335
+ var ITERATOR$1 = wellKnownSymbol$3('iterator');
1316
1336
  var KEYS = 'keys';
1317
1337
  var VALUES = 'values';
1318
1338
  var ENTRIES = 'entries';
@@ -1352,7 +1372,7 @@ var iteratorDefine = function (Iterable, NAME, IteratorConstructor, next, DEFAUL
1352
1372
  if (getPrototypeOf(CurrentIteratorPrototype) !== IteratorPrototype) {
1353
1373
  if (setPrototypeOf) {
1354
1374
  setPrototypeOf(CurrentIteratorPrototype, IteratorPrototype);
1355
- } else if (!isCallable(CurrentIteratorPrototype[ITERATOR$1])) {
1375
+ } else if (!isCallable$1(CurrentIteratorPrototype[ITERATOR$1])) {
1356
1376
  defineBuiltIn(CurrentIteratorPrototype, ITERATOR$1, returnThis);
1357
1377
  }
1358
1378
  }
@@ -1382,7 +1402,7 @@ var iteratorDefine = function (Iterable, NAME, IteratorConstructor, next, DEFAUL
1382
1402
  if (BUGGY_SAFARI_ITERATORS || INCORRECT_VALUES_NAME || !(KEY in IterablePrototype)) {
1383
1403
  defineBuiltIn(IterablePrototype, KEY, methods[KEY]);
1384
1404
  }
1385
- } else $({ target: NAME, proto: true, forced: BUGGY_SAFARI_ITERATORS || INCORRECT_VALUES_NAME }, methods);
1405
+ } else $$2({ target: NAME, proto: true, forced: BUGGY_SAFARI_ITERATORS || INCORRECT_VALUES_NAME }, methods);
1386
1406
  }
1387
1407
 
1388
1408
  // define iterator
@@ -1401,13 +1421,13 @@ var createIterResultObject$1 = function (value, done) {
1401
1421
  };
1402
1422
 
1403
1423
  var toIndexedObject = toIndexedObject$5;
1404
- var addToUnscopables = addToUnscopables$1;
1424
+ var addToUnscopables = addToUnscopables$2;
1405
1425
  var Iterators = iterators;
1406
1426
  var InternalStateModule = internalState;
1407
1427
  var defineProperty = objectDefineProperty.f;
1408
1428
  var defineIterator = iteratorDefine;
1409
1429
  var createIterResultObject = createIterResultObject$1;
1410
- var DESCRIPTORS = descriptors;
1430
+ var DESCRIPTORS$1 = descriptors;
1411
1431
 
1412
1432
  var ARRAY_ITERATOR = 'Array Iterator';
1413
1433
  var setInternalState = InternalStateModule.set;
@@ -1457,10 +1477,170 @@ addToUnscopables('values');
1457
1477
  addToUnscopables('entries');
1458
1478
 
1459
1479
  // V8 ~ Chrome 45- bug
1460
- if (DESCRIPTORS && values.name !== 'values') try {
1480
+ if (DESCRIPTORS$1 && values.name !== 'values') try {
1461
1481
  defineProperty(values, 'name', { value: 'values' });
1462
1482
  } catch (error) { /* empty */ }
1463
1483
 
1484
+ var classof$2 = classofRaw$1;
1485
+
1486
+ // `IsArray` abstract operation
1487
+ // https://tc39.es/ecma262/#sec-isarray
1488
+ // eslint-disable-next-line es/no-array-isarray -- safe
1489
+ var isArray$1 = Array.isArray || function isArray(argument) {
1490
+ return classof$2(argument) === 'Array';
1491
+ };
1492
+
1493
+ var DESCRIPTORS = descriptors;
1494
+ var isArray = isArray$1;
1495
+
1496
+ var $TypeError$1 = TypeError;
1497
+ // eslint-disable-next-line es/no-object-getownpropertydescriptor -- safe
1498
+ var getOwnPropertyDescriptor = Object.getOwnPropertyDescriptor;
1499
+
1500
+ // Safari < 13 does not throw an error in this case
1501
+ var SILENT_ON_NON_WRITABLE_LENGTH_SET = DESCRIPTORS && !function () {
1502
+ // makes no sense without proper strict mode support
1503
+ if (this !== undefined) return true;
1504
+ try {
1505
+ // eslint-disable-next-line es/no-object-defineproperty -- safe
1506
+ Object.defineProperty([], 'length', { writable: false }).length = 1;
1507
+ } catch (error) {
1508
+ return error instanceof TypeError;
1509
+ }
1510
+ }();
1511
+
1512
+ var arraySetLength = SILENT_ON_NON_WRITABLE_LENGTH_SET ? function (O, length) {
1513
+ if (isArray(O) && !getOwnPropertyDescriptor(O, 'length').writable) {
1514
+ throw new $TypeError$1('Cannot set read only .length');
1515
+ } return O.length = length;
1516
+ } : function (O, length) {
1517
+ return O.length = length;
1518
+ };
1519
+
1520
+ var $TypeError = TypeError;
1521
+ var MAX_SAFE_INTEGER = 0x1FFFFFFFFFFFFF; // 2 ** 53 - 1 == 9007199254740991
1522
+
1523
+ var doesNotExceedSafeInteger$1 = function (it) {
1524
+ if (it > MAX_SAFE_INTEGER) throw $TypeError('Maximum allowed index exceeded');
1525
+ return it;
1526
+ };
1527
+
1528
+ var $$1 = _export;
1529
+ var toObject = toObject$4;
1530
+ var lengthOfArrayLike = lengthOfArrayLike$3;
1531
+ var setArrayLength = arraySetLength;
1532
+ var doesNotExceedSafeInteger = doesNotExceedSafeInteger$1;
1533
+ var fails$1 = fails$c;
1534
+
1535
+ var INCORRECT_TO_LENGTH = fails$1(function () {
1536
+ return [].push.call({ length: 0x100000000 }, 1) !== 4294967297;
1537
+ });
1538
+
1539
+ // V8 <= 121 and Safari <= 15.4; FF < 23 throws InternalError
1540
+ // https://bugs.chromium.org/p/v8/issues/detail?id=12681
1541
+ var properErrorOnNonWritableLength = function () {
1542
+ try {
1543
+ // eslint-disable-next-line es/no-object-defineproperty -- safe
1544
+ Object.defineProperty([], 'length', { writable: false }).push();
1545
+ } catch (error) {
1546
+ return error instanceof TypeError;
1547
+ }
1548
+ };
1549
+
1550
+ var FORCED$1 = INCORRECT_TO_LENGTH || !properErrorOnNonWritableLength();
1551
+
1552
+ // `Array.prototype.push` method
1553
+ // https://tc39.es/ecma262/#sec-array.prototype.push
1554
+ $$1({ target: 'Array', proto: true, arity: 1, forced: FORCED$1 }, {
1555
+ // eslint-disable-next-line no-unused-vars -- required for `.length`
1556
+ push: function push(item) {
1557
+ var O = toObject(this);
1558
+ var len = lengthOfArrayLike(O);
1559
+ var argCount = arguments.length;
1560
+ doesNotExceedSafeInteger(len + argCount);
1561
+ for (var i = 0; i < argCount; i++) {
1562
+ O[len] = arguments[i];
1563
+ len++;
1564
+ }
1565
+ setArrayLength(O, len);
1566
+ return len;
1567
+ }
1568
+ });
1569
+
1570
+ var wellKnownSymbol$2 = wellKnownSymbol$8;
1571
+
1572
+ var TO_STRING_TAG$1 = wellKnownSymbol$2('toStringTag');
1573
+ var test = {};
1574
+
1575
+ test[TO_STRING_TAG$1] = 'z';
1576
+
1577
+ var toStringTagSupport = String(test) === '[object z]';
1578
+
1579
+ var TO_STRING_TAG_SUPPORT = toStringTagSupport;
1580
+ var isCallable = isCallable$e;
1581
+ var classofRaw = classofRaw$1;
1582
+ var wellKnownSymbol$1 = wellKnownSymbol$8;
1583
+
1584
+ var TO_STRING_TAG = wellKnownSymbol$1('toStringTag');
1585
+ var $Object = Object;
1586
+
1587
+ // ES3 wrong here
1588
+ var CORRECT_ARGUMENTS = classofRaw(function () { return arguments; }()) === 'Arguments';
1589
+
1590
+ // fallback for IE11 Script Access Denied error
1591
+ var tryGet = function (it, key) {
1592
+ try {
1593
+ return it[key];
1594
+ } catch (error) { /* empty */ }
1595
+ };
1596
+
1597
+ // getting tag from ES6+ `Object.prototype.toString`
1598
+ var classof$1 = TO_STRING_TAG_SUPPORT ? classofRaw : function (it) {
1599
+ var O, tag, result;
1600
+ return it === undefined ? 'Undefined' : it === null ? 'Null'
1601
+ // @@toStringTag case
1602
+ : typeof (tag = tryGet(O = $Object(it), TO_STRING_TAG)) == 'string' ? tag
1603
+ // builtinTag case
1604
+ : CORRECT_ARGUMENTS ? classofRaw(O)
1605
+ // ES3 arguments fallback
1606
+ : (result = classofRaw(O)) === 'Object' && isCallable(O.callee) ? 'Arguments' : result;
1607
+ };
1608
+
1609
+ var classof = classof$1;
1610
+
1611
+ var $String = String;
1612
+
1613
+ var toString$1 = function (argument) {
1614
+ if (classof(argument) === 'Symbol') throw new TypeError('Cannot convert a Symbol value to a string');
1615
+ return $String(argument);
1616
+ };
1617
+
1618
+ var $ = _export;
1619
+ var uncurryThis = functionUncurryThis;
1620
+ var requireObjectCoercible = requireObjectCoercible$3;
1621
+ var toIntegerOrInfinity = toIntegerOrInfinity$4;
1622
+ var toString = toString$1;
1623
+ var fails = fails$c;
1624
+
1625
+ var charAt = uncurryThis(''.charAt);
1626
+
1627
+ var FORCED = fails(function () {
1628
+ // eslint-disable-next-line es/no-array-string-prototype-at -- safe
1629
+ return '𠮷'.at(-2) !== '\uD842';
1630
+ });
1631
+
1632
+ // `String.prototype.at` method
1633
+ // https://tc39.es/ecma262/#sec-string.prototype.at
1634
+ $({ target: 'String', proto: true, forced: FORCED }, {
1635
+ at: function at(index) {
1636
+ var S = toString(requireObjectCoercible(this));
1637
+ var len = S.length;
1638
+ var relativeIndex = toIntegerOrInfinity(index);
1639
+ var k = relativeIndex >= 0 ? relativeIndex : len + relativeIndex;
1640
+ return (k < 0 || k >= len) ? undefined : charAt(S, k);
1641
+ }
1642
+ });
1643
+
1464
1644
  // iterable DOM collections
1465
1645
  // flag - `iterable` interface - 'entries', 'keys', 'values', 'forEach' methods
1466
1646
  var domIterables = {
@@ -1511,7 +1691,7 @@ var DOMTokenListPrototype = domTokenListPrototype;
1511
1691
  var ArrayIteratorMethods = es_array_iterator;
1512
1692
  var createNonEnumerableProperty = createNonEnumerableProperty$4;
1513
1693
  var setToStringTag = setToStringTag$3;
1514
- var wellKnownSymbol = wellKnownSymbol$6;
1694
+ var wellKnownSymbol = wellKnownSymbol$8;
1515
1695
 
1516
1696
  var ITERATOR = wellKnownSymbol('iterator');
1517
1697
  var ArrayValues = ArrayIteratorMethods.values;