@opengeoweb/authentication 9.14.0 → 9.15.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/index.esm.js +445 -443
- package/package.json +1 -1
package/index.esm.js
CHANGED
|
@@ -15,7 +15,7 @@ var check = function (it) {
|
|
|
15
15
|
};
|
|
16
16
|
|
|
17
17
|
// https://github.com/zloirock/core-js/issues/86#issuecomment-115759028
|
|
18
|
-
var global$
|
|
18
|
+
var global$t =
|
|
19
19
|
// eslint-disable-next-line es/no-global-this -- safe
|
|
20
20
|
check(typeof globalThis == 'object' && globalThis) ||
|
|
21
21
|
check(typeof window == 'object' && window) ||
|
|
@@ -135,17 +135,17 @@ var $TypeError$f = TypeError;
|
|
|
135
135
|
|
|
136
136
|
// `RequireObjectCoercible` abstract operation
|
|
137
137
|
// https://tc39.es/ecma262/#sec-requireobjectcoercible
|
|
138
|
-
var requireObjectCoercible$
|
|
138
|
+
var requireObjectCoercible$7 = function (it) {
|
|
139
139
|
if (isNullOrUndefined$5(it)) throw new $TypeError$f("Can't call method on " + it);
|
|
140
140
|
return it;
|
|
141
141
|
};
|
|
142
142
|
|
|
143
143
|
// toObject with fallback for non-array-like ES3 strings
|
|
144
144
|
var IndexedObject$3 = indexedObject;
|
|
145
|
-
var requireObjectCoercible$
|
|
145
|
+
var requireObjectCoercible$6 = requireObjectCoercible$7;
|
|
146
146
|
|
|
147
147
|
var toIndexedObject$6 = function (it) {
|
|
148
|
-
return IndexedObject$3(requireObjectCoercible$
|
|
148
|
+
return IndexedObject$3(requireObjectCoercible$6(it));
|
|
149
149
|
};
|
|
150
150
|
|
|
151
151
|
// https://tc39.es/ecma262/#sec-IsHTMLDDA-internal-slot
|
|
@@ -162,11 +162,11 @@ var isCallable$k = typeof documentAll == 'undefined' && documentAll !== undefine
|
|
|
162
162
|
|
|
163
163
|
var isCallable$j = isCallable$k;
|
|
164
164
|
|
|
165
|
-
var isObject$
|
|
165
|
+
var isObject$f = function (it) {
|
|
166
166
|
return typeof it == 'object' ? it !== null : isCallable$j(it);
|
|
167
167
|
};
|
|
168
168
|
|
|
169
|
-
var global$
|
|
169
|
+
var global$s = global$t;
|
|
170
170
|
var isCallable$i = isCallable$k;
|
|
171
171
|
|
|
172
172
|
var aFunction = function (argument) {
|
|
@@ -174,7 +174,7 @@ var aFunction = function (argument) {
|
|
|
174
174
|
};
|
|
175
175
|
|
|
176
176
|
var getBuiltIn$9 = function (namespace, method) {
|
|
177
|
-
return arguments.length < 2 ? aFunction(global$
|
|
177
|
+
return arguments.length < 2 ? aFunction(global$s[namespace]) : global$s[namespace] && global$s[namespace][method];
|
|
178
178
|
};
|
|
179
179
|
|
|
180
180
|
var uncurryThis$v = functionUncurryThis;
|
|
@@ -183,11 +183,11 @@ var objectIsPrototypeOf = uncurryThis$v({}.isPrototypeOf);
|
|
|
183
183
|
|
|
184
184
|
var engineUserAgent = typeof navigator != 'undefined' && String(navigator.userAgent) || '';
|
|
185
185
|
|
|
186
|
-
var global$
|
|
186
|
+
var global$r = global$t;
|
|
187
187
|
var userAgent$2 = engineUserAgent;
|
|
188
188
|
|
|
189
|
-
var process = global$
|
|
190
|
-
var Deno$1 = global$
|
|
189
|
+
var process = global$r.process;
|
|
190
|
+
var Deno$1 = global$r.Deno;
|
|
191
191
|
var versions = process && process.versions || Deno$1 && Deno$1.version;
|
|
192
192
|
var v8 = versions && versions.v8;
|
|
193
193
|
var match, version;
|
|
@@ -214,9 +214,9 @@ var engineV8Version = version;
|
|
|
214
214
|
/* eslint-disable es/no-symbol -- required for testing */
|
|
215
215
|
var V8_VERSION = engineV8Version;
|
|
216
216
|
var fails$r = fails$v;
|
|
217
|
-
var global$
|
|
217
|
+
var global$q = global$t;
|
|
218
218
|
|
|
219
|
-
var $String$5 = global$
|
|
219
|
+
var $String$5 = global$q.String;
|
|
220
220
|
|
|
221
221
|
// eslint-disable-next-line es/no-object-getownpropertysymbols -- required for testing
|
|
222
222
|
var symbolConstructorDetection = !!Object.getOwnPropertySymbols && !fails$r(function () {
|
|
@@ -284,7 +284,7 @@ var getMethod$5 = function (V, P) {
|
|
|
284
284
|
|
|
285
285
|
var call$k = functionCall;
|
|
286
286
|
var isCallable$f = isCallable$k;
|
|
287
|
-
var isObject$
|
|
287
|
+
var isObject$e = isObject$f;
|
|
288
288
|
|
|
289
289
|
var $TypeError$d = TypeError;
|
|
290
290
|
|
|
@@ -292,57 +292,57 @@ var $TypeError$d = TypeError;
|
|
|
292
292
|
// https://tc39.es/ecma262/#sec-ordinarytoprimitive
|
|
293
293
|
var ordinaryToPrimitive$1 = function (input, pref) {
|
|
294
294
|
var fn, val;
|
|
295
|
-
if (pref === 'string' && isCallable$f(fn = input.toString) && !isObject$
|
|
296
|
-
if (isCallable$f(fn = input.valueOf) && !isObject$
|
|
297
|
-
if (pref !== 'string' && isCallable$f(fn = input.toString) && !isObject$
|
|
295
|
+
if (pref === 'string' && isCallable$f(fn = input.toString) && !isObject$e(val = call$k(fn, input))) return val;
|
|
296
|
+
if (isCallable$f(fn = input.valueOf) && !isObject$e(val = call$k(fn, input))) return val;
|
|
297
|
+
if (pref !== 'string' && isCallable$f(fn = input.toString) && !isObject$e(val = call$k(fn, input))) return val;
|
|
298
298
|
throw new $TypeError$d("Can't convert object to primitive value");
|
|
299
299
|
};
|
|
300
300
|
|
|
301
|
-
var
|
|
301
|
+
var sharedStore = {exports: {}};
|
|
302
302
|
|
|
303
303
|
var isPure = false;
|
|
304
304
|
|
|
305
|
-
var global$
|
|
305
|
+
var global$p = global$t;
|
|
306
306
|
|
|
307
307
|
// eslint-disable-next-line es/no-object-defineproperty -- safe
|
|
308
308
|
var defineProperty$8 = Object.defineProperty;
|
|
309
309
|
|
|
310
310
|
var defineGlobalProperty$3 = function (key, value) {
|
|
311
311
|
try {
|
|
312
|
-
defineProperty$8(global$
|
|
312
|
+
defineProperty$8(global$p, key, { value: value, configurable: true, writable: true });
|
|
313
313
|
} catch (error) {
|
|
314
|
-
global$
|
|
314
|
+
global$p[key] = value;
|
|
315
315
|
} return value;
|
|
316
316
|
};
|
|
317
317
|
|
|
318
|
-
var
|
|
318
|
+
var globalThis$1 = global$t;
|
|
319
319
|
var defineGlobalProperty$2 = defineGlobalProperty$3;
|
|
320
320
|
|
|
321
321
|
var SHARED = '__core-js_shared__';
|
|
322
|
-
var store$3 =
|
|
322
|
+
var store$3 = sharedStore.exports = globalThis$1[SHARED] || defineGlobalProperty$2(SHARED, {});
|
|
323
323
|
|
|
324
|
-
|
|
325
|
-
|
|
326
|
-
var store$2 = sharedStore;
|
|
327
|
-
|
|
328
|
-
(shared$4.exports = function (key, value) {
|
|
329
|
-
return store$2[key] || (store$2[key] = value !== undefined ? value : {});
|
|
330
|
-
})('versions', []).push({
|
|
331
|
-
version: '3.35.1',
|
|
324
|
+
(store$3.versions || (store$3.versions = [])).push({
|
|
325
|
+
version: '3.36.1',
|
|
332
326
|
mode: 'global',
|
|
333
327
|
copyright: '© 2014-2024 Denis Pushkarev (zloirock.ru)',
|
|
334
|
-
license: 'https://github.com/zloirock/core-js/blob/v3.
|
|
328
|
+
license: 'https://github.com/zloirock/core-js/blob/v3.36.1/LICENSE',
|
|
335
329
|
source: 'https://github.com/zloirock/core-js'
|
|
336
330
|
});
|
|
337
331
|
|
|
338
|
-
var
|
|
332
|
+
var store$2 = sharedStore.exports;
|
|
333
|
+
|
|
334
|
+
var shared$4 = function (key, value) {
|
|
335
|
+
return store$2[key] || (store$2[key] = value || {});
|
|
336
|
+
};
|
|
337
|
+
|
|
338
|
+
var requireObjectCoercible$5 = requireObjectCoercible$7;
|
|
339
339
|
|
|
340
340
|
var $Object$2 = Object;
|
|
341
341
|
|
|
342
342
|
// `ToObject` abstract operation
|
|
343
343
|
// https://tc39.es/ecma262/#sec-toobject
|
|
344
344
|
var toObject$8 = function (argument) {
|
|
345
|
-
return $Object$2(requireObjectCoercible$
|
|
345
|
+
return $Object$2(requireObjectCoercible$5(argument));
|
|
346
346
|
};
|
|
347
347
|
|
|
348
348
|
var uncurryThis$u = functionUncurryThis;
|
|
@@ -367,8 +367,8 @@ var uid$3 = function (key) {
|
|
|
367
367
|
return 'Symbol(' + (key === undefined ? '' : key) + ')_' + toString$a(++id + postfix, 36);
|
|
368
368
|
};
|
|
369
369
|
|
|
370
|
-
var global$o = global$
|
|
371
|
-
var shared$3 = shared$4
|
|
370
|
+
var global$o = global$t;
|
|
371
|
+
var shared$3 = shared$4;
|
|
372
372
|
var hasOwn$e = hasOwnProperty_1;
|
|
373
373
|
var uid$2 = uid$3;
|
|
374
374
|
var NATIVE_SYMBOL = symbolConstructorDetection;
|
|
@@ -387,7 +387,7 @@ var wellKnownSymbol$l = function (name) {
|
|
|
387
387
|
};
|
|
388
388
|
|
|
389
389
|
var call$j = functionCall;
|
|
390
|
-
var isObject$
|
|
390
|
+
var isObject$d = isObject$f;
|
|
391
391
|
var isSymbol$2 = isSymbol$3;
|
|
392
392
|
var getMethod$4 = getMethod$5;
|
|
393
393
|
var ordinaryToPrimitive = ordinaryToPrimitive$1;
|
|
@@ -399,13 +399,13 @@ var TO_PRIMITIVE = wellKnownSymbol$k('toPrimitive');
|
|
|
399
399
|
// `ToPrimitive` abstract operation
|
|
400
400
|
// https://tc39.es/ecma262/#sec-toprimitive
|
|
401
401
|
var toPrimitive$2 = function (input, pref) {
|
|
402
|
-
if (!isObject$
|
|
402
|
+
if (!isObject$d(input) || isSymbol$2(input)) return input;
|
|
403
403
|
var exoticToPrim = getMethod$4(input, TO_PRIMITIVE);
|
|
404
404
|
var result;
|
|
405
405
|
if (exoticToPrim) {
|
|
406
406
|
if (pref === undefined) pref = 'default';
|
|
407
407
|
result = call$j(exoticToPrim, input, pref);
|
|
408
|
-
if (!isObject$
|
|
408
|
+
if (!isObject$d(result) || isSymbol$2(result)) return result;
|
|
409
409
|
throw new $TypeError$c("Can't convert object to primitive value");
|
|
410
410
|
}
|
|
411
411
|
if (pref === undefined) pref = 'number';
|
|
@@ -417,40 +417,40 @@ var isSymbol$1 = isSymbol$3;
|
|
|
417
417
|
|
|
418
418
|
// `ToPropertyKey` abstract operation
|
|
419
419
|
// https://tc39.es/ecma262/#sec-topropertykey
|
|
420
|
-
var toPropertyKey$
|
|
420
|
+
var toPropertyKey$3 = function (argument) {
|
|
421
421
|
var key = toPrimitive$1(argument, 'string');
|
|
422
422
|
return isSymbol$1(key) ? key : key + '';
|
|
423
423
|
};
|
|
424
424
|
|
|
425
|
-
var global$n = global$
|
|
426
|
-
var isObject$
|
|
425
|
+
var global$n = global$t;
|
|
426
|
+
var isObject$c = isObject$f;
|
|
427
427
|
|
|
428
428
|
var document$1 = global$n.document;
|
|
429
429
|
// typeof document.createElement is 'object' in old IE
|
|
430
|
-
var EXISTS$1 = isObject$
|
|
430
|
+
var EXISTS$1 = isObject$c(document$1) && isObject$c(document$1.createElement);
|
|
431
431
|
|
|
432
432
|
var documentCreateElement$2 = function (it) {
|
|
433
433
|
return EXISTS$1 ? document$1.createElement(it) : {};
|
|
434
434
|
};
|
|
435
435
|
|
|
436
|
-
var DESCRIPTORS$
|
|
436
|
+
var DESCRIPTORS$m = descriptors;
|
|
437
437
|
var fails$q = fails$v;
|
|
438
438
|
var createElement = documentCreateElement$2;
|
|
439
439
|
|
|
440
440
|
// Thanks to IE8 for its funny defineProperty
|
|
441
|
-
var ie8DomDefine = !DESCRIPTORS$
|
|
441
|
+
var ie8DomDefine = !DESCRIPTORS$m && !fails$q(function () {
|
|
442
442
|
// eslint-disable-next-line es/no-object-defineproperty -- required for testing
|
|
443
443
|
return Object.defineProperty(createElement('div'), 'a', {
|
|
444
444
|
get: function () { return 7; }
|
|
445
445
|
}).a !== 7;
|
|
446
446
|
});
|
|
447
447
|
|
|
448
|
-
var DESCRIPTORS$
|
|
448
|
+
var DESCRIPTORS$l = descriptors;
|
|
449
449
|
var call$i = functionCall;
|
|
450
450
|
var propertyIsEnumerableModule$1 = objectPropertyIsEnumerable;
|
|
451
451
|
var createPropertyDescriptor$7 = createPropertyDescriptor$8;
|
|
452
452
|
var toIndexedObject$5 = toIndexedObject$6;
|
|
453
|
-
var toPropertyKey$
|
|
453
|
+
var toPropertyKey$2 = toPropertyKey$3;
|
|
454
454
|
var hasOwn$d = hasOwnProperty_1;
|
|
455
455
|
var IE8_DOM_DEFINE$1 = ie8DomDefine;
|
|
456
456
|
|
|
@@ -459,9 +459,9 @@ var $getOwnPropertyDescriptor$1 = Object.getOwnPropertyDescriptor;
|
|
|
459
459
|
|
|
460
460
|
// `Object.getOwnPropertyDescriptor` method
|
|
461
461
|
// https://tc39.es/ecma262/#sec-object.getownpropertydescriptor
|
|
462
|
-
objectGetOwnPropertyDescriptor.f = DESCRIPTORS$
|
|
462
|
+
objectGetOwnPropertyDescriptor.f = DESCRIPTORS$l ? $getOwnPropertyDescriptor$1 : function getOwnPropertyDescriptor(O, P) {
|
|
463
463
|
O = toIndexedObject$5(O);
|
|
464
|
-
P = toPropertyKey$
|
|
464
|
+
P = toPropertyKey$2(P);
|
|
465
465
|
if (IE8_DOM_DEFINE$1) try {
|
|
466
466
|
return $getOwnPropertyDescriptor$1(O, P);
|
|
467
467
|
} catch (error) { /* empty */ }
|
|
@@ -470,12 +470,12 @@ objectGetOwnPropertyDescriptor.f = DESCRIPTORS$k ? $getOwnPropertyDescriptor$1 :
|
|
|
470
470
|
|
|
471
471
|
var objectDefineProperty = {};
|
|
472
472
|
|
|
473
|
-
var DESCRIPTORS$
|
|
473
|
+
var DESCRIPTORS$k = descriptors;
|
|
474
474
|
var fails$p = fails$v;
|
|
475
475
|
|
|
476
476
|
// V8 ~ Chrome 36-
|
|
477
477
|
// https://bugs.chromium.org/p/v8/issues/detail?id=3334
|
|
478
|
-
var v8PrototypeDefineBug = DESCRIPTORS$
|
|
478
|
+
var v8PrototypeDefineBug = DESCRIPTORS$k && fails$p(function () {
|
|
479
479
|
// eslint-disable-next-line es/no-object-defineproperty -- required for testing
|
|
480
480
|
return Object.defineProperty(function () { /* empty */ }, 'prototype', {
|
|
481
481
|
value: 42,
|
|
@@ -483,22 +483,22 @@ var v8PrototypeDefineBug = DESCRIPTORS$j && fails$p(function () {
|
|
|
483
483
|
}).prototype !== 42;
|
|
484
484
|
});
|
|
485
485
|
|
|
486
|
-
var isObject$
|
|
486
|
+
var isObject$b = isObject$f;
|
|
487
487
|
|
|
488
488
|
var $String$3 = String;
|
|
489
489
|
var $TypeError$b = TypeError;
|
|
490
490
|
|
|
491
491
|
// `Assert: Type(argument) is Object`
|
|
492
|
-
var anObject$
|
|
493
|
-
if (isObject$
|
|
492
|
+
var anObject$h = function (argument) {
|
|
493
|
+
if (isObject$b(argument)) return argument;
|
|
494
494
|
throw new $TypeError$b($String$3(argument) + ' is not an object');
|
|
495
495
|
};
|
|
496
496
|
|
|
497
|
-
var DESCRIPTORS$
|
|
497
|
+
var DESCRIPTORS$j = descriptors;
|
|
498
498
|
var IE8_DOM_DEFINE = ie8DomDefine;
|
|
499
499
|
var V8_PROTOTYPE_DEFINE_BUG$1 = v8PrototypeDefineBug;
|
|
500
|
-
var anObject$
|
|
501
|
-
var toPropertyKey$
|
|
500
|
+
var anObject$g = anObject$h;
|
|
501
|
+
var toPropertyKey$1 = toPropertyKey$3;
|
|
502
502
|
|
|
503
503
|
var $TypeError$a = TypeError;
|
|
504
504
|
// eslint-disable-next-line es/no-object-defineproperty -- safe
|
|
@@ -511,10 +511,10 @@ var WRITABLE = 'writable';
|
|
|
511
511
|
|
|
512
512
|
// `Object.defineProperty` method
|
|
513
513
|
// https://tc39.es/ecma262/#sec-object.defineproperty
|
|
514
|
-
objectDefineProperty.f = DESCRIPTORS$
|
|
515
|
-
anObject$
|
|
516
|
-
P = toPropertyKey$
|
|
517
|
-
anObject$
|
|
514
|
+
objectDefineProperty.f = DESCRIPTORS$j ? V8_PROTOTYPE_DEFINE_BUG$1 ? function defineProperty(O, P, Attributes) {
|
|
515
|
+
anObject$g(O);
|
|
516
|
+
P = toPropertyKey$1(P);
|
|
517
|
+
anObject$g(Attributes);
|
|
518
518
|
if (typeof O === 'function' && P === 'prototype' && 'value' in Attributes && WRITABLE in Attributes && !Attributes[WRITABLE]) {
|
|
519
519
|
var current = $getOwnPropertyDescriptor(O, P);
|
|
520
520
|
if (current && current[WRITABLE]) {
|
|
@@ -527,9 +527,9 @@ objectDefineProperty.f = DESCRIPTORS$i ? V8_PROTOTYPE_DEFINE_BUG$1 ? function de
|
|
|
527
527
|
}
|
|
528
528
|
} return $defineProperty(O, P, Attributes);
|
|
529
529
|
} : $defineProperty : function defineProperty(O, P, Attributes) {
|
|
530
|
-
anObject$
|
|
531
|
-
P = toPropertyKey$
|
|
532
|
-
anObject$
|
|
530
|
+
anObject$g(O);
|
|
531
|
+
P = toPropertyKey$1(P);
|
|
532
|
+
anObject$g(Attributes);
|
|
533
533
|
if (IE8_DOM_DEFINE) try {
|
|
534
534
|
return $defineProperty(O, P, Attributes);
|
|
535
535
|
} catch (error) { /* empty */ }
|
|
@@ -538,11 +538,11 @@ objectDefineProperty.f = DESCRIPTORS$i ? V8_PROTOTYPE_DEFINE_BUG$1 ? function de
|
|
|
538
538
|
return O;
|
|
539
539
|
};
|
|
540
540
|
|
|
541
|
-
var DESCRIPTORS$
|
|
541
|
+
var DESCRIPTORS$i = descriptors;
|
|
542
542
|
var definePropertyModule$5 = objectDefineProperty;
|
|
543
543
|
var createPropertyDescriptor$6 = createPropertyDescriptor$8;
|
|
544
544
|
|
|
545
|
-
var createNonEnumerableProperty$8 = DESCRIPTORS$
|
|
545
|
+
var createNonEnumerableProperty$8 = DESCRIPTORS$i ? function (object, key, value) {
|
|
546
546
|
return definePropertyModule$5.f(object, key, createPropertyDescriptor$6(1, value));
|
|
547
547
|
} : function (object, key, value) {
|
|
548
548
|
object[key] = value;
|
|
@@ -551,17 +551,17 @@ var createNonEnumerableProperty$8 = DESCRIPTORS$h ? function (object, key, value
|
|
|
551
551
|
|
|
552
552
|
var makeBuiltIn$3 = {exports: {}};
|
|
553
553
|
|
|
554
|
-
var DESCRIPTORS$
|
|
554
|
+
var DESCRIPTORS$h = descriptors;
|
|
555
555
|
var hasOwn$c = hasOwnProperty_1;
|
|
556
556
|
|
|
557
557
|
var FunctionPrototype$1 = Function.prototype;
|
|
558
558
|
// eslint-disable-next-line es/no-object-getownpropertydescriptor -- safe
|
|
559
|
-
var getDescriptor = DESCRIPTORS$
|
|
559
|
+
var getDescriptor = DESCRIPTORS$h && Object.getOwnPropertyDescriptor;
|
|
560
560
|
|
|
561
561
|
var EXISTS = hasOwn$c(FunctionPrototype$1, 'name');
|
|
562
562
|
// additional protection from minified / mangled / dropped function names
|
|
563
563
|
var PROPER = EXISTS && (function something() { /* empty */ }).name === 'something';
|
|
564
|
-
var CONFIGURABLE = EXISTS && (!DESCRIPTORS$
|
|
564
|
+
var CONFIGURABLE = EXISTS && (!DESCRIPTORS$h || (DESCRIPTORS$h && getDescriptor(FunctionPrototype$1, 'name').configurable));
|
|
565
565
|
|
|
566
566
|
var functionName = {
|
|
567
567
|
EXISTS: EXISTS,
|
|
@@ -571,7 +571,7 @@ var functionName = {
|
|
|
571
571
|
|
|
572
572
|
var uncurryThis$s = functionUncurryThis;
|
|
573
573
|
var isCallable$e = isCallable$k;
|
|
574
|
-
var store$1 = sharedStore;
|
|
574
|
+
var store$1 = sharedStore.exports;
|
|
575
575
|
|
|
576
576
|
var functionToString = uncurryThis$s(Function.toString);
|
|
577
577
|
|
|
@@ -584,14 +584,14 @@ if (!isCallable$e(store$1.inspectSource)) {
|
|
|
584
584
|
|
|
585
585
|
var inspectSource$2 = store$1.inspectSource;
|
|
586
586
|
|
|
587
|
-
var global$m = global$
|
|
587
|
+
var global$m = global$t;
|
|
588
588
|
var isCallable$d = isCallable$k;
|
|
589
589
|
|
|
590
590
|
var WeakMap$2 = global$m.WeakMap;
|
|
591
591
|
|
|
592
592
|
var weakMapBasicDetection = isCallable$d(WeakMap$2) && /native code/.test(String(WeakMap$2));
|
|
593
593
|
|
|
594
|
-
var shared$2 = shared$4
|
|
594
|
+
var shared$2 = shared$4;
|
|
595
595
|
var uid$1 = uid$3;
|
|
596
596
|
|
|
597
597
|
var keys = shared$2('keys');
|
|
@@ -603,11 +603,11 @@ var sharedKey$3 = function (key) {
|
|
|
603
603
|
var hiddenKeys$4 = {};
|
|
604
604
|
|
|
605
605
|
var NATIVE_WEAK_MAP = weakMapBasicDetection;
|
|
606
|
-
var global$l = global$
|
|
607
|
-
var isObject$
|
|
606
|
+
var global$l = global$t;
|
|
607
|
+
var isObject$a = isObject$f;
|
|
608
608
|
var createNonEnumerableProperty$7 = createNonEnumerableProperty$8;
|
|
609
609
|
var hasOwn$b = hasOwnProperty_1;
|
|
610
|
-
var shared$1 = sharedStore;
|
|
610
|
+
var shared$1 = sharedStore.exports;
|
|
611
611
|
var sharedKey$2 = sharedKey$3;
|
|
612
612
|
var hiddenKeys$3 = hiddenKeys$4;
|
|
613
613
|
|
|
@@ -623,7 +623,7 @@ var enforce = function (it) {
|
|
|
623
623
|
var getterFor$1 = function (TYPE) {
|
|
624
624
|
return function (it) {
|
|
625
625
|
var state;
|
|
626
|
-
if (!isObject$
|
|
626
|
+
if (!isObject$a(it) || (state = get$1(it)).type !== TYPE) {
|
|
627
627
|
throw new TypeError$4('Incompatible receiver, ' + TYPE + ' required');
|
|
628
628
|
} return state;
|
|
629
629
|
};
|
|
@@ -677,7 +677,7 @@ var uncurryThis$r = functionUncurryThis;
|
|
|
677
677
|
var fails$o = fails$v;
|
|
678
678
|
var isCallable$c = isCallable$k;
|
|
679
679
|
var hasOwn$a = hasOwnProperty_1;
|
|
680
|
-
var DESCRIPTORS$
|
|
680
|
+
var DESCRIPTORS$g = descriptors;
|
|
681
681
|
var CONFIGURABLE_FUNCTION_NAME$2 = functionName.CONFIGURABLE;
|
|
682
682
|
var inspectSource$1 = inspectSource$2;
|
|
683
683
|
var InternalStateModule$6 = internalState;
|
|
@@ -691,7 +691,7 @@ var stringSlice$5 = uncurryThis$r(''.slice);
|
|
|
691
691
|
var replace$4 = uncurryThis$r(''.replace);
|
|
692
692
|
var join$1 = uncurryThis$r([].join);
|
|
693
693
|
|
|
694
|
-
var CONFIGURABLE_LENGTH = DESCRIPTORS$
|
|
694
|
+
var CONFIGURABLE_LENGTH = DESCRIPTORS$g && !fails$o(function () {
|
|
695
695
|
return defineProperty$7(function () { /* empty */ }, 'length', { value: 8 }).length !== 8;
|
|
696
696
|
});
|
|
697
697
|
|
|
@@ -704,7 +704,7 @@ var makeBuiltIn$2 = makeBuiltIn$3.exports = function (value, name, options) {
|
|
|
704
704
|
if (options && options.getter) name = 'get ' + name;
|
|
705
705
|
if (options && options.setter) name = 'set ' + name;
|
|
706
706
|
if (!hasOwn$a(value, 'name') || (CONFIGURABLE_FUNCTION_NAME$2 && value.name !== name)) {
|
|
707
|
-
if (DESCRIPTORS$
|
|
707
|
+
if (DESCRIPTORS$g) defineProperty$7(value, 'name', { value: name, configurable: true });
|
|
708
708
|
else value.name = name;
|
|
709
709
|
}
|
|
710
710
|
if (CONFIGURABLE_LENGTH && options && hasOwn$a(options, 'arity') && value.length !== options.arity) {
|
|
@@ -712,7 +712,7 @@ var makeBuiltIn$2 = makeBuiltIn$3.exports = function (value, name, options) {
|
|
|
712
712
|
}
|
|
713
713
|
try {
|
|
714
714
|
if (options && hasOwn$a(options, 'constructor') && options.constructor) {
|
|
715
|
-
if (DESCRIPTORS$
|
|
715
|
+
if (DESCRIPTORS$g) defineProperty$7(value, 'prototype', { writable: false });
|
|
716
716
|
// in V8 ~ Chrome 53, prototypes of some methods, like `Array.prototype.values`, are non-writable
|
|
717
717
|
} else if (value.prototype) value.prototype = undefined;
|
|
718
718
|
} catch (error) { /* empty */ }
|
|
@@ -820,6 +820,7 @@ var createMethod$3 = function (IS_INCLUDES) {
|
|
|
820
820
|
return function ($this, el, fromIndex) {
|
|
821
821
|
var O = toIndexedObject$4($this);
|
|
822
822
|
var length = lengthOfArrayLike$a(O);
|
|
823
|
+
if (length === 0) return !IS_INCLUDES && -1;
|
|
823
824
|
var index = toAbsoluteIndex$2(fromIndex, length);
|
|
824
825
|
var value;
|
|
825
826
|
// Array#includes uses SameValueZero equality algorithm
|
|
@@ -897,13 +898,13 @@ var getBuiltIn$7 = getBuiltIn$9;
|
|
|
897
898
|
var uncurryThis$p = functionUncurryThis;
|
|
898
899
|
var getOwnPropertyNamesModule = objectGetOwnPropertyNames;
|
|
899
900
|
var getOwnPropertySymbolsModule$1 = objectGetOwnPropertySymbols;
|
|
900
|
-
var anObject$
|
|
901
|
+
var anObject$f = anObject$h;
|
|
901
902
|
|
|
902
903
|
var concat$2 = uncurryThis$p([].concat);
|
|
903
904
|
|
|
904
905
|
// all object keys, includes non-enumerable and symbols
|
|
905
906
|
var ownKeys$1 = getBuiltIn$7('Reflect', 'ownKeys') || function ownKeys(it) {
|
|
906
|
-
var keys = getOwnPropertyNamesModule.f(anObject$
|
|
907
|
+
var keys = getOwnPropertyNamesModule.f(anObject$f(it));
|
|
907
908
|
var getOwnPropertySymbols = getOwnPropertySymbolsModule$1.f;
|
|
908
909
|
return getOwnPropertySymbols ? concat$2(keys, getOwnPropertySymbols(it)) : keys;
|
|
909
910
|
};
|
|
@@ -948,7 +949,7 @@ var POLYFILL = isForced$1.POLYFILL = 'P';
|
|
|
948
949
|
|
|
949
950
|
var isForced_1 = isForced$1;
|
|
950
951
|
|
|
951
|
-
var global$k = global$
|
|
952
|
+
var global$k = global$t;
|
|
952
953
|
var getOwnPropertyDescriptor$1 = objectGetOwnPropertyDescriptor.f;
|
|
953
954
|
var createNonEnumerableProperty$6 = createNonEnumerableProperty$8;
|
|
954
955
|
var defineBuiltIn$a = defineBuiltIn$b;
|
|
@@ -1015,18 +1016,18 @@ var objectKeys$2 = Object.keys || function keys(O) {
|
|
|
1015
1016
|
return internalObjectKeys(O, enumBugKeys$1);
|
|
1016
1017
|
};
|
|
1017
1018
|
|
|
1018
|
-
var DESCRIPTORS$
|
|
1019
|
+
var DESCRIPTORS$f = descriptors;
|
|
1019
1020
|
var V8_PROTOTYPE_DEFINE_BUG = v8PrototypeDefineBug;
|
|
1020
1021
|
var definePropertyModule$2 = objectDefineProperty;
|
|
1021
|
-
var anObject$
|
|
1022
|
+
var anObject$e = anObject$h;
|
|
1022
1023
|
var toIndexedObject$2 = toIndexedObject$6;
|
|
1023
1024
|
var objectKeys$1 = objectKeys$2;
|
|
1024
1025
|
|
|
1025
1026
|
// `Object.defineProperties` method
|
|
1026
1027
|
// https://tc39.es/ecma262/#sec-object.defineproperties
|
|
1027
1028
|
// eslint-disable-next-line es/no-object-defineproperties -- safe
|
|
1028
|
-
objectDefineProperties.f = DESCRIPTORS$
|
|
1029
|
-
anObject$
|
|
1029
|
+
objectDefineProperties.f = DESCRIPTORS$f && !V8_PROTOTYPE_DEFINE_BUG ? Object.defineProperties : function defineProperties(O, Properties) {
|
|
1030
|
+
anObject$e(O);
|
|
1030
1031
|
var props = toIndexedObject$2(Properties);
|
|
1031
1032
|
var keys = objectKeys$1(Properties);
|
|
1032
1033
|
var length = keys.length;
|
|
@@ -1041,7 +1042,7 @@ var getBuiltIn$6 = getBuiltIn$9;
|
|
|
1041
1042
|
var html$1 = getBuiltIn$6('document', 'documentElement');
|
|
1042
1043
|
|
|
1043
1044
|
/* global ActiveXObject -- old IE, WSH */
|
|
1044
|
-
var anObject$
|
|
1045
|
+
var anObject$d = anObject$h;
|
|
1045
1046
|
var definePropertiesModule = objectDefineProperties;
|
|
1046
1047
|
var enumBugKeys = enumBugKeys$3;
|
|
1047
1048
|
var hiddenKeys = hiddenKeys$4;
|
|
@@ -1115,7 +1116,7 @@ hiddenKeys[IE_PROTO$1] = true;
|
|
|
1115
1116
|
var objectCreate = Object.create || function create(O, Properties) {
|
|
1116
1117
|
var result;
|
|
1117
1118
|
if (O !== null) {
|
|
1118
|
-
EmptyConstructor[PROTOTYPE$1] = anObject$
|
|
1119
|
+
EmptyConstructor[PROTOTYPE$1] = anObject$d(O);
|
|
1119
1120
|
result = new EmptyConstructor();
|
|
1120
1121
|
EmptyConstructor[PROTOTYPE$1] = null;
|
|
1121
1122
|
// add "__proto__" for Object.getPrototypeOf polyfill
|
|
@@ -1202,7 +1203,7 @@ var objectGetPrototypeOf = CORRECT_PROTOTYPE_GETTER ? $Object$1.getPrototypeOf :
|
|
|
1202
1203
|
|
|
1203
1204
|
var fails$k = fails$v;
|
|
1204
1205
|
var isCallable$8 = isCallable$k;
|
|
1205
|
-
var isObject$
|
|
1206
|
+
var isObject$9 = isObject$f;
|
|
1206
1207
|
var getPrototypeOf$3 = objectGetPrototypeOf;
|
|
1207
1208
|
var defineBuiltIn$9 = defineBuiltIn$b;
|
|
1208
1209
|
var wellKnownSymbol$i = wellKnownSymbol$l;
|
|
@@ -1225,7 +1226,7 @@ if ([].keys) {
|
|
|
1225
1226
|
}
|
|
1226
1227
|
}
|
|
1227
1228
|
|
|
1228
|
-
var NEW_ITERATOR_PROTOTYPE = !isObject$
|
|
1229
|
+
var NEW_ITERATOR_PROTOTYPE = !isObject$9(IteratorPrototype$2) || fails$k(function () {
|
|
1229
1230
|
var test = {};
|
|
1230
1231
|
// FF44- legacy iterators case
|
|
1231
1232
|
return IteratorPrototype$2[ITERATOR$7].call(test) !== test;
|
|
@@ -1285,10 +1286,10 @@ var functionUncurryThisAccessor = function (object, key, method) {
|
|
|
1285
1286
|
} catch (error) { /* empty */ }
|
|
1286
1287
|
};
|
|
1287
1288
|
|
|
1288
|
-
var isObject$
|
|
1289
|
+
var isObject$8 = isObject$f;
|
|
1289
1290
|
|
|
1290
1291
|
var isPossiblePrototype$1 = function (argument) {
|
|
1291
|
-
return isObject$
|
|
1292
|
+
return isObject$8(argument) || argument === null;
|
|
1292
1293
|
};
|
|
1293
1294
|
|
|
1294
1295
|
var isPossiblePrototype = isPossiblePrototype$1;
|
|
@@ -1303,7 +1304,8 @@ var aPossiblePrototype$1 = function (argument) {
|
|
|
1303
1304
|
|
|
1304
1305
|
/* eslint-disable no-proto -- safe */
|
|
1305
1306
|
var uncurryThisAccessor$2 = functionUncurryThisAccessor;
|
|
1306
|
-
var
|
|
1307
|
+
var isObject$7 = isObject$f;
|
|
1308
|
+
var requireObjectCoercible$4 = requireObjectCoercible$7;
|
|
1307
1309
|
var aPossiblePrototype = aPossiblePrototype$1;
|
|
1308
1310
|
|
|
1309
1311
|
// `Object.setPrototypeOf` method
|
|
@@ -1320,8 +1322,9 @@ var objectSetPrototypeOf = Object.setPrototypeOf || ('__proto__' in {} ? functio
|
|
|
1320
1322
|
CORRECT_SETTER = test instanceof Array;
|
|
1321
1323
|
} catch (error) { /* empty */ }
|
|
1322
1324
|
return function setPrototypeOf(O, proto) {
|
|
1323
|
-
|
|
1325
|
+
requireObjectCoercible$4(O);
|
|
1324
1326
|
aPossiblePrototype(proto);
|
|
1327
|
+
if (!isObject$7(O)) return O;
|
|
1325
1328
|
if (CORRECT_SETTER) setter(O, proto);
|
|
1326
1329
|
else O.__proto__ = proto;
|
|
1327
1330
|
return O;
|
|
@@ -1441,7 +1444,7 @@ var InternalStateModule$5 = internalState;
|
|
|
1441
1444
|
var defineProperty$4 = objectDefineProperty.f;
|
|
1442
1445
|
var defineIterator = iteratorDefine;
|
|
1443
1446
|
var createIterResultObject$1 = createIterResultObject$2;
|
|
1444
|
-
var DESCRIPTORS$
|
|
1447
|
+
var DESCRIPTORS$e = descriptors;
|
|
1445
1448
|
|
|
1446
1449
|
var ARRAY_ITERATOR = 'Array Iterator';
|
|
1447
1450
|
var setInternalState$4 = InternalStateModule$5.set;
|
|
@@ -1491,11 +1494,11 @@ addToUnscopables('values');
|
|
|
1491
1494
|
addToUnscopables('entries');
|
|
1492
1495
|
|
|
1493
1496
|
// V8 ~ Chrome 45- bug
|
|
1494
|
-
if (DESCRIPTORS$
|
|
1497
|
+
if (DESCRIPTORS$e && values.name !== 'values') try {
|
|
1495
1498
|
defineProperty$4(values, 'name', { value: 'values' });
|
|
1496
1499
|
} catch (error) { /* empty */ }
|
|
1497
1500
|
|
|
1498
|
-
var DESCRIPTORS$
|
|
1501
|
+
var DESCRIPTORS$d = descriptors;
|
|
1499
1502
|
var uncurryThis$n = functionUncurryThis;
|
|
1500
1503
|
var call$g = functionCall;
|
|
1501
1504
|
var fails$j = fails$v;
|
|
@@ -1515,7 +1518,7 @@ var concat$1 = uncurryThis$n([].concat);
|
|
|
1515
1518
|
// https://tc39.es/ecma262/#sec-object.assign
|
|
1516
1519
|
var objectAssign = !$assign || fails$j(function () {
|
|
1517
1520
|
// should have correct order of operations (Edge bug)
|
|
1518
|
-
if (DESCRIPTORS$
|
|
1521
|
+
if (DESCRIPTORS$d && $assign({ b: 1 }, $assign(defineProperty$3({}, 'a', {
|
|
1519
1522
|
enumerable: true,
|
|
1520
1523
|
get: function () {
|
|
1521
1524
|
defineProperty$3(this, 'b', {
|
|
@@ -1547,7 +1550,7 @@ var objectAssign = !$assign || fails$j(function () {
|
|
|
1547
1550
|
var key;
|
|
1548
1551
|
while (length > j) {
|
|
1549
1552
|
key = keys[j++];
|
|
1550
|
-
if (!DESCRIPTORS$
|
|
1553
|
+
if (!DESCRIPTORS$d || call$g(propertyIsEnumerable, S, key)) T[key] = S[key];
|
|
1551
1554
|
}
|
|
1552
1555
|
} return T;
|
|
1553
1556
|
} : $assign;
|
|
@@ -1652,7 +1655,7 @@ var getIteratorMethod$4 = function (it) {
|
|
|
1652
1655
|
|
|
1653
1656
|
var call$f = functionCall;
|
|
1654
1657
|
var aCallable$2 = aCallable$6;
|
|
1655
|
-
var anObject$c = anObject$
|
|
1658
|
+
var anObject$c = anObject$h;
|
|
1656
1659
|
var tryToString$3 = tryToString$5;
|
|
1657
1660
|
var getIteratorMethod$3 = getIteratorMethod$4;
|
|
1658
1661
|
|
|
@@ -1665,7 +1668,7 @@ var getIterator$3 = function (argument, usingIterator) {
|
|
|
1665
1668
|
};
|
|
1666
1669
|
|
|
1667
1670
|
var call$e = functionCall;
|
|
1668
|
-
var anObject$b = anObject$
|
|
1671
|
+
var anObject$b = anObject$h;
|
|
1669
1672
|
var getMethod$2 = getMethod$5;
|
|
1670
1673
|
|
|
1671
1674
|
var iteratorClose$1 = function (iterator, kind, value) {
|
|
@@ -1690,7 +1693,7 @@ var iteratorClose$1 = function (iterator, kind, value) {
|
|
|
1690
1693
|
|
|
1691
1694
|
var bind$4 = functionBindContext;
|
|
1692
1695
|
var call$d = functionCall;
|
|
1693
|
-
var anObject$a = anObject$
|
|
1696
|
+
var anObject$a = anObject$h;
|
|
1694
1697
|
var tryToString$2 = tryToString$5;
|
|
1695
1698
|
var isArrayIteratorMethod$1 = isArrayIteratorMethod$2;
|
|
1696
1699
|
var lengthOfArrayLike$9 = lengthOfArrayLike$b;
|
|
@@ -1757,14 +1760,13 @@ var iterate$1 = function (iterable, unboundFunction, options) {
|
|
|
1757
1760
|
} return new Result(false);
|
|
1758
1761
|
};
|
|
1759
1762
|
|
|
1760
|
-
var
|
|
1763
|
+
var DESCRIPTORS$c = descriptors;
|
|
1761
1764
|
var definePropertyModule$1 = objectDefineProperty;
|
|
1762
1765
|
var createPropertyDescriptor$4 = createPropertyDescriptor$8;
|
|
1763
1766
|
|
|
1764
1767
|
var createProperty$1 = function (object, key, value) {
|
|
1765
|
-
|
|
1766
|
-
|
|
1767
|
-
else object[propertyKey] = value;
|
|
1768
|
+
if (DESCRIPTORS$c) definePropertyModule$1.f(object, key, createPropertyDescriptor$4(0, value));
|
|
1769
|
+
else object[key] = value;
|
|
1768
1770
|
};
|
|
1769
1771
|
|
|
1770
1772
|
var $$a = _export;
|
|
@@ -1792,7 +1794,7 @@ var toString$9 = function (argument) {
|
|
|
1792
1794
|
return $String(argument);
|
|
1793
1795
|
};
|
|
1794
1796
|
|
|
1795
|
-
var anObject$9 = anObject$
|
|
1797
|
+
var anObject$9 = anObject$h;
|
|
1796
1798
|
|
|
1797
1799
|
// `RegExp.prototype.flags` getter implementation
|
|
1798
1800
|
// https://tc39.es/ecma262/#sec-get-regexp.prototype.flags
|
|
@@ -1811,7 +1813,7 @@ var regexpFlags$1 = function () {
|
|
|
1811
1813
|
};
|
|
1812
1814
|
|
|
1813
1815
|
var fails$i = fails$v;
|
|
1814
|
-
var global$j = global$
|
|
1816
|
+
var global$j = global$t;
|
|
1815
1817
|
|
|
1816
1818
|
// babel-minify and Closure Compiler transpiles RegExp('a', 'y') -> /a/y and it causes SyntaxError
|
|
1817
1819
|
var $RegExp$2 = global$j.RegExp;
|
|
@@ -1842,7 +1844,7 @@ var regexpStickyHelpers = {
|
|
|
1842
1844
|
};
|
|
1843
1845
|
|
|
1844
1846
|
var fails$h = fails$v;
|
|
1845
|
-
var global$i = global$
|
|
1847
|
+
var global$i = global$t;
|
|
1846
1848
|
|
|
1847
1849
|
// babel-minify and Closure Compiler transpiles RegExp('.', 's') -> /./s and it causes SyntaxError
|
|
1848
1850
|
var $RegExp$1 = global$i.RegExp;
|
|
@@ -1853,7 +1855,7 @@ var regexpUnsupportedDotAll = fails$h(function () {
|
|
|
1853
1855
|
});
|
|
1854
1856
|
|
|
1855
1857
|
var fails$g = fails$v;
|
|
1856
|
-
var global$h = global$
|
|
1858
|
+
var global$h = global$t;
|
|
1857
1859
|
|
|
1858
1860
|
// babel-minify and Closure Compiler transpiles RegExp('(?<a>b)', 'g') -> /(?<a>b)/g and it causes SyntaxError
|
|
1859
1861
|
var $RegExp = global$h.RegExp;
|
|
@@ -1871,7 +1873,7 @@ var uncurryThis$k = functionUncurryThis;
|
|
|
1871
1873
|
var toString$8 = toString$9;
|
|
1872
1874
|
var regexpFlags = regexpFlags$1;
|
|
1873
1875
|
var stickyHelpers = regexpStickyHelpers;
|
|
1874
|
-
var shared = shared$4
|
|
1876
|
+
var shared = shared$4;
|
|
1875
1877
|
var create$3 = objectCreate;
|
|
1876
1878
|
var getInternalState$3 = internalState.get;
|
|
1877
1879
|
var UNSUPPORTED_DOT_ALL = regexpUnsupportedDotAll;
|
|
@@ -1990,7 +1992,7 @@ $$9({ target: 'RegExp', proto: true, forced: /./.exec !== exec$1 }, {
|
|
|
1990
1992
|
exec: exec$1
|
|
1991
1993
|
});
|
|
1992
1994
|
|
|
1993
|
-
var isObject$6 = isObject$
|
|
1995
|
+
var isObject$6 = isObject$f;
|
|
1994
1996
|
var classof$a = classofRaw$2;
|
|
1995
1997
|
var wellKnownSymbol$b = wellKnownSymbol$l;
|
|
1996
1998
|
|
|
@@ -2032,7 +2034,7 @@ var correctIsRegexpLogic = function (METHOD_NAME) {
|
|
|
2032
2034
|
var $$8 = _export;
|
|
2033
2035
|
var uncurryThis$j = functionUncurryThis;
|
|
2034
2036
|
var notARegExp = notARegexp;
|
|
2035
|
-
var requireObjectCoercible$3 = requireObjectCoercible$
|
|
2037
|
+
var requireObjectCoercible$3 = requireObjectCoercible$7;
|
|
2036
2038
|
var toString$7 = toString$9;
|
|
2037
2039
|
var correctIsRegExpLogic = correctIsRegexpLogic;
|
|
2038
2040
|
|
|
@@ -2135,7 +2137,7 @@ var sameValue$1 = Object.is || function is(x, y) {
|
|
|
2135
2137
|
};
|
|
2136
2138
|
|
|
2137
2139
|
var call$a = functionCall;
|
|
2138
|
-
var anObject$8 = anObject$
|
|
2140
|
+
var anObject$8 = anObject$h;
|
|
2139
2141
|
var isCallable$5 = isCallable$k;
|
|
2140
2142
|
var classof$9 = classofRaw$2;
|
|
2141
2143
|
var regexpExec = regexpExec$2;
|
|
@@ -2157,9 +2159,9 @@ var regexpExecAbstract = function (R, S) {
|
|
|
2157
2159
|
|
|
2158
2160
|
var call$9 = functionCall;
|
|
2159
2161
|
var fixRegExpWellKnownSymbolLogic$1 = fixRegexpWellKnownSymbolLogic;
|
|
2160
|
-
var anObject$7 = anObject$
|
|
2162
|
+
var anObject$7 = anObject$h;
|
|
2161
2163
|
var isNullOrUndefined$2 = isNullOrUndefined$6;
|
|
2162
|
-
var requireObjectCoercible$2 = requireObjectCoercible$
|
|
2164
|
+
var requireObjectCoercible$2 = requireObjectCoercible$7;
|
|
2163
2165
|
var sameValue = sameValue$1;
|
|
2164
2166
|
var toString$6 = toString$9;
|
|
2165
2167
|
var getMethod$1 = getMethod$5;
|
|
@@ -2237,7 +2239,7 @@ var DOMTokenListPrototype$1 = classList && classList.constructor && classList.co
|
|
|
2237
2239
|
|
|
2238
2240
|
var domTokenListPrototype = DOMTokenListPrototype$1 === Object.prototype ? undefined : DOMTokenListPrototype$1;
|
|
2239
2241
|
|
|
2240
|
-
var global$g = global$
|
|
2242
|
+
var global$g = global$t;
|
|
2241
2243
|
var DOMIterables = domIterables;
|
|
2242
2244
|
var DOMTokenListPrototype = domTokenListPrototype;
|
|
2243
2245
|
var ArrayIteratorMethods = es_array_iterator;
|
|
@@ -2274,7 +2276,7 @@ for (var COLLECTION_NAME in DOMIterables) {
|
|
|
2274
2276
|
|
|
2275
2277
|
handlePrototype(DOMTokenListPrototype, 'DOMTokenList');
|
|
2276
2278
|
|
|
2277
|
-
var global$f = global$
|
|
2279
|
+
var global$f = global$t;
|
|
2278
2280
|
var DESCRIPTORS$b = descriptors;
|
|
2279
2281
|
|
|
2280
2282
|
// eslint-disable-next-line es/no-object-getownpropertydescriptor -- safe
|
|
@@ -2410,7 +2412,7 @@ var arraySort$1 = sort$1;
|
|
|
2410
2412
|
// TODO: in core-js@4, move /modules/ dependencies to public entries for better optimization by tools like `preset-env`
|
|
2411
2413
|
|
|
2412
2414
|
var $$7 = _export;
|
|
2413
|
-
var global$e = global$
|
|
2415
|
+
var global$e = global$t;
|
|
2414
2416
|
var safeGetBuiltIn = safeGetBuiltIn$1;
|
|
2415
2417
|
var call$8 = functionCall;
|
|
2416
2418
|
var uncurryThis$h = functionUncurryThis;
|
|
@@ -2427,8 +2429,8 @@ var isCallable$4 = isCallable$k;
|
|
|
2427
2429
|
var hasOwn$5 = hasOwnProperty_1;
|
|
2428
2430
|
var bind$3 = functionBindContext;
|
|
2429
2431
|
var classof$8 = classof$d;
|
|
2430
|
-
var anObject$6 = anObject$
|
|
2431
|
-
var isObject$5 = isObject$
|
|
2432
|
+
var anObject$6 = anObject$h;
|
|
2433
|
+
var isObject$5 = isObject$f;
|
|
2432
2434
|
var $toString$1 = toString$9;
|
|
2433
2435
|
var create$2 = objectCreate;
|
|
2434
2436
|
var createPropertyDescriptor$3 = createPropertyDescriptor$8;
|
|
@@ -3130,7 +3132,7 @@ var arrayFill$1 = function fill(value /* , start = 0, end = @length */) {
|
|
|
3130
3132
|
};
|
|
3131
3133
|
|
|
3132
3134
|
var isCallable$3 = isCallable$k;
|
|
3133
|
-
var isObject$4 = isObject$
|
|
3135
|
+
var isObject$4 = isObject$f;
|
|
3134
3136
|
var setPrototypeOf$3 = objectSetPrototypeOf;
|
|
3135
3137
|
|
|
3136
3138
|
// makes subclassing work correct for wrapped built-ins
|
|
@@ -3148,7 +3150,7 @@ var inheritIfRequired$3 = function ($this, dummy, Wrapper) {
|
|
|
3148
3150
|
return $this;
|
|
3149
3151
|
};
|
|
3150
3152
|
|
|
3151
|
-
var global$d = global$
|
|
3153
|
+
var global$d = global$t;
|
|
3152
3154
|
var uncurryThis$d = functionUncurryThis;
|
|
3153
3155
|
var DESCRIPTORS$7 = descriptors;
|
|
3154
3156
|
var NATIVE_ARRAY_BUFFER$1 = arrayBufferBasicDetection;
|
|
@@ -3471,7 +3473,7 @@ var aConstructor$2 = function (argument) {
|
|
|
3471
3473
|
throw new $TypeError$2(tryToString$1(argument) + ' is not a constructor');
|
|
3472
3474
|
};
|
|
3473
3475
|
|
|
3474
|
-
var anObject$5 = anObject$
|
|
3476
|
+
var anObject$5 = anObject$h;
|
|
3475
3477
|
var aConstructor$1 = aConstructor$2;
|
|
3476
3478
|
var isNullOrUndefined$1 = isNullOrUndefined$6;
|
|
3477
3479
|
var wellKnownSymbol$5 = wellKnownSymbol$l;
|
|
@@ -3490,7 +3492,7 @@ var $$6 = _export;
|
|
|
3490
3492
|
var uncurryThis$b = functionUncurryThisClause;
|
|
3491
3493
|
var fails$b = fails$v;
|
|
3492
3494
|
var ArrayBufferModule$1 = arrayBuffer;
|
|
3493
|
-
var anObject$4 = anObject$
|
|
3495
|
+
var anObject$4 = anObject$h;
|
|
3494
3496
|
var toAbsoluteIndex = toAbsoluteIndex$3;
|
|
3495
3497
|
var toLength$2 = toLength$6;
|
|
3496
3498
|
var speciesConstructor = speciesConstructor$1;
|
|
@@ -3526,6 +3528,196 @@ $$6({ target: 'ArrayBuffer', proto: true, unsafe: true, forced: INCORRECT_SLICE
|
|
|
3526
3528
|
}
|
|
3527
3529
|
});
|
|
3528
3530
|
|
|
3531
|
+
var uncurryThisAccessor$1 = functionUncurryThisAccessor;
|
|
3532
|
+
var classof$6 = classofRaw$2;
|
|
3533
|
+
|
|
3534
|
+
var $TypeError$1 = TypeError;
|
|
3535
|
+
|
|
3536
|
+
// Includes
|
|
3537
|
+
// - Perform ? RequireInternalSlot(O, [[ArrayBufferData]]).
|
|
3538
|
+
// - If IsSharedArrayBuffer(O) is true, throw a TypeError exception.
|
|
3539
|
+
var arrayBufferByteLength$2 = uncurryThisAccessor$1(ArrayBuffer.prototype, 'byteLength', 'get') || function (O) {
|
|
3540
|
+
if (classof$6(O) !== 'ArrayBuffer') throw new $TypeError$1('ArrayBuffer expected');
|
|
3541
|
+
return O.byteLength;
|
|
3542
|
+
};
|
|
3543
|
+
|
|
3544
|
+
var uncurryThis$a = functionUncurryThis;
|
|
3545
|
+
var arrayBufferByteLength$1 = arrayBufferByteLength$2;
|
|
3546
|
+
|
|
3547
|
+
var slice$2 = uncurryThis$a(ArrayBuffer.prototype.slice);
|
|
3548
|
+
|
|
3549
|
+
var arrayBufferIsDetached = function (O) {
|
|
3550
|
+
if (arrayBufferByteLength$1(O) !== 0) return false;
|
|
3551
|
+
try {
|
|
3552
|
+
slice$2(O, 0, 0);
|
|
3553
|
+
return false;
|
|
3554
|
+
} catch (error) {
|
|
3555
|
+
return true;
|
|
3556
|
+
}
|
|
3557
|
+
};
|
|
3558
|
+
|
|
3559
|
+
var DESCRIPTORS$6 = descriptors;
|
|
3560
|
+
var defineBuiltInAccessor$4 = defineBuiltInAccessor$8;
|
|
3561
|
+
var isDetached$1 = arrayBufferIsDetached;
|
|
3562
|
+
|
|
3563
|
+
var ArrayBufferPrototype$2 = ArrayBuffer.prototype;
|
|
3564
|
+
|
|
3565
|
+
if (DESCRIPTORS$6 && !('detached' in ArrayBufferPrototype$2)) {
|
|
3566
|
+
defineBuiltInAccessor$4(ArrayBufferPrototype$2, 'detached', {
|
|
3567
|
+
configurable: true,
|
|
3568
|
+
get: function detached() {
|
|
3569
|
+
return isDetached$1(this);
|
|
3570
|
+
}
|
|
3571
|
+
});
|
|
3572
|
+
}
|
|
3573
|
+
|
|
3574
|
+
var global$c = global$t;
|
|
3575
|
+
var classof$5 = classofRaw$2;
|
|
3576
|
+
|
|
3577
|
+
var engineIsNode = classof$5(global$c.process) === 'process';
|
|
3578
|
+
|
|
3579
|
+
var IS_NODE$2 = engineIsNode;
|
|
3580
|
+
|
|
3581
|
+
var tryNodeRequire$2 = function (name) {
|
|
3582
|
+
try {
|
|
3583
|
+
// eslint-disable-next-line no-new-func -- safe
|
|
3584
|
+
if (IS_NODE$2) return Function('return require("' + name + '")')();
|
|
3585
|
+
} catch (error) { /* empty */ }
|
|
3586
|
+
};
|
|
3587
|
+
|
|
3588
|
+
/* global Deno -- Deno case */
|
|
3589
|
+
var engineIsDeno = typeof Deno == 'object' && Deno && typeof Deno.version == 'object';
|
|
3590
|
+
|
|
3591
|
+
var IS_DENO$1 = engineIsDeno;
|
|
3592
|
+
var IS_NODE$1 = engineIsNode;
|
|
3593
|
+
|
|
3594
|
+
var engineIsBrowser = !IS_DENO$1 && !IS_NODE$1
|
|
3595
|
+
&& typeof window == 'object'
|
|
3596
|
+
&& typeof document == 'object';
|
|
3597
|
+
|
|
3598
|
+
var global$b = global$t;
|
|
3599
|
+
var fails$a = fails$v;
|
|
3600
|
+
var V8$1 = engineV8Version;
|
|
3601
|
+
var IS_BROWSER = engineIsBrowser;
|
|
3602
|
+
var IS_DENO = engineIsDeno;
|
|
3603
|
+
var IS_NODE = engineIsNode;
|
|
3604
|
+
|
|
3605
|
+
var structuredClone$2 = global$b.structuredClone;
|
|
3606
|
+
|
|
3607
|
+
var structuredCloneProperTransfer = !!structuredClone$2 && !fails$a(function () {
|
|
3608
|
+
// prevent V8 ArrayBufferDetaching protector cell invalidation and performance degradation
|
|
3609
|
+
// https://github.com/zloirock/core-js/issues/679
|
|
3610
|
+
if ((IS_DENO && V8$1 > 92) || (IS_NODE && V8$1 > 94) || (IS_BROWSER && V8$1 > 97)) return false;
|
|
3611
|
+
var buffer = new ArrayBuffer(8);
|
|
3612
|
+
var clone = structuredClone$2(buffer, { transfer: [buffer] });
|
|
3613
|
+
return buffer.byteLength !== 0 || clone.byteLength !== 8;
|
|
3614
|
+
});
|
|
3615
|
+
|
|
3616
|
+
var global$a = global$t;
|
|
3617
|
+
var tryNodeRequire$1 = tryNodeRequire$2;
|
|
3618
|
+
var PROPER_STRUCTURED_CLONE_TRANSFER$1 = structuredCloneProperTransfer;
|
|
3619
|
+
|
|
3620
|
+
var structuredClone$1 = global$a.structuredClone;
|
|
3621
|
+
var $ArrayBuffer = global$a.ArrayBuffer;
|
|
3622
|
+
var $MessageChannel = global$a.MessageChannel;
|
|
3623
|
+
var detach = false;
|
|
3624
|
+
var WorkerThreads, channel, buffer, $detach;
|
|
3625
|
+
|
|
3626
|
+
if (PROPER_STRUCTURED_CLONE_TRANSFER$1) {
|
|
3627
|
+
detach = function (transferable) {
|
|
3628
|
+
structuredClone$1(transferable, { transfer: [transferable] });
|
|
3629
|
+
};
|
|
3630
|
+
} else if ($ArrayBuffer) try {
|
|
3631
|
+
if (!$MessageChannel) {
|
|
3632
|
+
WorkerThreads = tryNodeRequire$1('worker_threads');
|
|
3633
|
+
if (WorkerThreads) $MessageChannel = WorkerThreads.MessageChannel;
|
|
3634
|
+
}
|
|
3635
|
+
|
|
3636
|
+
if ($MessageChannel) {
|
|
3637
|
+
channel = new $MessageChannel();
|
|
3638
|
+
buffer = new $ArrayBuffer(2);
|
|
3639
|
+
|
|
3640
|
+
$detach = function (transferable) {
|
|
3641
|
+
channel.port1.postMessage(null, [transferable]);
|
|
3642
|
+
};
|
|
3643
|
+
|
|
3644
|
+
if (buffer.byteLength === 2) {
|
|
3645
|
+
$detach(buffer);
|
|
3646
|
+
if (buffer.byteLength === 0) detach = $detach;
|
|
3647
|
+
}
|
|
3648
|
+
}
|
|
3649
|
+
} catch (error) { /* empty */ }
|
|
3650
|
+
|
|
3651
|
+
var detachTransferable$1 = detach;
|
|
3652
|
+
|
|
3653
|
+
var global$9 = global$t;
|
|
3654
|
+
var uncurryThis$9 = functionUncurryThis;
|
|
3655
|
+
var uncurryThisAccessor = functionUncurryThisAccessor;
|
|
3656
|
+
var toIndex$1 = toIndex$3;
|
|
3657
|
+
var isDetached = arrayBufferIsDetached;
|
|
3658
|
+
var arrayBufferByteLength = arrayBufferByteLength$2;
|
|
3659
|
+
var detachTransferable = detachTransferable$1;
|
|
3660
|
+
var PROPER_STRUCTURED_CLONE_TRANSFER = structuredCloneProperTransfer;
|
|
3661
|
+
|
|
3662
|
+
var structuredClone = global$9.structuredClone;
|
|
3663
|
+
var ArrayBuffer$3 = global$9.ArrayBuffer;
|
|
3664
|
+
var DataView$2 = global$9.DataView;
|
|
3665
|
+
var TypeError$2 = global$9.TypeError;
|
|
3666
|
+
var min$1 = Math.min;
|
|
3667
|
+
var ArrayBufferPrototype$1 = ArrayBuffer$3.prototype;
|
|
3668
|
+
var DataViewPrototype = DataView$2.prototype;
|
|
3669
|
+
var slice$1 = uncurryThis$9(ArrayBufferPrototype$1.slice);
|
|
3670
|
+
var isResizable = uncurryThisAccessor(ArrayBufferPrototype$1, 'resizable', 'get');
|
|
3671
|
+
var maxByteLength = uncurryThisAccessor(ArrayBufferPrototype$1, 'maxByteLength', 'get');
|
|
3672
|
+
var getInt8 = uncurryThis$9(DataViewPrototype.getInt8);
|
|
3673
|
+
var setInt8 = uncurryThis$9(DataViewPrototype.setInt8);
|
|
3674
|
+
|
|
3675
|
+
var arrayBufferTransfer = (PROPER_STRUCTURED_CLONE_TRANSFER || detachTransferable) && function (arrayBuffer, newLength, preserveResizability) {
|
|
3676
|
+
var byteLength = arrayBufferByteLength(arrayBuffer);
|
|
3677
|
+
var newByteLength = newLength === undefined ? byteLength : toIndex$1(newLength);
|
|
3678
|
+
var fixedLength = !isResizable || !isResizable(arrayBuffer);
|
|
3679
|
+
var newBuffer;
|
|
3680
|
+
if (isDetached(arrayBuffer)) throw new TypeError$2('ArrayBuffer is detached');
|
|
3681
|
+
if (PROPER_STRUCTURED_CLONE_TRANSFER) {
|
|
3682
|
+
arrayBuffer = structuredClone(arrayBuffer, { transfer: [arrayBuffer] });
|
|
3683
|
+
if (byteLength === newByteLength && (preserveResizability || fixedLength)) return arrayBuffer;
|
|
3684
|
+
}
|
|
3685
|
+
if (byteLength >= newByteLength && (!preserveResizability || fixedLength)) {
|
|
3686
|
+
newBuffer = slice$1(arrayBuffer, 0, newByteLength);
|
|
3687
|
+
} else {
|
|
3688
|
+
var options = preserveResizability && !fixedLength && maxByteLength ? { maxByteLength: maxByteLength(arrayBuffer) } : undefined;
|
|
3689
|
+
newBuffer = new ArrayBuffer$3(newByteLength, options);
|
|
3690
|
+
var a = new DataView$2(arrayBuffer);
|
|
3691
|
+
var b = new DataView$2(newBuffer);
|
|
3692
|
+
var copyLength = min$1(newByteLength, byteLength);
|
|
3693
|
+
for (var i = 0; i < copyLength; i++) setInt8(b, i, getInt8(a, i));
|
|
3694
|
+
}
|
|
3695
|
+
if (!PROPER_STRUCTURED_CLONE_TRANSFER) detachTransferable(arrayBuffer);
|
|
3696
|
+
return newBuffer;
|
|
3697
|
+
};
|
|
3698
|
+
|
|
3699
|
+
var $$5 = _export;
|
|
3700
|
+
var $transfer$1 = arrayBufferTransfer;
|
|
3701
|
+
|
|
3702
|
+
// `ArrayBuffer.prototype.transfer` method
|
|
3703
|
+
// https://tc39.es/proposal-arraybuffer-transfer/#sec-arraybuffer.prototype.transfer
|
|
3704
|
+
if ($transfer$1) $$5({ target: 'ArrayBuffer', proto: true }, {
|
|
3705
|
+
transfer: function transfer() {
|
|
3706
|
+
return $transfer$1(this, arguments.length ? arguments[0] : undefined, true);
|
|
3707
|
+
}
|
|
3708
|
+
});
|
|
3709
|
+
|
|
3710
|
+
var $$4 = _export;
|
|
3711
|
+
var $transfer = arrayBufferTransfer;
|
|
3712
|
+
|
|
3713
|
+
// `ArrayBuffer.prototype.transferToFixedLength` method
|
|
3714
|
+
// https://tc39.es/proposal-arraybuffer-transfer/#sec-arraybuffer.prototype.transfertofixedlength
|
|
3715
|
+
if ($transfer) $$4({ target: 'ArrayBuffer', proto: true }, {
|
|
3716
|
+
transferToFixedLength: function transferToFixedLength() {
|
|
3717
|
+
return $transfer(this, arguments.length ? arguments[0] : undefined, false);
|
|
3718
|
+
}
|
|
3719
|
+
});
|
|
3720
|
+
|
|
3529
3721
|
var call$7 = functionCall;
|
|
3530
3722
|
var hasOwn$4 = hasOwnProperty_1;
|
|
3531
3723
|
var isPrototypeOf$2 = objectIsPrototypeOf;
|
|
@@ -3541,16 +3733,16 @@ var regexpGetFlags = function (R) {
|
|
|
3541
3733
|
|
|
3542
3734
|
var PROPER_FUNCTION_NAME = functionName.PROPER;
|
|
3543
3735
|
var defineBuiltIn$2 = defineBuiltIn$b;
|
|
3544
|
-
var anObject$3 = anObject$
|
|
3736
|
+
var anObject$3 = anObject$h;
|
|
3545
3737
|
var $toString = toString$9;
|
|
3546
|
-
var fails$
|
|
3738
|
+
var fails$9 = fails$v;
|
|
3547
3739
|
var getRegExpFlags = regexpGetFlags;
|
|
3548
3740
|
|
|
3549
3741
|
var TO_STRING = 'toString';
|
|
3550
3742
|
var RegExpPrototype = RegExp.prototype;
|
|
3551
3743
|
var nativeToString = RegExpPrototype[TO_STRING];
|
|
3552
3744
|
|
|
3553
|
-
var NOT_GENERIC = fails$
|
|
3745
|
+
var NOT_GENERIC = fails$9(function () { return nativeToString.call({ source: 'a', flags: 'b' }) !== '/a/b'; });
|
|
3554
3746
|
// FF44- RegExp#toString has a wrong name
|
|
3555
3747
|
var INCORRECT_NAME = PROPER_FUNCTION_NAME && nativeToString.name !== TO_STRING;
|
|
3556
3748
|
|
|
@@ -3576,14 +3768,14 @@ var functionApply = typeof Reflect == 'object' && Reflect.apply || (NATIVE_BIND
|
|
|
3576
3768
|
return call$6.apply(apply$2, arguments);
|
|
3577
3769
|
});
|
|
3578
3770
|
|
|
3579
|
-
var uncurryThis$
|
|
3771
|
+
var uncurryThis$8 = functionUncurryThis;
|
|
3580
3772
|
var toIntegerOrInfinity$5 = toIntegerOrInfinity$a;
|
|
3581
3773
|
var toString$3 = toString$9;
|
|
3582
|
-
var requireObjectCoercible$1 = requireObjectCoercible$
|
|
3774
|
+
var requireObjectCoercible$1 = requireObjectCoercible$7;
|
|
3583
3775
|
|
|
3584
|
-
var charAt$3 = uncurryThis$
|
|
3585
|
-
var charCodeAt$1 = uncurryThis$
|
|
3586
|
-
var stringSlice$2 = uncurryThis$
|
|
3776
|
+
var charAt$3 = uncurryThis$8(''.charAt);
|
|
3777
|
+
var charCodeAt$1 = uncurryThis$8(''.charCodeAt);
|
|
3778
|
+
var stringSlice$2 = uncurryThis$8(''.slice);
|
|
3587
3779
|
|
|
3588
3780
|
var createMethod$2 = function (CONVERT_TO_STRING) {
|
|
3589
3781
|
return function ($this, pos) {
|
|
@@ -3621,13 +3813,13 @@ var advanceStringIndex$1 = function (S, index, unicode) {
|
|
|
3621
3813
|
return index + (unicode ? charAt$2(S, index).length : 1);
|
|
3622
3814
|
};
|
|
3623
3815
|
|
|
3624
|
-
var uncurryThis$
|
|
3816
|
+
var uncurryThis$7 = functionUncurryThis;
|
|
3625
3817
|
var toObject$3 = toObject$8;
|
|
3626
3818
|
|
|
3627
3819
|
var floor$1 = Math.floor;
|
|
3628
|
-
var charAt$1 = uncurryThis$
|
|
3629
|
-
var replace$1 = uncurryThis$
|
|
3630
|
-
var stringSlice$1 = uncurryThis$
|
|
3820
|
+
var charAt$1 = uncurryThis$7(''.charAt);
|
|
3821
|
+
var replace$1 = uncurryThis$7(''.replace);
|
|
3822
|
+
var stringSlice$1 = uncurryThis$7(''.slice);
|
|
3631
3823
|
// eslint-disable-next-line redos/no-vulnerable -- safe
|
|
3632
3824
|
var SUBSTITUTION_SYMBOLS = /\$([$&'`]|\d{1,2}|<[^>]*>)/g;
|
|
3633
3825
|
var SUBSTITUTION_SYMBOLS_NO_NAMED = /\$([$&'`]|\d{1,2})/g;
|
|
@@ -3669,16 +3861,16 @@ var getSubstitution$1 = function (matched, str, position, captures, namedCapture
|
|
|
3669
3861
|
|
|
3670
3862
|
var apply$1 = functionApply;
|
|
3671
3863
|
var call$5 = functionCall;
|
|
3672
|
-
var uncurryThis$
|
|
3864
|
+
var uncurryThis$6 = functionUncurryThis;
|
|
3673
3865
|
var fixRegExpWellKnownSymbolLogic = fixRegexpWellKnownSymbolLogic;
|
|
3674
|
-
var fails$
|
|
3675
|
-
var anObject$2 = anObject$
|
|
3866
|
+
var fails$8 = fails$v;
|
|
3867
|
+
var anObject$2 = anObject$h;
|
|
3676
3868
|
var isCallable$1 = isCallable$k;
|
|
3677
3869
|
var isNullOrUndefined = isNullOrUndefined$6;
|
|
3678
3870
|
var toIntegerOrInfinity$4 = toIntegerOrInfinity$a;
|
|
3679
3871
|
var toLength$1 = toLength$6;
|
|
3680
3872
|
var toString$2 = toString$9;
|
|
3681
|
-
var requireObjectCoercible = requireObjectCoercible$
|
|
3873
|
+
var requireObjectCoercible = requireObjectCoercible$7;
|
|
3682
3874
|
var advanceStringIndex = advanceStringIndex$1;
|
|
3683
3875
|
var getMethod = getMethod$5;
|
|
3684
3876
|
var getSubstitution = getSubstitution$1;
|
|
@@ -3687,11 +3879,11 @@ var wellKnownSymbol$4 = wellKnownSymbol$l;
|
|
|
3687
3879
|
|
|
3688
3880
|
var REPLACE = wellKnownSymbol$4('replace');
|
|
3689
3881
|
var max = Math.max;
|
|
3690
|
-
var min
|
|
3691
|
-
var concat = uncurryThis$
|
|
3692
|
-
var push$1 = uncurryThis$
|
|
3693
|
-
var stringIndexOf = uncurryThis$
|
|
3694
|
-
var stringSlice = uncurryThis$
|
|
3882
|
+
var min = Math.min;
|
|
3883
|
+
var concat = uncurryThis$6([].concat);
|
|
3884
|
+
var push$1 = uncurryThis$6([].push);
|
|
3885
|
+
var stringIndexOf = uncurryThis$6(''.indexOf);
|
|
3886
|
+
var stringSlice = uncurryThis$6(''.slice);
|
|
3695
3887
|
|
|
3696
3888
|
var maybeToString = function (it) {
|
|
3697
3889
|
return it === undefined ? it : String(it);
|
|
@@ -3712,7 +3904,7 @@ var REGEXP_REPLACE_SUBSTITUTES_UNDEFINED_CAPTURE = (function () {
|
|
|
3712
3904
|
return false;
|
|
3713
3905
|
})();
|
|
3714
3906
|
|
|
3715
|
-
var REPLACE_SUPPORTS_NAMED_GROUPS = !fails$
|
|
3907
|
+
var REPLACE_SUPPORTS_NAMED_GROUPS = !fails$8(function () {
|
|
3716
3908
|
var re = /./;
|
|
3717
3909
|
re.exec = function () {
|
|
3718
3910
|
var result = [];
|
|
@@ -3781,7 +3973,7 @@ fixRegExpWellKnownSymbolLogic('replace', function (_, nativeReplace, maybeCallNa
|
|
|
3781
3973
|
result = results[i];
|
|
3782
3974
|
|
|
3783
3975
|
var matched = toString$2(result[0]);
|
|
3784
|
-
var position = max(min
|
|
3976
|
+
var position = max(min(toIntegerOrInfinity$4(result.index), S.length), 0);
|
|
3785
3977
|
var captures = [];
|
|
3786
3978
|
var replacement;
|
|
3787
3979
|
// NOTE: This is equivalent to
|
|
@@ -3853,16 +4045,16 @@ var checkCorrectnessOfIteration$1 = function (exec, SKIP_CLOSING) {
|
|
|
3853
4045
|
};
|
|
3854
4046
|
|
|
3855
4047
|
var NATIVE_ARRAY_BUFFER = arrayBufferBasicDetection;
|
|
3856
|
-
var DESCRIPTORS$
|
|
3857
|
-
var global$
|
|
4048
|
+
var DESCRIPTORS$5 = descriptors;
|
|
4049
|
+
var global$8 = global$t;
|
|
3858
4050
|
var isCallable = isCallable$k;
|
|
3859
|
-
var isObject$3 = isObject$
|
|
4051
|
+
var isObject$3 = isObject$f;
|
|
3860
4052
|
var hasOwn$3 = hasOwnProperty_1;
|
|
3861
|
-
var classof$
|
|
4053
|
+
var classof$4 = classof$d;
|
|
3862
4054
|
var tryToString = tryToString$5;
|
|
3863
4055
|
var createNonEnumerableProperty$1 = createNonEnumerableProperty$8;
|
|
3864
4056
|
var defineBuiltIn$1 = defineBuiltIn$b;
|
|
3865
|
-
var defineBuiltInAccessor$
|
|
4057
|
+
var defineBuiltInAccessor$3 = defineBuiltInAccessor$8;
|
|
3866
4058
|
var isPrototypeOf$1 = objectIsPrototypeOf;
|
|
3867
4059
|
var getPrototypeOf = objectGetPrototypeOf;
|
|
3868
4060
|
var setPrototypeOf$1 = objectSetPrototypeOf;
|
|
@@ -3872,20 +4064,20 @@ var InternalStateModule$2 = internalState;
|
|
|
3872
4064
|
|
|
3873
4065
|
var enforceInternalState$1 = InternalStateModule$2.enforce;
|
|
3874
4066
|
var getInternalState$2 = InternalStateModule$2.get;
|
|
3875
|
-
var Int8Array$4 = global$
|
|
4067
|
+
var Int8Array$4 = global$8.Int8Array;
|
|
3876
4068
|
var Int8ArrayPrototype$1 = Int8Array$4 && Int8Array$4.prototype;
|
|
3877
|
-
var Uint8ClampedArray$1 = global$
|
|
4069
|
+
var Uint8ClampedArray$1 = global$8.Uint8ClampedArray;
|
|
3878
4070
|
var Uint8ClampedArrayPrototype = Uint8ClampedArray$1 && Uint8ClampedArray$1.prototype;
|
|
3879
4071
|
var TypedArray$1 = Int8Array$4 && getPrototypeOf(Int8Array$4);
|
|
3880
4072
|
var TypedArrayPrototype$1 = Int8ArrayPrototype$1 && getPrototypeOf(Int8ArrayPrototype$1);
|
|
3881
4073
|
var ObjectPrototype = Object.prototype;
|
|
3882
|
-
var TypeError$
|
|
4074
|
+
var TypeError$1 = global$8.TypeError;
|
|
3883
4075
|
|
|
3884
4076
|
var TO_STRING_TAG = wellKnownSymbol$2('toStringTag');
|
|
3885
4077
|
var TYPED_ARRAY_TAG$1 = uid('TYPED_ARRAY_TAG');
|
|
3886
4078
|
var TYPED_ARRAY_CONSTRUCTOR = 'TypedArrayConstructor';
|
|
3887
4079
|
// Fixing native typed arrays in Opera Presto crashes the browser, see #595
|
|
3888
|
-
var NATIVE_ARRAY_BUFFER_VIEWS$2 = NATIVE_ARRAY_BUFFER && !!setPrototypeOf$1 && classof$
|
|
4080
|
+
var NATIVE_ARRAY_BUFFER_VIEWS$2 = NATIVE_ARRAY_BUFFER && !!setPrototypeOf$1 && classof$4(global$8.opera) !== 'Opera';
|
|
3889
4081
|
var TYPED_ARRAY_TAG_REQUIRED = false;
|
|
3890
4082
|
var NAME, Constructor, Prototype;
|
|
3891
4083
|
|
|
@@ -3908,7 +4100,7 @@ var BigIntArrayConstructorsList = {
|
|
|
3908
4100
|
|
|
3909
4101
|
var isView = function isView(it) {
|
|
3910
4102
|
if (!isObject$3(it)) return false;
|
|
3911
|
-
var klass = classof$
|
|
4103
|
+
var klass = classof$4(it);
|
|
3912
4104
|
return klass === 'DataView'
|
|
3913
4105
|
|| hasOwn$3(TypedArrayConstructorsList, klass)
|
|
3914
4106
|
|| hasOwn$3(BigIntArrayConstructorsList, klass);
|
|
@@ -3923,25 +4115,25 @@ var getTypedArrayConstructor$3 = function (it) {
|
|
|
3923
4115
|
|
|
3924
4116
|
var isTypedArray$1 = function (it) {
|
|
3925
4117
|
if (!isObject$3(it)) return false;
|
|
3926
|
-
var klass = classof$
|
|
4118
|
+
var klass = classof$4(it);
|
|
3927
4119
|
return hasOwn$3(TypedArrayConstructorsList, klass)
|
|
3928
4120
|
|| hasOwn$3(BigIntArrayConstructorsList, klass);
|
|
3929
4121
|
};
|
|
3930
4122
|
|
|
3931
4123
|
var aTypedArray$a = function (it) {
|
|
3932
4124
|
if (isTypedArray$1(it)) return it;
|
|
3933
|
-
throw new TypeError$
|
|
4125
|
+
throw new TypeError$1('Target is not a typed array');
|
|
3934
4126
|
};
|
|
3935
4127
|
|
|
3936
4128
|
var aTypedArrayConstructor$1 = function (C) {
|
|
3937
4129
|
if (isCallable(C) && (!setPrototypeOf$1 || isPrototypeOf$1(TypedArray$1, C))) return C;
|
|
3938
|
-
throw new TypeError$
|
|
4130
|
+
throw new TypeError$1(tryToString(C) + ' is not a typed array constructor');
|
|
3939
4131
|
};
|
|
3940
4132
|
|
|
3941
4133
|
var exportTypedArrayMethod$a = function (KEY, property, forced, options) {
|
|
3942
|
-
if (!DESCRIPTORS$
|
|
4134
|
+
if (!DESCRIPTORS$5) return;
|
|
3943
4135
|
if (forced) for (var ARRAY in TypedArrayConstructorsList) {
|
|
3944
|
-
var TypedArrayConstructor = global$
|
|
4136
|
+
var TypedArrayConstructor = global$8[ARRAY];
|
|
3945
4137
|
if (TypedArrayConstructor && hasOwn$3(TypedArrayConstructor.prototype, KEY)) try {
|
|
3946
4138
|
delete TypedArrayConstructor.prototype[KEY];
|
|
3947
4139
|
} catch (error) {
|
|
@@ -3959,10 +4151,10 @@ var exportTypedArrayMethod$a = function (KEY, property, forced, options) {
|
|
|
3959
4151
|
|
|
3960
4152
|
var exportTypedArrayStaticMethod = function (KEY, property, forced) {
|
|
3961
4153
|
var ARRAY, TypedArrayConstructor;
|
|
3962
|
-
if (!DESCRIPTORS$
|
|
4154
|
+
if (!DESCRIPTORS$5) return;
|
|
3963
4155
|
if (setPrototypeOf$1) {
|
|
3964
4156
|
if (forced) for (ARRAY in TypedArrayConstructorsList) {
|
|
3965
|
-
TypedArrayConstructor = global$
|
|
4157
|
+
TypedArrayConstructor = global$8[ARRAY];
|
|
3966
4158
|
if (TypedArrayConstructor && hasOwn$3(TypedArrayConstructor, KEY)) try {
|
|
3967
4159
|
delete TypedArrayConstructor[KEY];
|
|
3968
4160
|
} catch (error) { /* empty */ }
|
|
@@ -3975,7 +4167,7 @@ var exportTypedArrayStaticMethod = function (KEY, property, forced) {
|
|
|
3975
4167
|
} else return;
|
|
3976
4168
|
}
|
|
3977
4169
|
for (ARRAY in TypedArrayConstructorsList) {
|
|
3978
|
-
TypedArrayConstructor = global$
|
|
4170
|
+
TypedArrayConstructor = global$8[ARRAY];
|
|
3979
4171
|
if (TypedArrayConstructor && (!TypedArrayConstructor[KEY] || forced)) {
|
|
3980
4172
|
defineBuiltIn$1(TypedArrayConstructor, KEY, property);
|
|
3981
4173
|
}
|
|
@@ -3983,14 +4175,14 @@ var exportTypedArrayStaticMethod = function (KEY, property, forced) {
|
|
|
3983
4175
|
};
|
|
3984
4176
|
|
|
3985
4177
|
for (NAME in TypedArrayConstructorsList) {
|
|
3986
|
-
Constructor = global$
|
|
4178
|
+
Constructor = global$8[NAME];
|
|
3987
4179
|
Prototype = Constructor && Constructor.prototype;
|
|
3988
4180
|
if (Prototype) enforceInternalState$1(Prototype)[TYPED_ARRAY_CONSTRUCTOR] = Constructor;
|
|
3989
4181
|
else NATIVE_ARRAY_BUFFER_VIEWS$2 = false;
|
|
3990
4182
|
}
|
|
3991
4183
|
|
|
3992
4184
|
for (NAME in BigIntArrayConstructorsList) {
|
|
3993
|
-
Constructor = global$
|
|
4185
|
+
Constructor = global$8[NAME];
|
|
3994
4186
|
Prototype = Constructor && Constructor.prototype;
|
|
3995
4187
|
if (Prototype) enforceInternalState$1(Prototype)[TYPED_ARRAY_CONSTRUCTOR] = Constructor;
|
|
3996
4188
|
}
|
|
@@ -3999,17 +4191,17 @@ for (NAME in BigIntArrayConstructorsList) {
|
|
|
3999
4191
|
if (!NATIVE_ARRAY_BUFFER_VIEWS$2 || !isCallable(TypedArray$1) || TypedArray$1 === Function.prototype) {
|
|
4000
4192
|
// eslint-disable-next-line no-shadow -- safe
|
|
4001
4193
|
TypedArray$1 = function TypedArray() {
|
|
4002
|
-
throw new TypeError$
|
|
4194
|
+
throw new TypeError$1('Incorrect invocation');
|
|
4003
4195
|
};
|
|
4004
4196
|
if (NATIVE_ARRAY_BUFFER_VIEWS$2) for (NAME in TypedArrayConstructorsList) {
|
|
4005
|
-
if (global$
|
|
4197
|
+
if (global$8[NAME]) setPrototypeOf$1(global$8[NAME], TypedArray$1);
|
|
4006
4198
|
}
|
|
4007
4199
|
}
|
|
4008
4200
|
|
|
4009
4201
|
if (!NATIVE_ARRAY_BUFFER_VIEWS$2 || !TypedArrayPrototype$1 || TypedArrayPrototype$1 === ObjectPrototype) {
|
|
4010
4202
|
TypedArrayPrototype$1 = TypedArray$1.prototype;
|
|
4011
4203
|
if (NATIVE_ARRAY_BUFFER_VIEWS$2) for (NAME in TypedArrayConstructorsList) {
|
|
4012
|
-
if (global$
|
|
4204
|
+
if (global$8[NAME]) setPrototypeOf$1(global$8[NAME].prototype, TypedArrayPrototype$1);
|
|
4013
4205
|
}
|
|
4014
4206
|
}
|
|
4015
4207
|
|
|
@@ -4018,16 +4210,16 @@ if (NATIVE_ARRAY_BUFFER_VIEWS$2 && getPrototypeOf(Uint8ClampedArrayPrototype) !=
|
|
|
4018
4210
|
setPrototypeOf$1(Uint8ClampedArrayPrototype, TypedArrayPrototype$1);
|
|
4019
4211
|
}
|
|
4020
4212
|
|
|
4021
|
-
if (DESCRIPTORS$
|
|
4213
|
+
if (DESCRIPTORS$5 && !hasOwn$3(TypedArrayPrototype$1, TO_STRING_TAG)) {
|
|
4022
4214
|
TYPED_ARRAY_TAG_REQUIRED = true;
|
|
4023
|
-
defineBuiltInAccessor$
|
|
4215
|
+
defineBuiltInAccessor$3(TypedArrayPrototype$1, TO_STRING_TAG, {
|
|
4024
4216
|
configurable: true,
|
|
4025
4217
|
get: function () {
|
|
4026
4218
|
return isObject$3(this) ? this[TYPED_ARRAY_TAG$1] : undefined;
|
|
4027
4219
|
}
|
|
4028
4220
|
});
|
|
4029
|
-
for (NAME in TypedArrayConstructorsList) if (global$
|
|
4030
|
-
createNonEnumerableProperty$1(global$
|
|
4221
|
+
for (NAME in TypedArrayConstructorsList) if (global$8[NAME]) {
|
|
4222
|
+
createNonEnumerableProperty$1(global$8[NAME], TYPED_ARRAY_TAG$1, NAME);
|
|
4031
4223
|
}
|
|
4032
4224
|
}
|
|
4033
4225
|
|
|
@@ -4046,29 +4238,29 @@ var arrayBufferViewCore = {
|
|
|
4046
4238
|
};
|
|
4047
4239
|
|
|
4048
4240
|
/* eslint-disable no-new -- required for testing */
|
|
4049
|
-
var global$
|
|
4050
|
-
var fails$
|
|
4241
|
+
var global$7 = global$t;
|
|
4242
|
+
var fails$7 = fails$v;
|
|
4051
4243
|
var checkCorrectnessOfIteration = checkCorrectnessOfIteration$1;
|
|
4052
4244
|
var NATIVE_ARRAY_BUFFER_VIEWS$1 = arrayBufferViewCore.NATIVE_ARRAY_BUFFER_VIEWS;
|
|
4053
4245
|
|
|
4054
|
-
var ArrayBuffer$
|
|
4055
|
-
var Int8Array$3 = global$
|
|
4246
|
+
var ArrayBuffer$2 = global$7.ArrayBuffer;
|
|
4247
|
+
var Int8Array$3 = global$7.Int8Array;
|
|
4056
4248
|
|
|
4057
|
-
var typedArrayConstructorsRequireWrappers = !NATIVE_ARRAY_BUFFER_VIEWS$1 || !fails$
|
|
4249
|
+
var typedArrayConstructorsRequireWrappers = !NATIVE_ARRAY_BUFFER_VIEWS$1 || !fails$7(function () {
|
|
4058
4250
|
Int8Array$3(1);
|
|
4059
|
-
}) || !fails$
|
|
4251
|
+
}) || !fails$7(function () {
|
|
4060
4252
|
new Int8Array$3(-1);
|
|
4061
4253
|
}) || !checkCorrectnessOfIteration(function (iterable) {
|
|
4062
4254
|
new Int8Array$3();
|
|
4063
4255
|
new Int8Array$3(null);
|
|
4064
4256
|
new Int8Array$3(1.5);
|
|
4065
4257
|
new Int8Array$3(iterable);
|
|
4066
|
-
}, true) || fails$
|
|
4258
|
+
}, true) || fails$7(function () {
|
|
4067
4259
|
// Safari (11+) bug - a reason why even Safari 13 should load a typed array polyfill
|
|
4068
|
-
return new Int8Array$3(new ArrayBuffer$
|
|
4260
|
+
return new Int8Array$3(new ArrayBuffer$2(2), 1, undefined).length !== 1;
|
|
4069
4261
|
});
|
|
4070
4262
|
|
|
4071
|
-
var isObject$2 = isObject$
|
|
4263
|
+
var isObject$2 = isObject$f;
|
|
4072
4264
|
|
|
4073
4265
|
var floor = Math.floor;
|
|
4074
4266
|
|
|
@@ -4106,22 +4298,22 @@ var toUint8Clamped$1 = function (it) {
|
|
|
4106
4298
|
return value < 0 ? 0 : value > 0xFF ? 0xFF : value & 0xFF;
|
|
4107
4299
|
};
|
|
4108
4300
|
|
|
4109
|
-
var classof$
|
|
4301
|
+
var classof$3 = classof$d;
|
|
4110
4302
|
|
|
4111
4303
|
var isBigIntArray$2 = function (it) {
|
|
4112
|
-
var klass = classof$
|
|
4304
|
+
var klass = classof$3(it);
|
|
4113
4305
|
return klass === 'BigInt64Array' || klass === 'BigUint64Array';
|
|
4114
4306
|
};
|
|
4115
4307
|
|
|
4116
4308
|
var toPrimitive = toPrimitive$2;
|
|
4117
4309
|
|
|
4118
|
-
var $TypeError
|
|
4310
|
+
var $TypeError = TypeError;
|
|
4119
4311
|
|
|
4120
4312
|
// `ToBigInt` abstract operation
|
|
4121
4313
|
// https://tc39.es/ecma262/#sec-tobigint
|
|
4122
4314
|
var toBigInt$3 = function (argument) {
|
|
4123
4315
|
var prim = toPrimitive(argument, 'number');
|
|
4124
|
-
if (typeof prim == 'number') throw new $TypeError
|
|
4316
|
+
if (typeof prim == 'number') throw new $TypeError("Can't convert number to bigint");
|
|
4125
4317
|
// eslint-disable-next-line es/no-bigint -- safe
|
|
4126
4318
|
return BigInt(prim);
|
|
4127
4319
|
};
|
|
@@ -4168,18 +4360,18 @@ var typedArrayFrom$1 = function from(source /* , mapfn, thisArg */) {
|
|
|
4168
4360
|
return result;
|
|
4169
4361
|
};
|
|
4170
4362
|
|
|
4171
|
-
var classof$
|
|
4363
|
+
var classof$2 = classofRaw$2;
|
|
4172
4364
|
|
|
4173
4365
|
// `IsArray` abstract operation
|
|
4174
4366
|
// https://tc39.es/ecma262/#sec-isarray
|
|
4175
4367
|
// eslint-disable-next-line es/no-array-isarray -- safe
|
|
4176
4368
|
var isArray$1 = Array.isArray || function isArray(argument) {
|
|
4177
|
-
return classof$
|
|
4369
|
+
return classof$2(argument) === 'Array';
|
|
4178
4370
|
};
|
|
4179
4371
|
|
|
4180
4372
|
var isArray = isArray$1;
|
|
4181
4373
|
var isConstructor = isConstructor$2;
|
|
4182
|
-
var isObject$1 = isObject$
|
|
4374
|
+
var isObject$1 = isObject$f;
|
|
4183
4375
|
var wellKnownSymbol$1 = wellKnownSymbol$l;
|
|
4184
4376
|
|
|
4185
4377
|
var SPECIES$1 = wellKnownSymbol$1('species');
|
|
@@ -4209,13 +4401,13 @@ var arraySpeciesCreate$1 = function (originalArray, length) {
|
|
|
4209
4401
|
};
|
|
4210
4402
|
|
|
4211
4403
|
var bind$1 = functionBindContext;
|
|
4212
|
-
var uncurryThis$
|
|
4404
|
+
var uncurryThis$5 = functionUncurryThis;
|
|
4213
4405
|
var IndexedObject$1 = indexedObject;
|
|
4214
4406
|
var toObject$1 = toObject$8;
|
|
4215
4407
|
var lengthOfArrayLike$6 = lengthOfArrayLike$b;
|
|
4216
4408
|
var arraySpeciesCreate = arraySpeciesCreate$1;
|
|
4217
4409
|
|
|
4218
|
-
var push = uncurryThis$
|
|
4410
|
+
var push = uncurryThis$5([].push);
|
|
4219
4411
|
|
|
4220
4412
|
// `Array.prototype.{ forEach, map, filter, some, every, find, findIndex, filterReject }` methods implementation
|
|
4221
4413
|
var createMethod$1 = function (TYPE) {
|
|
@@ -4283,17 +4475,17 @@ var arrayIteration = {
|
|
|
4283
4475
|
};
|
|
4284
4476
|
|
|
4285
4477
|
var getBuiltIn$4 = getBuiltIn$9;
|
|
4286
|
-
var defineBuiltInAccessor$
|
|
4478
|
+
var defineBuiltInAccessor$2 = defineBuiltInAccessor$8;
|
|
4287
4479
|
var wellKnownSymbol = wellKnownSymbol$l;
|
|
4288
|
-
var DESCRIPTORS$
|
|
4480
|
+
var DESCRIPTORS$4 = descriptors;
|
|
4289
4481
|
|
|
4290
4482
|
var SPECIES = wellKnownSymbol('species');
|
|
4291
4483
|
|
|
4292
4484
|
var setSpecies$1 = function (CONSTRUCTOR_NAME) {
|
|
4293
4485
|
var Constructor = getBuiltIn$4(CONSTRUCTOR_NAME);
|
|
4294
4486
|
|
|
4295
|
-
if (DESCRIPTORS$
|
|
4296
|
-
defineBuiltInAccessor$
|
|
4487
|
+
if (DESCRIPTORS$4 && Constructor && !Constructor[SPECIES]) {
|
|
4488
|
+
defineBuiltInAccessor$2(Constructor, SPECIES, {
|
|
4297
4489
|
configurable: true,
|
|
4298
4490
|
get: function () { return this; }
|
|
4299
4491
|
});
|
|
@@ -4310,10 +4502,10 @@ var arrayFromConstructorAndList$2 = function (Constructor, list, $length) {
|
|
|
4310
4502
|
return result;
|
|
4311
4503
|
};
|
|
4312
4504
|
|
|
4313
|
-
var $$
|
|
4314
|
-
var global$
|
|
4505
|
+
var $$3 = _export;
|
|
4506
|
+
var global$6 = global$t;
|
|
4315
4507
|
var call$3 = functionCall;
|
|
4316
|
-
var DESCRIPTORS$
|
|
4508
|
+
var DESCRIPTORS$3 = descriptors;
|
|
4317
4509
|
var TYPED_ARRAYS_CONSTRUCTORS_REQUIRES_WRAPPERS = typedArrayConstructorsRequireWrappers;
|
|
4318
4510
|
var ArrayBufferViewCore$a = arrayBufferViewCore;
|
|
4319
4511
|
var ArrayBufferModule = arrayBuffer;
|
|
@@ -4322,13 +4514,13 @@ var createPropertyDescriptor$2 = createPropertyDescriptor$8;
|
|
|
4322
4514
|
var createNonEnumerableProperty = createNonEnumerableProperty$8;
|
|
4323
4515
|
var isIntegralNumber = isIntegralNumber$1;
|
|
4324
4516
|
var toLength = toLength$6;
|
|
4325
|
-
var toIndex
|
|
4517
|
+
var toIndex = toIndex$3;
|
|
4326
4518
|
var toOffset$1 = toOffset$2;
|
|
4327
4519
|
var toUint8Clamped = toUint8Clamped$1;
|
|
4328
|
-
var toPropertyKey = toPropertyKey$
|
|
4520
|
+
var toPropertyKey = toPropertyKey$3;
|
|
4329
4521
|
var hasOwn$2 = hasOwnProperty_1;
|
|
4330
|
-
var classof$
|
|
4331
|
-
var isObject = isObject$
|
|
4522
|
+
var classof$1 = classof$d;
|
|
4523
|
+
var isObject = isObject$f;
|
|
4332
4524
|
var isSymbol = isSymbol$3;
|
|
4333
4525
|
var create$1 = objectCreate;
|
|
4334
4526
|
var isPrototypeOf = objectIsPrototypeOf;
|
|
@@ -4337,7 +4529,7 @@ var getOwnPropertyNames = objectGetOwnPropertyNames.f;
|
|
|
4337
4529
|
var typedArrayFrom = typedArrayFrom$1;
|
|
4338
4530
|
var forEach = arrayIteration.forEach;
|
|
4339
4531
|
var setSpecies = setSpecies$1;
|
|
4340
|
-
var defineBuiltInAccessor$
|
|
4532
|
+
var defineBuiltInAccessor$1 = defineBuiltInAccessor$8;
|
|
4341
4533
|
var definePropertyModule = objectDefineProperty;
|
|
4342
4534
|
var getOwnPropertyDescriptorModule = objectGetOwnPropertyDescriptor;
|
|
4343
4535
|
var arrayFromConstructorAndList$1 = arrayFromConstructorAndList$2;
|
|
@@ -4349,10 +4541,10 @@ var setInternalState$1 = InternalStateModule$1.set;
|
|
|
4349
4541
|
var enforceInternalState = InternalStateModule$1.enforce;
|
|
4350
4542
|
var nativeDefineProperty = definePropertyModule.f;
|
|
4351
4543
|
var nativeGetOwnPropertyDescriptor = getOwnPropertyDescriptorModule.f;
|
|
4352
|
-
var RangeError$2 = global$
|
|
4353
|
-
var ArrayBuffer$
|
|
4354
|
-
var ArrayBufferPrototype
|
|
4355
|
-
var DataView$
|
|
4544
|
+
var RangeError$2 = global$6.RangeError;
|
|
4545
|
+
var ArrayBuffer$1 = ArrayBufferModule.ArrayBuffer;
|
|
4546
|
+
var ArrayBufferPrototype = ArrayBuffer$1.prototype;
|
|
4547
|
+
var DataView$1 = ArrayBufferModule.DataView;
|
|
4356
4548
|
var NATIVE_ARRAY_BUFFER_VIEWS = ArrayBufferViewCore$a.NATIVE_ARRAY_BUFFER_VIEWS;
|
|
4357
4549
|
var TYPED_ARRAY_TAG = ArrayBufferViewCore$a.TYPED_ARRAY_TAG;
|
|
4358
4550
|
var TypedArray = ArrayBufferViewCore$a.TypedArray;
|
|
@@ -4362,7 +4554,7 @@ var BYTES_PER_ELEMENT = 'BYTES_PER_ELEMENT';
|
|
|
4362
4554
|
var WRONG_LENGTH = 'Wrong length';
|
|
4363
4555
|
|
|
4364
4556
|
var addGetter = function (it, key) {
|
|
4365
|
-
defineBuiltInAccessor$
|
|
4557
|
+
defineBuiltInAccessor$1(it, key, {
|
|
4366
4558
|
configurable: true,
|
|
4367
4559
|
get: function () {
|
|
4368
4560
|
return getInternalState$1(this)[key];
|
|
@@ -4372,7 +4564,7 @@ var addGetter = function (it, key) {
|
|
|
4372
4564
|
|
|
4373
4565
|
var isArrayBuffer = function (it) {
|
|
4374
4566
|
var klass;
|
|
4375
|
-
return isPrototypeOf(ArrayBufferPrototype
|
|
4567
|
+
return isPrototypeOf(ArrayBufferPrototype, it) || (klass = classof$1(it)) === 'ArrayBuffer' || klass === 'SharedArrayBuffer';
|
|
4376
4568
|
};
|
|
4377
4569
|
|
|
4378
4570
|
var isTypedArrayIndex = function (target, key) {
|
|
@@ -4407,7 +4599,7 @@ var wrappedDefineProperty = function defineProperty(target, key, descriptor) {
|
|
|
4407
4599
|
} return nativeDefineProperty(target, key, descriptor);
|
|
4408
4600
|
};
|
|
4409
4601
|
|
|
4410
|
-
if (DESCRIPTORS$
|
|
4602
|
+
if (DESCRIPTORS$3) {
|
|
4411
4603
|
if (!NATIVE_ARRAY_BUFFER_VIEWS) {
|
|
4412
4604
|
getOwnPropertyDescriptorModule.f = wrappedGetOwnPropertyDescriptor;
|
|
4413
4605
|
definePropertyModule.f = wrappedDefineProperty;
|
|
@@ -4417,7 +4609,7 @@ if (DESCRIPTORS$4) {
|
|
|
4417
4609
|
addGetter(TypedArrayPrototype, 'length');
|
|
4418
4610
|
}
|
|
4419
4611
|
|
|
4420
|
-
$$
|
|
4612
|
+
$$3({ target: 'Object', stat: true, forced: !NATIVE_ARRAY_BUFFER_VIEWS }, {
|
|
4421
4613
|
getOwnPropertyDescriptor: wrappedGetOwnPropertyDescriptor,
|
|
4422
4614
|
defineProperty: wrappedDefineProperty
|
|
4423
4615
|
});
|
|
@@ -4427,7 +4619,7 @@ if (DESCRIPTORS$4) {
|
|
|
4427
4619
|
var CONSTRUCTOR_NAME = TYPE + (CLAMPED ? 'Clamped' : '') + 'Array';
|
|
4428
4620
|
var GETTER = 'get' + TYPE;
|
|
4429
4621
|
var SETTER = 'set' + TYPE;
|
|
4430
|
-
var NativeTypedArrayConstructor = global$
|
|
4622
|
+
var NativeTypedArrayConstructor = global$6[CONSTRUCTOR_NAME];
|
|
4431
4623
|
var TypedArrayConstructor = NativeTypedArrayConstructor;
|
|
4432
4624
|
var TypedArrayConstructorPrototype = TypedArrayConstructor && TypedArrayConstructor.prototype;
|
|
4433
4625
|
var exported = {};
|
|
@@ -4461,9 +4653,9 @@ if (DESCRIPTORS$4) {
|
|
|
4461
4653
|
var byteOffset = 0;
|
|
4462
4654
|
var buffer, byteLength, length;
|
|
4463
4655
|
if (!isObject(data)) {
|
|
4464
|
-
length = toIndex
|
|
4656
|
+
length = toIndex(data);
|
|
4465
4657
|
byteLength = length * BYTES;
|
|
4466
|
-
buffer = new ArrayBuffer$
|
|
4658
|
+
buffer = new ArrayBuffer$1(byteLength);
|
|
4467
4659
|
} else if (isArrayBuffer(data)) {
|
|
4468
4660
|
buffer = data;
|
|
4469
4661
|
byteOffset = toOffset$1(offset, BYTES);
|
|
@@ -4487,7 +4679,7 @@ if (DESCRIPTORS$4) {
|
|
|
4487
4679
|
byteOffset: byteOffset,
|
|
4488
4680
|
byteLength: byteLength,
|
|
4489
4681
|
length: length,
|
|
4490
|
-
view: new DataView$
|
|
4682
|
+
view: new DataView$1(buffer)
|
|
4491
4683
|
});
|
|
4492
4684
|
while (index < length) addElement(that, index++);
|
|
4493
4685
|
});
|
|
@@ -4498,7 +4690,7 @@ if (DESCRIPTORS$4) {
|
|
|
4498
4690
|
TypedArrayConstructor = wrapper(function (dummy, data, typedArrayOffset, $length) {
|
|
4499
4691
|
anInstance$2(dummy, TypedArrayConstructorPrototype);
|
|
4500
4692
|
return inheritIfRequired$1(function () {
|
|
4501
|
-
if (!isObject(data)) return new NativeTypedArrayConstructor(toIndex
|
|
4693
|
+
if (!isObject(data)) return new NativeTypedArrayConstructor(toIndex(data));
|
|
4502
4694
|
if (isArrayBuffer(data)) return $length !== undefined
|
|
4503
4695
|
? new NativeTypedArrayConstructor(data, toOffset$1(typedArrayOffset, BYTES), $length)
|
|
4504
4696
|
: typedArrayOffset !== undefined
|
|
@@ -4532,7 +4724,7 @@ if (DESCRIPTORS$4) {
|
|
|
4532
4724
|
|
|
4533
4725
|
exported[CONSTRUCTOR_NAME] = TypedArrayConstructor;
|
|
4534
4726
|
|
|
4535
|
-
$$
|
|
4727
|
+
$$3({ global: true, constructor: true, forced: FORCED, sham: !NATIVE_ARRAY_BUFFER_VIEWS }, exported);
|
|
4536
4728
|
|
|
4537
4729
|
if (!(BYTES_PER_ELEMENT in TypedArrayConstructor)) {
|
|
4538
4730
|
createNonEnumerableProperty(TypedArrayConstructor, BYTES_PER_ELEMENT, BYTES);
|
|
@@ -4586,17 +4778,17 @@ exportTypedArrayMethod$9('at', function at(index) {
|
|
|
4586
4778
|
var ArrayBufferViewCore$8 = arrayBufferViewCore;
|
|
4587
4779
|
var $fill = arrayFill$1;
|
|
4588
4780
|
var toBigInt$1 = toBigInt$3;
|
|
4589
|
-
var classof
|
|
4781
|
+
var classof = classof$d;
|
|
4590
4782
|
var call$2 = functionCall;
|
|
4591
|
-
var uncurryThis$
|
|
4592
|
-
var fails$
|
|
4783
|
+
var uncurryThis$4 = functionUncurryThis;
|
|
4784
|
+
var fails$6 = fails$v;
|
|
4593
4785
|
|
|
4594
4786
|
var aTypedArray$8 = ArrayBufferViewCore$8.aTypedArray;
|
|
4595
4787
|
var exportTypedArrayMethod$8 = ArrayBufferViewCore$8.exportTypedArrayMethod;
|
|
4596
|
-
var slice
|
|
4788
|
+
var slice = uncurryThis$4(''.slice);
|
|
4597
4789
|
|
|
4598
4790
|
// V8 ~ Chrome < 59, Safari < 14.1, FF < 55, Edge <=18
|
|
4599
|
-
var CONVERSION_BUG = fails$
|
|
4791
|
+
var CONVERSION_BUG = fails$6(function () {
|
|
4600
4792
|
var count = 0;
|
|
4601
4793
|
// eslint-disable-next-line es/no-typed-arrays -- safe
|
|
4602
4794
|
new Int8Array(2).fill({ valueOf: function () { return count++; } });
|
|
@@ -4608,7 +4800,7 @@ var CONVERSION_BUG = fails$7(function () {
|
|
|
4608
4800
|
exportTypedArrayMethod$8('fill', function fill(value /* , start, end */) {
|
|
4609
4801
|
var length = arguments.length;
|
|
4610
4802
|
aTypedArray$8(this);
|
|
4611
|
-
var actualValue = slice
|
|
4803
|
+
var actualValue = slice(classof(this), 0, 3) === 'Big' ? toBigInt$1(value) : +value;
|
|
4612
4804
|
return call$2($fill, this, actualValue, length > 1 ? arguments[1] : undefined, length > 2 ? arguments[2] : undefined);
|
|
4613
4805
|
}, CONVERSION_BUG);
|
|
4614
4806
|
|
|
@@ -4671,22 +4863,22 @@ exportTypedArrayMethod$6('findLastIndex', function findLastIndex(predicate /* ,
|
|
|
4671
4863
|
return $findLastIndex(aTypedArray$6(this), predicate, arguments.length > 1 ? arguments[1] : undefined);
|
|
4672
4864
|
});
|
|
4673
4865
|
|
|
4674
|
-
var global$
|
|
4866
|
+
var global$5 = global$t;
|
|
4675
4867
|
var call$1 = functionCall;
|
|
4676
4868
|
var ArrayBufferViewCore$5 = arrayBufferViewCore;
|
|
4677
4869
|
var lengthOfArrayLike$2 = lengthOfArrayLike$b;
|
|
4678
4870
|
var toOffset = toOffset$2;
|
|
4679
4871
|
var toIndexedObject = toObject$8;
|
|
4680
|
-
var fails$
|
|
4872
|
+
var fails$5 = fails$v;
|
|
4681
4873
|
|
|
4682
|
-
var RangeError$1 = global$
|
|
4683
|
-
var Int8Array$2 = global$
|
|
4874
|
+
var RangeError$1 = global$5.RangeError;
|
|
4875
|
+
var Int8Array$2 = global$5.Int8Array;
|
|
4684
4876
|
var Int8ArrayPrototype = Int8Array$2 && Int8Array$2.prototype;
|
|
4685
4877
|
var $set = Int8ArrayPrototype && Int8ArrayPrototype.set;
|
|
4686
4878
|
var aTypedArray$5 = ArrayBufferViewCore$5.aTypedArray;
|
|
4687
4879
|
var exportTypedArrayMethod$5 = ArrayBufferViewCore$5.exportTypedArrayMethod;
|
|
4688
4880
|
|
|
4689
|
-
var WORKS_WITH_OBJECTS_AND_GENERIC_ON_TYPED_ARRAYS = !fails$
|
|
4881
|
+
var WORKS_WITH_OBJECTS_AND_GENERIC_ON_TYPED_ARRAYS = !fails$5(function () {
|
|
4690
4882
|
// eslint-disable-next-line es/no-typed-arrays -- required for testing
|
|
4691
4883
|
var array = new Uint8ClampedArray(2);
|
|
4692
4884
|
call$1($set, array, { length: 1, 0: 3 }, 1);
|
|
@@ -4694,7 +4886,7 @@ var WORKS_WITH_OBJECTS_AND_GENERIC_ON_TYPED_ARRAYS = !fails$6(function () {
|
|
|
4694
4886
|
});
|
|
4695
4887
|
|
|
4696
4888
|
// https://bugs.chromium.org/p/v8/issues/detail?id=11294 and other
|
|
4697
|
-
var TO_OBJECT_BUG = WORKS_WITH_OBJECTS_AND_GENERIC_ON_TYPED_ARRAYS && ArrayBufferViewCore$5.NATIVE_ARRAY_BUFFER_VIEWS && fails$
|
|
4889
|
+
var TO_OBJECT_BUG = WORKS_WITH_OBJECTS_AND_GENERIC_ON_TYPED_ARRAYS && ArrayBufferViewCore$5.NATIVE_ARRAY_BUFFER_VIEWS && fails$5(function () {
|
|
4698
4890
|
var array = new Int8Array$2(2);
|
|
4699
4891
|
array.set(1);
|
|
4700
4892
|
array.set('2', 1);
|
|
@@ -4731,32 +4923,32 @@ var webkit = userAgent.match(/AppleWebKit\/(\d+)\./);
|
|
|
4731
4923
|
|
|
4732
4924
|
var engineWebkitVersion = !!webkit && +webkit[1];
|
|
4733
4925
|
|
|
4734
|
-
var global$
|
|
4735
|
-
var uncurryThis$
|
|
4736
|
-
var fails$
|
|
4926
|
+
var global$4 = global$t;
|
|
4927
|
+
var uncurryThis$3 = functionUncurryThisClause;
|
|
4928
|
+
var fails$4 = fails$v;
|
|
4737
4929
|
var aCallable$1 = aCallable$6;
|
|
4738
4930
|
var internalSort = arraySort$1;
|
|
4739
4931
|
var ArrayBufferViewCore$4 = arrayBufferViewCore;
|
|
4740
4932
|
var FF = engineFfVersion;
|
|
4741
4933
|
var IE_OR_EDGE = engineIsIeOrEdge;
|
|
4742
|
-
var V8
|
|
4934
|
+
var V8 = engineV8Version;
|
|
4743
4935
|
var WEBKIT = engineWebkitVersion;
|
|
4744
4936
|
|
|
4745
4937
|
var aTypedArray$4 = ArrayBufferViewCore$4.aTypedArray;
|
|
4746
4938
|
var exportTypedArrayMethod$4 = ArrayBufferViewCore$4.exportTypedArrayMethod;
|
|
4747
|
-
var Uint16Array = global$
|
|
4748
|
-
var nativeSort = Uint16Array && uncurryThis$
|
|
4939
|
+
var Uint16Array = global$4.Uint16Array;
|
|
4940
|
+
var nativeSort = Uint16Array && uncurryThis$3(Uint16Array.prototype.sort);
|
|
4749
4941
|
|
|
4750
4942
|
// WebKit
|
|
4751
|
-
var ACCEPT_INCORRECT_ARGUMENTS = !!nativeSort && !(fails$
|
|
4943
|
+
var ACCEPT_INCORRECT_ARGUMENTS = !!nativeSort && !(fails$4(function () {
|
|
4752
4944
|
nativeSort(new Uint16Array(2), null);
|
|
4753
|
-
}) && fails$
|
|
4945
|
+
}) && fails$4(function () {
|
|
4754
4946
|
nativeSort(new Uint16Array(2), {});
|
|
4755
4947
|
}));
|
|
4756
4948
|
|
|
4757
|
-
var STABLE_SORT = !!nativeSort && !fails$
|
|
4949
|
+
var STABLE_SORT = !!nativeSort && !fails$4(function () {
|
|
4758
4950
|
// feature detection can be too slow, so check engines versions
|
|
4759
|
-
if (V8
|
|
4951
|
+
if (V8) return V8 < 74;
|
|
4760
4952
|
if (FF) return FF < 67;
|
|
4761
4953
|
if (IE_OR_EDGE) return true;
|
|
4762
4954
|
if (WEBKIT) return WEBKIT < 602;
|
|
@@ -4801,25 +4993,25 @@ exportTypedArrayMethod$4('sort', function sort(comparefn) {
|
|
|
4801
4993
|
return internalSort(aTypedArray$4(this), getSortCompare(comparefn));
|
|
4802
4994
|
}, !STABLE_SORT || ACCEPT_INCORRECT_ARGUMENTS);
|
|
4803
4995
|
|
|
4804
|
-
var global$
|
|
4996
|
+
var global$3 = global$t;
|
|
4805
4997
|
var apply = functionApply;
|
|
4806
4998
|
var ArrayBufferViewCore$3 = arrayBufferViewCore;
|
|
4807
|
-
var fails$
|
|
4999
|
+
var fails$3 = fails$v;
|
|
4808
5000
|
var arraySlice = arraySlice$3;
|
|
4809
5001
|
|
|
4810
|
-
var Int8Array$1 = global$
|
|
5002
|
+
var Int8Array$1 = global$3.Int8Array;
|
|
4811
5003
|
var aTypedArray$3 = ArrayBufferViewCore$3.aTypedArray;
|
|
4812
5004
|
var exportTypedArrayMethod$3 = ArrayBufferViewCore$3.exportTypedArrayMethod;
|
|
4813
5005
|
var $toLocaleString = [].toLocaleString;
|
|
4814
5006
|
|
|
4815
5007
|
// iOS Safari 6.x fails here
|
|
4816
|
-
var TO_LOCALE_STRING_BUG = !!Int8Array$1 && fails$
|
|
5008
|
+
var TO_LOCALE_STRING_BUG = !!Int8Array$1 && fails$3(function () {
|
|
4817
5009
|
$toLocaleString.call(new Int8Array$1(1));
|
|
4818
5010
|
});
|
|
4819
5011
|
|
|
4820
|
-
var FORCED = fails$
|
|
5012
|
+
var FORCED = fails$3(function () {
|
|
4821
5013
|
return [1, 2].toLocaleString() !== new Int8Array$1([1, 2]).toLocaleString();
|
|
4822
|
-
}) || !fails$
|
|
5014
|
+
}) || !fails$3(function () {
|
|
4823
5015
|
Int8Array$1.prototype.toLocaleString.call([1, 2]);
|
|
4824
5016
|
});
|
|
4825
5017
|
|
|
@@ -4859,14 +5051,14 @@ exportTypedArrayMethod$2('toReversed', function toReversed() {
|
|
|
4859
5051
|
});
|
|
4860
5052
|
|
|
4861
5053
|
var ArrayBufferViewCore$1 = arrayBufferViewCore;
|
|
4862
|
-
var uncurryThis$
|
|
5054
|
+
var uncurryThis$2 = functionUncurryThis;
|
|
4863
5055
|
var aCallable = aCallable$6;
|
|
4864
5056
|
var arrayFromConstructorAndList = arrayFromConstructorAndList$2;
|
|
4865
5057
|
|
|
4866
5058
|
var aTypedArray$1 = ArrayBufferViewCore$1.aTypedArray;
|
|
4867
5059
|
var getTypedArrayConstructor$1 = ArrayBufferViewCore$1.getTypedArrayConstructor;
|
|
4868
5060
|
var exportTypedArrayMethod$1 = ArrayBufferViewCore$1.exportTypedArrayMethod;
|
|
4869
|
-
var sort = uncurryThis$
|
|
5061
|
+
var sort = uncurryThis$2(ArrayBufferViewCore$1.TypedArrayPrototype.sort);
|
|
4870
5062
|
|
|
4871
5063
|
// `%TypedArray%.prototype.toSorted` method
|
|
4872
5064
|
// https://tc39.es/ecma262/#sec-%typedarray%.prototype.tosorted
|
|
@@ -4925,196 +5117,6 @@ exportTypedArrayMethod('with', { 'with': function (index, value) {
|
|
|
4925
5117
|
return arrayWith(O, getTypedArrayConstructor(O), relativeIndex, actualValue);
|
|
4926
5118
|
} }['with'], !PROPER_ORDER);
|
|
4927
5119
|
|
|
4928
|
-
var uncurryThisAccessor$1 = functionUncurryThisAccessor;
|
|
4929
|
-
var classof$1 = classofRaw$2;
|
|
4930
|
-
|
|
4931
|
-
var $TypeError = TypeError;
|
|
4932
|
-
|
|
4933
|
-
// Includes
|
|
4934
|
-
// - Perform ? RequireInternalSlot(O, [[ArrayBufferData]]).
|
|
4935
|
-
// - If IsSharedArrayBuffer(O) is true, throw a TypeError exception.
|
|
4936
|
-
var arrayBufferByteLength$2 = uncurryThisAccessor$1(ArrayBuffer.prototype, 'byteLength', 'get') || function (O) {
|
|
4937
|
-
if (classof$1(O) !== 'ArrayBuffer') throw new $TypeError('ArrayBuffer expected');
|
|
4938
|
-
return O.byteLength;
|
|
4939
|
-
};
|
|
4940
|
-
|
|
4941
|
-
var uncurryThis$3 = functionUncurryThis;
|
|
4942
|
-
var arrayBufferByteLength$1 = arrayBufferByteLength$2;
|
|
4943
|
-
|
|
4944
|
-
var slice$1 = uncurryThis$3(ArrayBuffer.prototype.slice);
|
|
4945
|
-
|
|
4946
|
-
var arrayBufferIsDetached = function (O) {
|
|
4947
|
-
if (arrayBufferByteLength$1(O) !== 0) return false;
|
|
4948
|
-
try {
|
|
4949
|
-
slice$1(O, 0, 0);
|
|
4950
|
-
return false;
|
|
4951
|
-
} catch (error) {
|
|
4952
|
-
return true;
|
|
4953
|
-
}
|
|
4954
|
-
};
|
|
4955
|
-
|
|
4956
|
-
var DESCRIPTORS$3 = descriptors;
|
|
4957
|
-
var defineBuiltInAccessor$1 = defineBuiltInAccessor$8;
|
|
4958
|
-
var isDetached$1 = arrayBufferIsDetached;
|
|
4959
|
-
|
|
4960
|
-
var ArrayBufferPrototype$1 = ArrayBuffer.prototype;
|
|
4961
|
-
|
|
4962
|
-
if (DESCRIPTORS$3 && !('detached' in ArrayBufferPrototype$1)) {
|
|
4963
|
-
defineBuiltInAccessor$1(ArrayBufferPrototype$1, 'detached', {
|
|
4964
|
-
configurable: true,
|
|
4965
|
-
get: function detached() {
|
|
4966
|
-
return isDetached$1(this);
|
|
4967
|
-
}
|
|
4968
|
-
});
|
|
4969
|
-
}
|
|
4970
|
-
|
|
4971
|
-
var global$6 = global$u;
|
|
4972
|
-
var classof = classofRaw$2;
|
|
4973
|
-
|
|
4974
|
-
var engineIsNode = classof(global$6.process) === 'process';
|
|
4975
|
-
|
|
4976
|
-
var IS_NODE$2 = engineIsNode;
|
|
4977
|
-
|
|
4978
|
-
var tryNodeRequire$2 = function (name) {
|
|
4979
|
-
try {
|
|
4980
|
-
// eslint-disable-next-line no-new-func -- safe
|
|
4981
|
-
if (IS_NODE$2) return Function('return require("' + name + '")')();
|
|
4982
|
-
} catch (error) { /* empty */ }
|
|
4983
|
-
};
|
|
4984
|
-
|
|
4985
|
-
/* global Deno -- Deno case */
|
|
4986
|
-
var engineIsDeno = typeof Deno == 'object' && Deno && typeof Deno.version == 'object';
|
|
4987
|
-
|
|
4988
|
-
var IS_DENO$1 = engineIsDeno;
|
|
4989
|
-
var IS_NODE$1 = engineIsNode;
|
|
4990
|
-
|
|
4991
|
-
var engineIsBrowser = !IS_DENO$1 && !IS_NODE$1
|
|
4992
|
-
&& typeof window == 'object'
|
|
4993
|
-
&& typeof document == 'object';
|
|
4994
|
-
|
|
4995
|
-
var global$5 = global$u;
|
|
4996
|
-
var fails$3 = fails$v;
|
|
4997
|
-
var V8 = engineV8Version;
|
|
4998
|
-
var IS_BROWSER = engineIsBrowser;
|
|
4999
|
-
var IS_DENO = engineIsDeno;
|
|
5000
|
-
var IS_NODE = engineIsNode;
|
|
5001
|
-
|
|
5002
|
-
var structuredClone$2 = global$5.structuredClone;
|
|
5003
|
-
|
|
5004
|
-
var structuredCloneProperTransfer = !!structuredClone$2 && !fails$3(function () {
|
|
5005
|
-
// prevent V8 ArrayBufferDetaching protector cell invalidation and performance degradation
|
|
5006
|
-
// https://github.com/zloirock/core-js/issues/679
|
|
5007
|
-
if ((IS_DENO && V8 > 92) || (IS_NODE && V8 > 94) || (IS_BROWSER && V8 > 97)) return false;
|
|
5008
|
-
var buffer = new ArrayBuffer(8);
|
|
5009
|
-
var clone = structuredClone$2(buffer, { transfer: [buffer] });
|
|
5010
|
-
return buffer.byteLength !== 0 || clone.byteLength !== 8;
|
|
5011
|
-
});
|
|
5012
|
-
|
|
5013
|
-
var global$4 = global$u;
|
|
5014
|
-
var tryNodeRequire$1 = tryNodeRequire$2;
|
|
5015
|
-
var PROPER_STRUCTURED_CLONE_TRANSFER$1 = structuredCloneProperTransfer;
|
|
5016
|
-
|
|
5017
|
-
var structuredClone$1 = global$4.structuredClone;
|
|
5018
|
-
var $ArrayBuffer = global$4.ArrayBuffer;
|
|
5019
|
-
var $MessageChannel = global$4.MessageChannel;
|
|
5020
|
-
var detach = false;
|
|
5021
|
-
var WorkerThreads, channel, buffer, $detach;
|
|
5022
|
-
|
|
5023
|
-
if (PROPER_STRUCTURED_CLONE_TRANSFER$1) {
|
|
5024
|
-
detach = function (transferable) {
|
|
5025
|
-
structuredClone$1(transferable, { transfer: [transferable] });
|
|
5026
|
-
};
|
|
5027
|
-
} else if ($ArrayBuffer) try {
|
|
5028
|
-
if (!$MessageChannel) {
|
|
5029
|
-
WorkerThreads = tryNodeRequire$1('worker_threads');
|
|
5030
|
-
if (WorkerThreads) $MessageChannel = WorkerThreads.MessageChannel;
|
|
5031
|
-
}
|
|
5032
|
-
|
|
5033
|
-
if ($MessageChannel) {
|
|
5034
|
-
channel = new $MessageChannel();
|
|
5035
|
-
buffer = new $ArrayBuffer(2);
|
|
5036
|
-
|
|
5037
|
-
$detach = function (transferable) {
|
|
5038
|
-
channel.port1.postMessage(null, [transferable]);
|
|
5039
|
-
};
|
|
5040
|
-
|
|
5041
|
-
if (buffer.byteLength === 2) {
|
|
5042
|
-
$detach(buffer);
|
|
5043
|
-
if (buffer.byteLength === 0) detach = $detach;
|
|
5044
|
-
}
|
|
5045
|
-
}
|
|
5046
|
-
} catch (error) { /* empty */ }
|
|
5047
|
-
|
|
5048
|
-
var detachTransferable$1 = detach;
|
|
5049
|
-
|
|
5050
|
-
var global$3 = global$u;
|
|
5051
|
-
var uncurryThis$2 = functionUncurryThis;
|
|
5052
|
-
var uncurryThisAccessor = functionUncurryThisAccessor;
|
|
5053
|
-
var toIndex = toIndex$3;
|
|
5054
|
-
var isDetached = arrayBufferIsDetached;
|
|
5055
|
-
var arrayBufferByteLength = arrayBufferByteLength$2;
|
|
5056
|
-
var detachTransferable = detachTransferable$1;
|
|
5057
|
-
var PROPER_STRUCTURED_CLONE_TRANSFER = structuredCloneProperTransfer;
|
|
5058
|
-
|
|
5059
|
-
var structuredClone = global$3.structuredClone;
|
|
5060
|
-
var ArrayBuffer$1 = global$3.ArrayBuffer;
|
|
5061
|
-
var DataView$1 = global$3.DataView;
|
|
5062
|
-
var TypeError$1 = global$3.TypeError;
|
|
5063
|
-
var min = Math.min;
|
|
5064
|
-
var ArrayBufferPrototype = ArrayBuffer$1.prototype;
|
|
5065
|
-
var DataViewPrototype = DataView$1.prototype;
|
|
5066
|
-
var slice = uncurryThis$2(ArrayBufferPrototype.slice);
|
|
5067
|
-
var isResizable = uncurryThisAccessor(ArrayBufferPrototype, 'resizable', 'get');
|
|
5068
|
-
var maxByteLength = uncurryThisAccessor(ArrayBufferPrototype, 'maxByteLength', 'get');
|
|
5069
|
-
var getInt8 = uncurryThis$2(DataViewPrototype.getInt8);
|
|
5070
|
-
var setInt8 = uncurryThis$2(DataViewPrototype.setInt8);
|
|
5071
|
-
|
|
5072
|
-
var arrayBufferTransfer = (PROPER_STRUCTURED_CLONE_TRANSFER || detachTransferable) && function (arrayBuffer, newLength, preserveResizability) {
|
|
5073
|
-
var byteLength = arrayBufferByteLength(arrayBuffer);
|
|
5074
|
-
var newByteLength = newLength === undefined ? byteLength : toIndex(newLength);
|
|
5075
|
-
var fixedLength = !isResizable || !isResizable(arrayBuffer);
|
|
5076
|
-
var newBuffer;
|
|
5077
|
-
if (isDetached(arrayBuffer)) throw new TypeError$1('ArrayBuffer is detached');
|
|
5078
|
-
if (PROPER_STRUCTURED_CLONE_TRANSFER) {
|
|
5079
|
-
arrayBuffer = structuredClone(arrayBuffer, { transfer: [arrayBuffer] });
|
|
5080
|
-
if (byteLength === newByteLength && (preserveResizability || fixedLength)) return arrayBuffer;
|
|
5081
|
-
}
|
|
5082
|
-
if (byteLength >= newByteLength && (!preserveResizability || fixedLength)) {
|
|
5083
|
-
newBuffer = slice(arrayBuffer, 0, newByteLength);
|
|
5084
|
-
} else {
|
|
5085
|
-
var options = preserveResizability && !fixedLength && maxByteLength ? { maxByteLength: maxByteLength(arrayBuffer) } : undefined;
|
|
5086
|
-
newBuffer = new ArrayBuffer$1(newByteLength, options);
|
|
5087
|
-
var a = new DataView$1(arrayBuffer);
|
|
5088
|
-
var b = new DataView$1(newBuffer);
|
|
5089
|
-
var copyLength = min(newByteLength, byteLength);
|
|
5090
|
-
for (var i = 0; i < copyLength; i++) setInt8(b, i, getInt8(a, i));
|
|
5091
|
-
}
|
|
5092
|
-
if (!PROPER_STRUCTURED_CLONE_TRANSFER) detachTransferable(arrayBuffer);
|
|
5093
|
-
return newBuffer;
|
|
5094
|
-
};
|
|
5095
|
-
|
|
5096
|
-
var $$4 = _export;
|
|
5097
|
-
var $transfer$1 = arrayBufferTransfer;
|
|
5098
|
-
|
|
5099
|
-
// `ArrayBuffer.prototype.transfer` method
|
|
5100
|
-
// https://tc39.es/proposal-arraybuffer-transfer/#sec-arraybuffer.prototype.transfer
|
|
5101
|
-
if ($transfer$1) $$4({ target: 'ArrayBuffer', proto: true }, {
|
|
5102
|
-
transfer: function transfer() {
|
|
5103
|
-
return $transfer$1(this, arguments.length ? arguments[0] : undefined, true);
|
|
5104
|
-
}
|
|
5105
|
-
});
|
|
5106
|
-
|
|
5107
|
-
var $$3 = _export;
|
|
5108
|
-
var $transfer = arrayBufferTransfer;
|
|
5109
|
-
|
|
5110
|
-
// `ArrayBuffer.prototype.transferToFixedLength` method
|
|
5111
|
-
// https://tc39.es/proposal-arraybuffer-transfer/#sec-arraybuffer.prototype.transfertofixedlength
|
|
5112
|
-
if ($transfer) $$3({ target: 'ArrayBuffer', proto: true }, {
|
|
5113
|
-
transferToFixedLength: function transferToFixedLength() {
|
|
5114
|
-
return $transfer(this, arguments.length ? arguments[0] : undefined, false);
|
|
5115
|
-
}
|
|
5116
|
-
});
|
|
5117
|
-
|
|
5118
5120
|
var commonAlphabet = 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789';
|
|
5119
5121
|
var base64Alphabet = commonAlphabet + '+/';
|
|
5120
5122
|
var base64UrlAlphabet = commonAlphabet + '-_';
|
|
@@ -5135,7 +5137,7 @@ var base64Map = {
|
|
|
5135
5137
|
};
|
|
5136
5138
|
|
|
5137
5139
|
var $$2 = _export;
|
|
5138
|
-
var global$2 = global$
|
|
5140
|
+
var global$2 = global$t;
|
|
5139
5141
|
var getBuiltIn$3 = getBuiltIn$9;
|
|
5140
5142
|
var uncurryThis$1 = functionUncurryThis;
|
|
5141
5143
|
var call = functionCall;
|
|
@@ -5193,7 +5195,7 @@ var normalizeStringArgument$3 = function (argument, $default) {
|
|
|
5193
5195
|
|
|
5194
5196
|
var DESCRIPTORS$2 = descriptors;
|
|
5195
5197
|
var fails$1 = fails$v;
|
|
5196
|
-
var anObject$1 = anObject$
|
|
5198
|
+
var anObject$1 = anObject$h;
|
|
5197
5199
|
var normalizeStringArgument$2 = normalizeStringArgument$3;
|
|
5198
5200
|
|
|
5199
5201
|
var nativeErrorToString = Error.prototype.toString;
|
|
@@ -5275,7 +5277,7 @@ var defineBuiltIn = defineBuiltIn$b;
|
|
|
5275
5277
|
var defineBuiltInAccessor = defineBuiltInAccessor$8;
|
|
5276
5278
|
var hasOwn$1 = hasOwnProperty_1;
|
|
5277
5279
|
var anInstance$1 = anInstance$5;
|
|
5278
|
-
var anObject = anObject$
|
|
5280
|
+
var anObject = anObject$h;
|
|
5279
5281
|
var errorToString = errorToString$1;
|
|
5280
5282
|
var normalizeStringArgument$1 = normalizeStringArgument$3;
|
|
5281
5283
|
var DOMExceptionConstants$1 = domExceptionConstants;
|
|
@@ -5409,7 +5411,7 @@ for (var key$1 in DOMExceptionConstants$1) if (hasOwn$1(DOMExceptionConstants$1,
|
|
|
5409
5411
|
}
|
|
5410
5412
|
|
|
5411
5413
|
var $ = _export;
|
|
5412
|
-
var global$1 = global$
|
|
5414
|
+
var global$1 = global$t;
|
|
5413
5415
|
var getBuiltIn$1 = getBuiltIn$9;
|
|
5414
5416
|
var createPropertyDescriptor = createPropertyDescriptor$8;
|
|
5415
5417
|
var defineProperty = objectDefineProperty.f;
|