@dereekb/firebase 10.0.14 → 10.0.15
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.cjs.js +198 -258
- package/index.esm.js +208 -268
- package/package.json +1 -1
- package/src/lib/common/storage/storage.d.ts +5 -0
- package/src/lib/common/storage/types.d.ts +6 -2
- package/test/CHANGELOG.md +4 -0
- package/test/package.json +1 -1
- package/test/src/lib/common/storage/test.driver.accessor.js +8 -2
- package/test/src/lib/common/storage/test.driver.accessor.js.map +1 -1
package/index.esm.js
CHANGED
|
@@ -56,10 +56,10 @@ var functionBindNative = !fails$i(function () {
|
|
|
56
56
|
|
|
57
57
|
var NATIVE_BIND$3 = functionBindNative;
|
|
58
58
|
|
|
59
|
-
var call$
|
|
59
|
+
var call$j = Function.prototype.call;
|
|
60
60
|
|
|
61
|
-
var functionCall = NATIVE_BIND$3 ? call$
|
|
62
|
-
return call$
|
|
61
|
+
var functionCall = NATIVE_BIND$3 ? call$j.bind(call$j) : function () {
|
|
62
|
+
return call$j.apply(call$j, arguments);
|
|
63
63
|
};
|
|
64
64
|
|
|
65
65
|
var objectPropertyIsEnumerable = {};
|
|
@@ -90,30 +90,30 @@ var createPropertyDescriptor$3 = function (bitmap, value) {
|
|
|
90
90
|
var NATIVE_BIND$2 = functionBindNative;
|
|
91
91
|
|
|
92
92
|
var FunctionPrototype$2 = Function.prototype;
|
|
93
|
-
var call$
|
|
94
|
-
var uncurryThisWithBind = NATIVE_BIND$2 && FunctionPrototype$2.bind.bind(call$
|
|
93
|
+
var call$i = FunctionPrototype$2.call;
|
|
94
|
+
var uncurryThisWithBind = NATIVE_BIND$2 && FunctionPrototype$2.bind.bind(call$i, call$i);
|
|
95
95
|
|
|
96
96
|
var functionUncurryThis = NATIVE_BIND$2 ? uncurryThisWithBind : function (fn) {
|
|
97
97
|
return function () {
|
|
98
|
-
return call$
|
|
98
|
+
return call$i.apply(fn, arguments);
|
|
99
99
|
};
|
|
100
100
|
};
|
|
101
101
|
|
|
102
|
-
var uncurryThis$
|
|
102
|
+
var uncurryThis$k = functionUncurryThis;
|
|
103
103
|
|
|
104
|
-
var toString$6 = uncurryThis$
|
|
105
|
-
var stringSlice$6 = uncurryThis$
|
|
104
|
+
var toString$6 = uncurryThis$k({}.toString);
|
|
105
|
+
var stringSlice$6 = uncurryThis$k(''.slice);
|
|
106
106
|
|
|
107
107
|
var classofRaw$2 = function (it) {
|
|
108
108
|
return stringSlice$6(toString$6(it), 8, -1);
|
|
109
109
|
};
|
|
110
110
|
|
|
111
|
-
var uncurryThis$
|
|
111
|
+
var uncurryThis$j = functionUncurryThis;
|
|
112
112
|
var fails$h = fails$k;
|
|
113
|
-
var classof$
|
|
113
|
+
var classof$7 = classofRaw$2;
|
|
114
114
|
|
|
115
115
|
var $Object$4 = Object;
|
|
116
|
-
var split = uncurryThis$
|
|
116
|
+
var split = uncurryThis$j(''.split);
|
|
117
117
|
|
|
118
118
|
// fallback for non-array-like ES3 and non-enumerable old V8 strings
|
|
119
119
|
var indexedObject = fails$h(function () {
|
|
@@ -121,7 +121,7 @@ var indexedObject = fails$h(function () {
|
|
|
121
121
|
// eslint-disable-next-line no-prototype-builtins -- safe
|
|
122
122
|
return !$Object$4('z').propertyIsEnumerable(0);
|
|
123
123
|
}) ? function (it) {
|
|
124
|
-
return classof$
|
|
124
|
+
return classof$7(it) === 'String' ? split(it, '') : $Object$4(it);
|
|
125
125
|
} : $Object$4;
|
|
126
126
|
|
|
127
127
|
// we can't use just `it == null` since of `document.all` special case
|
|
@@ -163,7 +163,7 @@ var isCallable$l = typeof documentAll == 'undefined' && documentAll !== undefine
|
|
|
163
163
|
|
|
164
164
|
var isCallable$k = isCallable$l;
|
|
165
165
|
|
|
166
|
-
var isObject$
|
|
166
|
+
var isObject$a = function (it) {
|
|
167
167
|
return typeof it == 'object' ? it !== null : isCallable$k(it);
|
|
168
168
|
};
|
|
169
169
|
|
|
@@ -178,9 +178,9 @@ var getBuiltIn$7 = function (namespace, method) {
|
|
|
178
178
|
return arguments.length < 2 ? aFunction(global$l[namespace]) : global$l[namespace] && global$l[namespace][method];
|
|
179
179
|
};
|
|
180
180
|
|
|
181
|
-
var uncurryThis$
|
|
181
|
+
var uncurryThis$i = functionUncurryThis;
|
|
182
182
|
|
|
183
|
-
var objectIsPrototypeOf = uncurryThis$
|
|
183
|
+
var objectIsPrototypeOf = uncurryThis$i({}.isPrototypeOf);
|
|
184
184
|
|
|
185
185
|
var engineUserAgent = typeof navigator != 'undefined' && String(navigator.userAgent) || '';
|
|
186
186
|
|
|
@@ -283,9 +283,9 @@ var getMethod$5 = function (V, P) {
|
|
|
283
283
|
return isNullOrUndefined$4(func) ? undefined : aCallable$7(func);
|
|
284
284
|
};
|
|
285
285
|
|
|
286
|
-
var call$
|
|
286
|
+
var call$h = functionCall;
|
|
287
287
|
var isCallable$g = isCallable$l;
|
|
288
|
-
var isObject$
|
|
288
|
+
var isObject$9 = isObject$a;
|
|
289
289
|
|
|
290
290
|
var $TypeError$c = TypeError;
|
|
291
291
|
|
|
@@ -293,9 +293,9 @@ var $TypeError$c = TypeError;
|
|
|
293
293
|
// https://tc39.es/ecma262/#sec-ordinarytoprimitive
|
|
294
294
|
var ordinaryToPrimitive$1 = function (input, pref) {
|
|
295
295
|
var fn, val;
|
|
296
|
-
if (pref === 'string' && isCallable$g(fn = input.toString) && !isObject$
|
|
297
|
-
if (isCallable$g(fn = input.valueOf) && !isObject$
|
|
298
|
-
if (pref !== 'string' && isCallable$g(fn = input.toString) && !isObject$
|
|
296
|
+
if (pref === 'string' && isCallable$g(fn = input.toString) && !isObject$9(val = call$h(fn, input))) return val;
|
|
297
|
+
if (isCallable$g(fn = input.valueOf) && !isObject$9(val = call$h(fn, input))) return val;
|
|
298
|
+
if (pref !== 'string' && isCallable$g(fn = input.toString) && !isObject$9(val = call$h(fn, input))) return val;
|
|
299
299
|
throw new $TypeError$c("Can't convert object to primitive value");
|
|
300
300
|
};
|
|
301
301
|
|
|
@@ -327,10 +327,10 @@ var store$2 = sharedStore;
|
|
|
327
327
|
(shared$4.exports = function (key, value) {
|
|
328
328
|
return store$2[key] || (store$2[key] = value !== undefined ? value : {});
|
|
329
329
|
})('versions', []).push({
|
|
330
|
-
version: '3.35.
|
|
330
|
+
version: '3.35.1',
|
|
331
331
|
mode: 'global',
|
|
332
|
-
copyright: '© 2014-
|
|
333
|
-
license: 'https://github.com/zloirock/core-js/blob/v3.35.
|
|
332
|
+
copyright: '© 2014-2024 Denis Pushkarev (zloirock.ru)',
|
|
333
|
+
license: 'https://github.com/zloirock/core-js/blob/v3.35.1/LICENSE',
|
|
334
334
|
source: 'https://github.com/zloirock/core-js'
|
|
335
335
|
});
|
|
336
336
|
|
|
@@ -344,10 +344,10 @@ var toObject$5 = function (argument) {
|
|
|
344
344
|
return $Object$2(requireObjectCoercible$3(argument));
|
|
345
345
|
};
|
|
346
346
|
|
|
347
|
-
var uncurryThis$
|
|
347
|
+
var uncurryThis$h = functionUncurryThis;
|
|
348
348
|
var toObject$4 = toObject$5;
|
|
349
349
|
|
|
350
|
-
var hasOwnProperty = uncurryThis$
|
|
350
|
+
var hasOwnProperty = uncurryThis$h({}.hasOwnProperty);
|
|
351
351
|
|
|
352
352
|
// `HasOwnProperty` abstract operation
|
|
353
353
|
// https://tc39.es/ecma262/#sec-hasownproperty
|
|
@@ -356,11 +356,11 @@ var hasOwnProperty_1 = Object.hasOwn || function hasOwn(it, key) {
|
|
|
356
356
|
return hasOwnProperty(toObject$4(it), key);
|
|
357
357
|
};
|
|
358
358
|
|
|
359
|
-
var uncurryThis$
|
|
359
|
+
var uncurryThis$g = functionUncurryThis;
|
|
360
360
|
|
|
361
361
|
var id = 0;
|
|
362
362
|
var postfix = Math.random();
|
|
363
|
-
var toString$5 = uncurryThis$
|
|
363
|
+
var toString$5 = uncurryThis$g(1.0.toString);
|
|
364
364
|
|
|
365
365
|
var uid$2 = function (key) {
|
|
366
366
|
return 'Symbol(' + (key === undefined ? '' : key) + ')_' + toString$5(++id + postfix, 36);
|
|
@@ -377,7 +377,7 @@ var Symbol$1 = global$g.Symbol;
|
|
|
377
377
|
var WellKnownSymbolsStore = shared$3('wks');
|
|
378
378
|
var createWellKnownSymbol = USE_SYMBOL_AS_UID ? Symbol$1['for'] || Symbol$1 : Symbol$1 && Symbol$1.withoutSetter || uid$1;
|
|
379
379
|
|
|
380
|
-
var wellKnownSymbol$
|
|
380
|
+
var wellKnownSymbol$h = function (name) {
|
|
381
381
|
if (!hasOwn$a(WellKnownSymbolsStore, name)) {
|
|
382
382
|
WellKnownSymbolsStore[name] = NATIVE_SYMBOL && hasOwn$a(Symbol$1, name)
|
|
383
383
|
? Symbol$1[name]
|
|
@@ -385,26 +385,26 @@ var wellKnownSymbol$i = function (name) {
|
|
|
385
385
|
} return WellKnownSymbolsStore[name];
|
|
386
386
|
};
|
|
387
387
|
|
|
388
|
-
var call$
|
|
389
|
-
var isObject$
|
|
388
|
+
var call$g = functionCall;
|
|
389
|
+
var isObject$8 = isObject$a;
|
|
390
390
|
var isSymbol$1 = isSymbol$2;
|
|
391
391
|
var getMethod$4 = getMethod$5;
|
|
392
392
|
var ordinaryToPrimitive = ordinaryToPrimitive$1;
|
|
393
|
-
var wellKnownSymbol$
|
|
393
|
+
var wellKnownSymbol$g = wellKnownSymbol$h;
|
|
394
394
|
|
|
395
395
|
var $TypeError$b = TypeError;
|
|
396
|
-
var TO_PRIMITIVE = wellKnownSymbol$
|
|
396
|
+
var TO_PRIMITIVE = wellKnownSymbol$g('toPrimitive');
|
|
397
397
|
|
|
398
398
|
// `ToPrimitive` abstract operation
|
|
399
399
|
// https://tc39.es/ecma262/#sec-toprimitive
|
|
400
400
|
var toPrimitive$1 = function (input, pref) {
|
|
401
|
-
if (!isObject$
|
|
401
|
+
if (!isObject$8(input) || isSymbol$1(input)) return input;
|
|
402
402
|
var exoticToPrim = getMethod$4(input, TO_PRIMITIVE);
|
|
403
403
|
var result;
|
|
404
404
|
if (exoticToPrim) {
|
|
405
405
|
if (pref === undefined) pref = 'default';
|
|
406
|
-
result = call$
|
|
407
|
-
if (!isObject$
|
|
406
|
+
result = call$g(exoticToPrim, input, pref);
|
|
407
|
+
if (!isObject$8(result) || isSymbol$1(result)) return result;
|
|
408
408
|
throw new $TypeError$b("Can't convert object to primitive value");
|
|
409
409
|
}
|
|
410
410
|
if (pref === undefined) pref = 'number';
|
|
@@ -422,11 +422,11 @@ var toPropertyKey$2 = function (argument) {
|
|
|
422
422
|
};
|
|
423
423
|
|
|
424
424
|
var global$f = global$m;
|
|
425
|
-
var isObject$
|
|
425
|
+
var isObject$7 = isObject$a;
|
|
426
426
|
|
|
427
427
|
var document$3 = global$f.document;
|
|
428
428
|
// typeof document.createElement is 'object' in old IE
|
|
429
|
-
var EXISTS$1 = isObject$
|
|
429
|
+
var EXISTS$1 = isObject$7(document$3) && isObject$7(document$3.createElement);
|
|
430
430
|
|
|
431
431
|
var documentCreateElement$2 = function (it) {
|
|
432
432
|
return EXISTS$1 ? document$3.createElement(it) : {};
|
|
@@ -445,7 +445,7 @@ var ie8DomDefine = !DESCRIPTORS$b && !fails$f(function () {
|
|
|
445
445
|
});
|
|
446
446
|
|
|
447
447
|
var DESCRIPTORS$a = descriptors;
|
|
448
|
-
var call$
|
|
448
|
+
var call$f = functionCall;
|
|
449
449
|
var propertyIsEnumerableModule$1 = objectPropertyIsEnumerable;
|
|
450
450
|
var createPropertyDescriptor$2 = createPropertyDescriptor$3;
|
|
451
451
|
var toIndexedObject$4 = toIndexedObject$5;
|
|
@@ -464,7 +464,7 @@ objectGetOwnPropertyDescriptor.f = DESCRIPTORS$a ? $getOwnPropertyDescriptor$1 :
|
|
|
464
464
|
if (IE8_DOM_DEFINE$1) try {
|
|
465
465
|
return $getOwnPropertyDescriptor$1(O, P);
|
|
466
466
|
} catch (error) { /* empty */ }
|
|
467
|
-
if (hasOwn$9(O, P)) return createPropertyDescriptor$2(!call$
|
|
467
|
+
if (hasOwn$9(O, P)) return createPropertyDescriptor$2(!call$f(propertyIsEnumerableModule$1.f, O, P), O[P]);
|
|
468
468
|
};
|
|
469
469
|
|
|
470
470
|
var objectDefineProperty = {};
|
|
@@ -482,14 +482,14 @@ var v8PrototypeDefineBug = DESCRIPTORS$9 && fails$e(function () {
|
|
|
482
482
|
}).prototype !== 42;
|
|
483
483
|
});
|
|
484
484
|
|
|
485
|
-
var isObject$
|
|
485
|
+
var isObject$6 = isObject$a;
|
|
486
486
|
|
|
487
487
|
var $String$3 = String;
|
|
488
488
|
var $TypeError$a = TypeError;
|
|
489
489
|
|
|
490
490
|
// `Assert: Type(argument) is Object`
|
|
491
491
|
var anObject$f = function (argument) {
|
|
492
|
-
if (isObject$
|
|
492
|
+
if (isObject$6(argument)) return argument;
|
|
493
493
|
throw new $TypeError$a($String$3(argument) + ' is not an object');
|
|
494
494
|
};
|
|
495
495
|
|
|
@@ -568,11 +568,11 @@ var functionName = {
|
|
|
568
568
|
CONFIGURABLE: CONFIGURABLE
|
|
569
569
|
};
|
|
570
570
|
|
|
571
|
-
var uncurryThis$
|
|
571
|
+
var uncurryThis$f = functionUncurryThis;
|
|
572
572
|
var isCallable$f = isCallable$l;
|
|
573
573
|
var store$1 = sharedStore;
|
|
574
574
|
|
|
575
|
-
var functionToString = uncurryThis$
|
|
575
|
+
var functionToString = uncurryThis$f(Function.toString);
|
|
576
576
|
|
|
577
577
|
// this helper broken in `core-js@3.4.1-3.4.4`, so we can't use `shared` helper
|
|
578
578
|
if (!isCallable$f(store$1.inspectSource)) {
|
|
@@ -603,7 +603,7 @@ var hiddenKeys$4 = {};
|
|
|
603
603
|
|
|
604
604
|
var NATIVE_WEAK_MAP = weakMapBasicDetection;
|
|
605
605
|
var global$d = global$m;
|
|
606
|
-
var isObject$
|
|
606
|
+
var isObject$5 = isObject$a;
|
|
607
607
|
var createNonEnumerableProperty$4 = createNonEnumerableProperty$5;
|
|
608
608
|
var hasOwn$7 = hasOwnProperty_1;
|
|
609
609
|
var shared$1 = sharedStore;
|
|
@@ -622,7 +622,7 @@ var enforce = function (it) {
|
|
|
622
622
|
var getterFor = function (TYPE) {
|
|
623
623
|
return function (it) {
|
|
624
624
|
var state;
|
|
625
|
-
if (!isObject$
|
|
625
|
+
if (!isObject$5(it) || (state = get(it)).type !== TYPE) {
|
|
626
626
|
throw new TypeError$2('Incompatible receiver, ' + TYPE + ' required');
|
|
627
627
|
} return state;
|
|
628
628
|
};
|
|
@@ -672,7 +672,7 @@ var internalState = {
|
|
|
672
672
|
getterFor: getterFor
|
|
673
673
|
};
|
|
674
674
|
|
|
675
|
-
var uncurryThis$
|
|
675
|
+
var uncurryThis$e = functionUncurryThis;
|
|
676
676
|
var fails$d = fails$k;
|
|
677
677
|
var isCallable$d = isCallable$l;
|
|
678
678
|
var hasOwn$6 = hasOwnProperty_1;
|
|
@@ -686,9 +686,9 @@ var getInternalState$2 = InternalStateModule$2.get;
|
|
|
686
686
|
var $String$2 = String;
|
|
687
687
|
// eslint-disable-next-line es/no-object-defineproperty -- safe
|
|
688
688
|
var defineProperty$5 = Object.defineProperty;
|
|
689
|
-
var stringSlice$5 = uncurryThis$
|
|
690
|
-
var replace$2 = uncurryThis$
|
|
691
|
-
var join = uncurryThis$
|
|
689
|
+
var stringSlice$5 = uncurryThis$e(''.slice);
|
|
690
|
+
var replace$2 = uncurryThis$e(''.replace);
|
|
691
|
+
var join = uncurryThis$e([].join);
|
|
692
692
|
|
|
693
693
|
var CONFIGURABLE_LENGTH = DESCRIPTORS$5 && !fails$d(function () {
|
|
694
694
|
return defineProperty$5(function () { /* empty */ }, 'length', { value: 8 }).length !== 8;
|
|
@@ -698,7 +698,7 @@ var TEMPLATE = String(String).split('String');
|
|
|
698
698
|
|
|
699
699
|
var makeBuiltIn$2 = makeBuiltIn$3.exports = function (value, name, options) {
|
|
700
700
|
if (stringSlice$5($String$2(name), 0, 7) === 'Symbol(') {
|
|
701
|
-
name = '[' + replace$2($String$2(name), /^Symbol\(([^)]*)\)
|
|
701
|
+
name = '[' + replace$2($String$2(name), /^Symbol\(([^)]*)\).*$/, '$1') + ']';
|
|
702
702
|
}
|
|
703
703
|
if (options && options.getter) name = 'get ' + name;
|
|
704
704
|
if (options && options.setter) name = 'set ' + name;
|
|
@@ -798,7 +798,8 @@ var min$2 = Math.min;
|
|
|
798
798
|
// `ToLength` abstract operation
|
|
799
799
|
// https://tc39.es/ecma262/#sec-tolength
|
|
800
800
|
var toLength$3 = function (argument) {
|
|
801
|
-
|
|
801
|
+
var len = toIntegerOrInfinity$3(argument);
|
|
802
|
+
return len > 0 ? min$2(len, 0x1FFFFFFFFFFFFF) : 0; // 2 ** 53 - 1 == 9007199254740991
|
|
802
803
|
};
|
|
803
804
|
|
|
804
805
|
var toLength$2 = toLength$3;
|
|
@@ -842,13 +843,13 @@ var arrayIncludes = {
|
|
|
842
843
|
indexOf: createMethod$1(false)
|
|
843
844
|
};
|
|
844
845
|
|
|
845
|
-
var uncurryThis$
|
|
846
|
+
var uncurryThis$d = functionUncurryThis;
|
|
846
847
|
var hasOwn$5 = hasOwnProperty_1;
|
|
847
848
|
var toIndexedObject$2 = toIndexedObject$5;
|
|
848
849
|
var indexOf$1 = arrayIncludes.indexOf;
|
|
849
850
|
var hiddenKeys$2 = hiddenKeys$4;
|
|
850
851
|
|
|
851
|
-
var push$2 = uncurryThis$
|
|
852
|
+
var push$2 = uncurryThis$d([].push);
|
|
852
853
|
|
|
853
854
|
var objectKeysInternal = function (object, names) {
|
|
854
855
|
var O = toIndexedObject$2(object);
|
|
@@ -892,12 +893,12 @@ var objectGetOwnPropertySymbols = {};
|
|
|
892
893
|
objectGetOwnPropertySymbols.f = Object.getOwnPropertySymbols;
|
|
893
894
|
|
|
894
895
|
var getBuiltIn$5 = getBuiltIn$7;
|
|
895
|
-
var uncurryThis$
|
|
896
|
+
var uncurryThis$c = functionUncurryThis;
|
|
896
897
|
var getOwnPropertyNamesModule = objectGetOwnPropertyNames;
|
|
897
898
|
var getOwnPropertySymbolsModule$1 = objectGetOwnPropertySymbols;
|
|
898
899
|
var anObject$d = anObject$f;
|
|
899
900
|
|
|
900
|
-
var concat$2 = uncurryThis$
|
|
901
|
+
var concat$2 = uncurryThis$c([].concat);
|
|
901
902
|
|
|
902
903
|
// all object keys, includes non-enumerable and symbols
|
|
903
904
|
var ownKeys$1 = getBuiltIn$5('Reflect', 'ownKeys') || function ownKeys(it) {
|
|
@@ -979,7 +980,7 @@ var _export = function (options, source) {
|
|
|
979
980
|
} else if (STATIC) {
|
|
980
981
|
target = global$c[TARGET] || defineGlobalProperty(TARGET, {});
|
|
981
982
|
} else {
|
|
982
|
-
target =
|
|
983
|
+
target = global$c[TARGET] && global$c[TARGET].prototype;
|
|
983
984
|
}
|
|
984
985
|
if (target) for (key in source) {
|
|
985
986
|
sourceProperty = source[key];
|
|
@@ -1002,24 +1003,24 @@ var _export = function (options, source) {
|
|
|
1002
1003
|
};
|
|
1003
1004
|
|
|
1004
1005
|
var global$b = global$m;
|
|
1005
|
-
var classof$
|
|
1006
|
+
var classof$6 = classofRaw$2;
|
|
1006
1007
|
|
|
1007
|
-
var engineIsNode = classof$
|
|
1008
|
+
var engineIsNode = classof$6(global$b.process) === 'process';
|
|
1008
1009
|
|
|
1009
|
-
var uncurryThis$
|
|
1010
|
+
var uncurryThis$b = functionUncurryThis;
|
|
1010
1011
|
var aCallable$6 = aCallable$8;
|
|
1011
1012
|
|
|
1012
1013
|
var functionUncurryThisAccessor = function (object, key, method) {
|
|
1013
1014
|
try {
|
|
1014
1015
|
// eslint-disable-next-line es/no-object-getownpropertydescriptor -- safe
|
|
1015
|
-
return uncurryThis$
|
|
1016
|
+
return uncurryThis$b(aCallable$6(Object.getOwnPropertyDescriptor(object, key)[method]));
|
|
1016
1017
|
} catch (error) { /* empty */ }
|
|
1017
1018
|
};
|
|
1018
1019
|
|
|
1019
|
-
var isObject$
|
|
1020
|
+
var isObject$4 = isObject$a;
|
|
1020
1021
|
|
|
1021
1022
|
var isPossiblePrototype$1 = function (argument) {
|
|
1022
|
-
return isObject$
|
|
1023
|
+
return isObject$4(argument) || argument === null;
|
|
1023
1024
|
};
|
|
1024
1025
|
|
|
1025
1026
|
var isPossiblePrototype = isPossiblePrototype$1;
|
|
@@ -1061,9 +1062,9 @@ var objectSetPrototypeOf = Object.setPrototypeOf || ('__proto__' in {} ? functio
|
|
|
1061
1062
|
|
|
1062
1063
|
var defineProperty$4 = objectDefineProperty.f;
|
|
1063
1064
|
var hasOwn$3 = hasOwnProperty_1;
|
|
1064
|
-
var wellKnownSymbol$
|
|
1065
|
+
var wellKnownSymbol$f = wellKnownSymbol$h;
|
|
1065
1066
|
|
|
1066
|
-
var TO_STRING_TAG$2 = wellKnownSymbol$
|
|
1067
|
+
var TO_STRING_TAG$2 = wellKnownSymbol$f('toStringTag');
|
|
1067
1068
|
|
|
1068
1069
|
var setToStringTag$4 = function (target, TAG, STATIC) {
|
|
1069
1070
|
if (target && !STATIC) target = target.prototype;
|
|
@@ -1083,10 +1084,10 @@ var defineBuiltInAccessor$1 = function (target, name, descriptor) {
|
|
|
1083
1084
|
|
|
1084
1085
|
var getBuiltIn$4 = getBuiltIn$7;
|
|
1085
1086
|
var defineBuiltInAccessor = defineBuiltInAccessor$1;
|
|
1086
|
-
var wellKnownSymbol$
|
|
1087
|
+
var wellKnownSymbol$e = wellKnownSymbol$h;
|
|
1087
1088
|
var DESCRIPTORS$4 = descriptors;
|
|
1088
1089
|
|
|
1089
|
-
var SPECIES$4 = wellKnownSymbol$
|
|
1090
|
+
var SPECIES$4 = wellKnownSymbol$e('species');
|
|
1090
1091
|
|
|
1091
1092
|
var setSpecies$1 = function (CONSTRUCTOR_NAME) {
|
|
1092
1093
|
var Constructor = getBuiltIn$4(CONSTRUCTOR_NAME);
|
|
@@ -1108,9 +1109,9 @@ var anInstance$1 = function (it, Prototype) {
|
|
|
1108
1109
|
throw new $TypeError$7('Incorrect invocation');
|
|
1109
1110
|
};
|
|
1110
1111
|
|
|
1111
|
-
var wellKnownSymbol$
|
|
1112
|
+
var wellKnownSymbol$d = wellKnownSymbol$h;
|
|
1112
1113
|
|
|
1113
|
-
var TO_STRING_TAG$1 = wellKnownSymbol$
|
|
1114
|
+
var TO_STRING_TAG$1 = wellKnownSymbol$d('toStringTag');
|
|
1114
1115
|
var test$1 = {};
|
|
1115
1116
|
|
|
1116
1117
|
test$1[TO_STRING_TAG$1] = 'z';
|
|
@@ -1120,9 +1121,9 @@ var toStringTagSupport = String(test$1) === '[object z]';
|
|
|
1120
1121
|
var TO_STRING_TAG_SUPPORT = toStringTagSupport;
|
|
1121
1122
|
var isCallable$a = isCallable$l;
|
|
1122
1123
|
var classofRaw$1 = classofRaw$2;
|
|
1123
|
-
var wellKnownSymbol$
|
|
1124
|
+
var wellKnownSymbol$c = wellKnownSymbol$h;
|
|
1124
1125
|
|
|
1125
|
-
var TO_STRING_TAG = wellKnownSymbol$
|
|
1126
|
+
var TO_STRING_TAG = wellKnownSymbol$c('toStringTag');
|
|
1126
1127
|
var $Object$1 = Object;
|
|
1127
1128
|
|
|
1128
1129
|
// ES3 wrong here
|
|
@@ -1136,7 +1137,7 @@ var tryGet = function (it, key) {
|
|
|
1136
1137
|
};
|
|
1137
1138
|
|
|
1138
1139
|
// getting tag from ES6+ `Object.prototype.toString`
|
|
1139
|
-
var classof$
|
|
1140
|
+
var classof$5 = TO_STRING_TAG_SUPPORT ? classofRaw$1 : function (it) {
|
|
1140
1141
|
var O, tag, result;
|
|
1141
1142
|
return it === undefined ? 'Undefined' : it === null ? 'Null'
|
|
1142
1143
|
// @@toStringTag case
|
|
@@ -1147,24 +1148,23 @@ var classof$6 = TO_STRING_TAG_SUPPORT ? classofRaw$1 : function (it) {
|
|
|
1147
1148
|
: (result = classofRaw$1(O)) === 'Object' && isCallable$a(O.callee) ? 'Arguments' : result;
|
|
1148
1149
|
};
|
|
1149
1150
|
|
|
1150
|
-
var uncurryThis$
|
|
1151
|
+
var uncurryThis$a = functionUncurryThis;
|
|
1151
1152
|
var fails$b = fails$k;
|
|
1152
1153
|
var isCallable$9 = isCallable$l;
|
|
1153
|
-
var classof$
|
|
1154
|
+
var classof$4 = classof$5;
|
|
1154
1155
|
var getBuiltIn$3 = getBuiltIn$7;
|
|
1155
1156
|
var inspectSource$1 = inspectSource$3;
|
|
1156
1157
|
|
|
1157
1158
|
var noop = function () { /* empty */ };
|
|
1158
|
-
var empty = [];
|
|
1159
1159
|
var construct = getBuiltIn$3('Reflect', 'construct');
|
|
1160
1160
|
var constructorRegExp = /^\s*(?:class|function)\b/;
|
|
1161
|
-
var exec$
|
|
1161
|
+
var exec$1 = uncurryThis$a(constructorRegExp.exec);
|
|
1162
1162
|
var INCORRECT_TO_STRING = !constructorRegExp.test(noop);
|
|
1163
1163
|
|
|
1164
1164
|
var isConstructorModern = function isConstructor(argument) {
|
|
1165
1165
|
if (!isCallable$9(argument)) return false;
|
|
1166
1166
|
try {
|
|
1167
|
-
construct(noop,
|
|
1167
|
+
construct(noop, [], argument);
|
|
1168
1168
|
return true;
|
|
1169
1169
|
} catch (error) {
|
|
1170
1170
|
return false;
|
|
@@ -1173,7 +1173,7 @@ var isConstructorModern = function isConstructor(argument) {
|
|
|
1173
1173
|
|
|
1174
1174
|
var isConstructorLegacy = function isConstructor(argument) {
|
|
1175
1175
|
if (!isCallable$9(argument)) return false;
|
|
1176
|
-
switch (classof$
|
|
1176
|
+
switch (classof$4(argument)) {
|
|
1177
1177
|
case 'AsyncFunction':
|
|
1178
1178
|
case 'GeneratorFunction':
|
|
1179
1179
|
case 'AsyncGeneratorFunction': return false;
|
|
@@ -1182,7 +1182,7 @@ var isConstructorLegacy = function isConstructor(argument) {
|
|
|
1182
1182
|
// we can't check .prototype since constructors produced by .bind haven't it
|
|
1183
1183
|
// `Function#toString` throws on some built-it function in some legacy engines
|
|
1184
1184
|
// (for example, `DOMQuad` and similar in FF41-)
|
|
1185
|
-
return INCORRECT_TO_STRING || !!exec$
|
|
1185
|
+
return INCORRECT_TO_STRING || !!exec$1(constructorRegExp, inspectSource$1(argument));
|
|
1186
1186
|
} catch (error) {
|
|
1187
1187
|
return true;
|
|
1188
1188
|
}
|
|
@@ -1214,9 +1214,9 @@ var aConstructor$1 = function (argument) {
|
|
|
1214
1214
|
var anObject$b = anObject$f;
|
|
1215
1215
|
var aConstructor = aConstructor$1;
|
|
1216
1216
|
var isNullOrUndefined$3 = isNullOrUndefined$6;
|
|
1217
|
-
var wellKnownSymbol$
|
|
1217
|
+
var wellKnownSymbol$b = wellKnownSymbol$h;
|
|
1218
1218
|
|
|
1219
|
-
var SPECIES$3 = wellKnownSymbol$
|
|
1219
|
+
var SPECIES$3 = wellKnownSymbol$b('species');
|
|
1220
1220
|
|
|
1221
1221
|
// `SpeciesConstructor` abstract operation
|
|
1222
1222
|
// https://tc39.es/ecma262/#sec-speciesconstructor
|
|
@@ -1229,29 +1229,29 @@ var speciesConstructor$2 = function (O, defaultConstructor) {
|
|
|
1229
1229
|
var NATIVE_BIND$1 = functionBindNative;
|
|
1230
1230
|
|
|
1231
1231
|
var FunctionPrototype = Function.prototype;
|
|
1232
|
-
var apply$
|
|
1233
|
-
var call$
|
|
1232
|
+
var apply$2 = FunctionPrototype.apply;
|
|
1233
|
+
var call$e = FunctionPrototype.call;
|
|
1234
1234
|
|
|
1235
1235
|
// eslint-disable-next-line es/no-reflect -- safe
|
|
1236
|
-
var functionApply = typeof Reflect == 'object' && Reflect.apply || (NATIVE_BIND$1 ? call$
|
|
1237
|
-
return call$
|
|
1236
|
+
var functionApply = typeof Reflect == 'object' && Reflect.apply || (NATIVE_BIND$1 ? call$e.bind(apply$2) : function () {
|
|
1237
|
+
return call$e.apply(apply$2, arguments);
|
|
1238
1238
|
});
|
|
1239
1239
|
|
|
1240
1240
|
var classofRaw = classofRaw$2;
|
|
1241
|
-
var uncurryThis$
|
|
1241
|
+
var uncurryThis$9 = functionUncurryThis;
|
|
1242
1242
|
|
|
1243
1243
|
var functionUncurryThisClause = function (fn) {
|
|
1244
1244
|
// Nashorn bug:
|
|
1245
1245
|
// https://github.com/zloirock/core-js/issues/1128
|
|
1246
1246
|
// https://github.com/zloirock/core-js/issues/1130
|
|
1247
|
-
if (classofRaw(fn) === 'Function') return uncurryThis$
|
|
1247
|
+
if (classofRaw(fn) === 'Function') return uncurryThis$9(fn);
|
|
1248
1248
|
};
|
|
1249
1249
|
|
|
1250
|
-
var uncurryThis$
|
|
1250
|
+
var uncurryThis$8 = functionUncurryThisClause;
|
|
1251
1251
|
var aCallable$5 = aCallable$8;
|
|
1252
1252
|
var NATIVE_BIND = functionBindNative;
|
|
1253
1253
|
|
|
1254
|
-
var bind$5 = uncurryThis$
|
|
1254
|
+
var bind$5 = uncurryThis$8(uncurryThis$8.bind);
|
|
1255
1255
|
|
|
1256
1256
|
// optional / simple context binding
|
|
1257
1257
|
var functionBindContext = function (fn, that) {
|
|
@@ -1265,9 +1265,9 @@ var getBuiltIn$2 = getBuiltIn$7;
|
|
|
1265
1265
|
|
|
1266
1266
|
var html$2 = getBuiltIn$2('document', 'documentElement');
|
|
1267
1267
|
|
|
1268
|
-
var uncurryThis$
|
|
1268
|
+
var uncurryThis$7 = functionUncurryThis;
|
|
1269
1269
|
|
|
1270
|
-
var arraySlice$
|
|
1270
|
+
var arraySlice$1 = uncurryThis$7([].slice);
|
|
1271
1271
|
|
|
1272
1272
|
var $TypeError$5 = TypeError;
|
|
1273
1273
|
|
|
@@ -1282,13 +1282,13 @@ var userAgent$2 = engineUserAgent;
|
|
|
1282
1282
|
var engineIsIos = /(?:ipad|iphone|ipod).*applewebkit/i.test(userAgent$2);
|
|
1283
1283
|
|
|
1284
1284
|
var global$a = global$m;
|
|
1285
|
-
var apply$
|
|
1285
|
+
var apply$1 = functionApply;
|
|
1286
1286
|
var bind$4 = functionBindContext;
|
|
1287
1287
|
var isCallable$8 = isCallable$l;
|
|
1288
1288
|
var hasOwn$2 = hasOwnProperty_1;
|
|
1289
1289
|
var fails$a = fails$k;
|
|
1290
1290
|
var html$1 = html$2;
|
|
1291
|
-
var arraySlice
|
|
1291
|
+
var arraySlice = arraySlice$1;
|
|
1292
1292
|
var createElement = documentCreateElement$2;
|
|
1293
1293
|
var validateArgumentsLength = validateArgumentsLength$1;
|
|
1294
1294
|
var IS_IOS$1 = engineIsIos;
|
|
@@ -1339,9 +1339,9 @@ if (!set || !clear) {
|
|
|
1339
1339
|
set = function setImmediate(handler) {
|
|
1340
1340
|
validateArgumentsLength(arguments.length, 1);
|
|
1341
1341
|
var fn = isCallable$8(handler) ? handler : Function$1(handler);
|
|
1342
|
-
var args = arraySlice
|
|
1342
|
+
var args = arraySlice(arguments, 1);
|
|
1343
1343
|
queue$2[++counter] = function () {
|
|
1344
|
-
apply$
|
|
1344
|
+
apply$1(fn, undefined, args);
|
|
1345
1345
|
};
|
|
1346
1346
|
defer(counter);
|
|
1347
1347
|
return counter;
|
|
@@ -1557,13 +1557,13 @@ var NativePromiseConstructor$3 = promiseNativeConstructor;
|
|
|
1557
1557
|
var isCallable$7 = isCallable$l;
|
|
1558
1558
|
var isForced = isForced_1;
|
|
1559
1559
|
var inspectSource = inspectSource$3;
|
|
1560
|
-
var wellKnownSymbol$
|
|
1560
|
+
var wellKnownSymbol$a = wellKnownSymbol$h;
|
|
1561
1561
|
var IS_BROWSER = engineIsBrowser;
|
|
1562
1562
|
var IS_DENO = engineIsDeno;
|
|
1563
1563
|
var V8_VERSION = engineV8Version;
|
|
1564
1564
|
|
|
1565
1565
|
NativePromiseConstructor$3 && NativePromiseConstructor$3.prototype;
|
|
1566
|
-
var SPECIES$2 = wellKnownSymbol$
|
|
1566
|
+
var SPECIES$2 = wellKnownSymbol$a('species');
|
|
1567
1567
|
var SUBCLASSING = false;
|
|
1568
1568
|
var NATIVE_PROMISE_REJECTION_EVENT$1 = isCallable$7(global$6.PromiseRejectionEvent);
|
|
1569
1569
|
|
|
@@ -1623,14 +1623,14 @@ newPromiseCapability$2.f = function (C) {
|
|
|
1623
1623
|
var $$a = _export;
|
|
1624
1624
|
var IS_NODE = engineIsNode;
|
|
1625
1625
|
var global$5 = global$m;
|
|
1626
|
-
var call$
|
|
1626
|
+
var call$d = functionCall;
|
|
1627
1627
|
var defineBuiltIn$5 = defineBuiltIn$7;
|
|
1628
1628
|
var setPrototypeOf$1 = objectSetPrototypeOf;
|
|
1629
1629
|
var setToStringTag$3 = setToStringTag$4;
|
|
1630
1630
|
var setSpecies = setSpecies$1;
|
|
1631
1631
|
var aCallable$3 = aCallable$8;
|
|
1632
1632
|
var isCallable$6 = isCallable$l;
|
|
1633
|
-
var isObject$
|
|
1633
|
+
var isObject$3 = isObject$a;
|
|
1634
1634
|
var anInstance = anInstance$1;
|
|
1635
1635
|
var speciesConstructor$1 = speciesConstructor$2;
|
|
1636
1636
|
var task = task$1.set;
|
|
@@ -1672,7 +1672,7 @@ var Internal, OwnPromiseCapability, PromiseWrapper, nativeThen;
|
|
|
1672
1672
|
// helpers
|
|
1673
1673
|
var isThenable = function (it) {
|
|
1674
1674
|
var then;
|
|
1675
|
-
return isObject$
|
|
1675
|
+
return isObject$3(it) && isCallable$6(then = it.then) ? then : false;
|
|
1676
1676
|
};
|
|
1677
1677
|
|
|
1678
1678
|
var callReaction = function (reaction, state) {
|
|
@@ -1701,7 +1701,7 @@ var callReaction = function (reaction, state) {
|
|
|
1701
1701
|
if (result === reaction.promise) {
|
|
1702
1702
|
reject(new TypeError$1('Promise-chain cycle'));
|
|
1703
1703
|
} else if (then = isThenable(result)) {
|
|
1704
|
-
call$
|
|
1704
|
+
call$d(then, result, resolve, reject);
|
|
1705
1705
|
} else resolve(result);
|
|
1706
1706
|
} else reject(value);
|
|
1707
1707
|
} catch (error) {
|
|
@@ -1738,7 +1738,7 @@ var dispatchEvent = function (name, promise, reason) {
|
|
|
1738
1738
|
};
|
|
1739
1739
|
|
|
1740
1740
|
var onUnhandled = function (state) {
|
|
1741
|
-
call$
|
|
1741
|
+
call$d(task, global$5, function () {
|
|
1742
1742
|
var promise = state.facade;
|
|
1743
1743
|
var value = state.value;
|
|
1744
1744
|
var IS_UNHANDLED = isUnhandled(state);
|
|
@@ -1761,7 +1761,7 @@ var isUnhandled = function (state) {
|
|
|
1761
1761
|
};
|
|
1762
1762
|
|
|
1763
1763
|
var onHandleUnhandled = function (state) {
|
|
1764
|
-
call$
|
|
1764
|
+
call$d(task, global$5, function () {
|
|
1765
1765
|
var promise = state.facade;
|
|
1766
1766
|
if (IS_NODE) {
|
|
1767
1767
|
process.emit('rejectionHandled', promise);
|
|
@@ -1795,7 +1795,7 @@ var internalResolve = function (state, value, unwrap) {
|
|
|
1795
1795
|
microtask(function () {
|
|
1796
1796
|
var wrapper = { done: false };
|
|
1797
1797
|
try {
|
|
1798
|
-
call$
|
|
1798
|
+
call$d(then, value,
|
|
1799
1799
|
bind$2(internalResolve, wrapper, state),
|
|
1800
1800
|
bind$2(internalReject, wrapper, state)
|
|
1801
1801
|
);
|
|
@@ -1819,7 +1819,7 @@ if (FORCED_PROMISE_CONSTRUCTOR$4) {
|
|
|
1819
1819
|
PromiseConstructor = function Promise(executor) {
|
|
1820
1820
|
anInstance(this, PromisePrototype);
|
|
1821
1821
|
aCallable$3(executor);
|
|
1822
|
-
call$
|
|
1822
|
+
call$d(Internal, this);
|
|
1823
1823
|
var state = getInternalPromiseState(this);
|
|
1824
1824
|
try {
|
|
1825
1825
|
executor(bind$2(internalResolve, state), bind$2(internalReject, state));
|
|
@@ -1882,7 +1882,7 @@ if (FORCED_PROMISE_CONSTRUCTOR$4) {
|
|
|
1882
1882
|
defineBuiltIn$5(NativePromisePrototype$1, 'then', function then(onFulfilled, onRejected) {
|
|
1883
1883
|
var that = this;
|
|
1884
1884
|
return new PromiseConstructor(function (resolve, reject) {
|
|
1885
|
-
call$
|
|
1885
|
+
call$d(nativeThen, that, resolve, reject);
|
|
1886
1886
|
}).then(onFulfilled, onRejected);
|
|
1887
1887
|
// https://github.com/zloirock/core-js/issues/640
|
|
1888
1888
|
}, { unsafe: true });
|
|
@@ -1909,10 +1909,10 @@ setSpecies(PROMISE);
|
|
|
1909
1909
|
|
|
1910
1910
|
var iterators = {};
|
|
1911
1911
|
|
|
1912
|
-
var wellKnownSymbol$
|
|
1912
|
+
var wellKnownSymbol$9 = wellKnownSymbol$h;
|
|
1913
1913
|
var Iterators$4 = iterators;
|
|
1914
1914
|
|
|
1915
|
-
var ITERATOR$5 = wellKnownSymbol$
|
|
1915
|
+
var ITERATOR$5 = wellKnownSymbol$9('iterator');
|
|
1916
1916
|
var ArrayPrototype$1 = Array.prototype;
|
|
1917
1917
|
|
|
1918
1918
|
// check on default Array iterator
|
|
@@ -1920,21 +1920,21 @@ var isArrayIteratorMethod$1 = function (it) {
|
|
|
1920
1920
|
return it !== undefined && (Iterators$4.Array === it || ArrayPrototype$1[ITERATOR$5] === it);
|
|
1921
1921
|
};
|
|
1922
1922
|
|
|
1923
|
-
var classof$
|
|
1923
|
+
var classof$3 = classof$5;
|
|
1924
1924
|
var getMethod$3 = getMethod$5;
|
|
1925
1925
|
var isNullOrUndefined$2 = isNullOrUndefined$6;
|
|
1926
1926
|
var Iterators$3 = iterators;
|
|
1927
|
-
var wellKnownSymbol$
|
|
1927
|
+
var wellKnownSymbol$8 = wellKnownSymbol$h;
|
|
1928
1928
|
|
|
1929
|
-
var ITERATOR$4 = wellKnownSymbol$
|
|
1929
|
+
var ITERATOR$4 = wellKnownSymbol$8('iterator');
|
|
1930
1930
|
|
|
1931
1931
|
var getIteratorMethod$2 = function (it) {
|
|
1932
1932
|
if (!isNullOrUndefined$2(it)) return getMethod$3(it, ITERATOR$4)
|
|
1933
1933
|
|| getMethod$3(it, '@@iterator')
|
|
1934
|
-
|| Iterators$3[classof$
|
|
1934
|
+
|| Iterators$3[classof$3(it)];
|
|
1935
1935
|
};
|
|
1936
1936
|
|
|
1937
|
-
var call$
|
|
1937
|
+
var call$c = functionCall;
|
|
1938
1938
|
var aCallable$2 = aCallable$8;
|
|
1939
1939
|
var anObject$a = anObject$f;
|
|
1940
1940
|
var tryToString$1 = tryToString$4;
|
|
@@ -1944,11 +1944,11 @@ var $TypeError$3 = TypeError;
|
|
|
1944
1944
|
|
|
1945
1945
|
var getIterator$1 = function (argument, usingIterator) {
|
|
1946
1946
|
var iteratorMethod = arguments.length < 2 ? getIteratorMethod$1(argument) : usingIterator;
|
|
1947
|
-
if (aCallable$2(iteratorMethod)) return anObject$a(call$
|
|
1947
|
+
if (aCallable$2(iteratorMethod)) return anObject$a(call$c(iteratorMethod, argument));
|
|
1948
1948
|
throw new $TypeError$3(tryToString$1(argument) + ' is not iterable');
|
|
1949
1949
|
};
|
|
1950
1950
|
|
|
1951
|
-
var call$
|
|
1951
|
+
var call$b = functionCall;
|
|
1952
1952
|
var anObject$9 = anObject$f;
|
|
1953
1953
|
var getMethod$2 = getMethod$5;
|
|
1954
1954
|
|
|
@@ -1961,7 +1961,7 @@ var iteratorClose$1 = function (iterator, kind, value) {
|
|
|
1961
1961
|
if (kind === 'throw') throw value;
|
|
1962
1962
|
return value;
|
|
1963
1963
|
}
|
|
1964
|
-
innerResult = call$
|
|
1964
|
+
innerResult = call$b(innerResult, iterator);
|
|
1965
1965
|
} catch (error) {
|
|
1966
1966
|
innerError = true;
|
|
1967
1967
|
innerResult = error;
|
|
@@ -1973,7 +1973,7 @@ var iteratorClose$1 = function (iterator, kind, value) {
|
|
|
1973
1973
|
};
|
|
1974
1974
|
|
|
1975
1975
|
var bind$1 = functionBindContext;
|
|
1976
|
-
var call$
|
|
1976
|
+
var call$a = functionCall;
|
|
1977
1977
|
var anObject$8 = anObject$f;
|
|
1978
1978
|
var tryToString = tryToString$4;
|
|
1979
1979
|
var isArrayIteratorMethod = isArrayIteratorMethod$1;
|
|
@@ -2031,7 +2031,7 @@ var iterate$2 = function (iterable, unboundFunction, options) {
|
|
|
2031
2031
|
}
|
|
2032
2032
|
|
|
2033
2033
|
next = IS_RECORD ? iterable.next : iterator.next;
|
|
2034
|
-
while (!(step = call$
|
|
2034
|
+
while (!(step = call$a(next, iterator)).done) {
|
|
2035
2035
|
try {
|
|
2036
2036
|
result = callFn(step.value);
|
|
2037
2037
|
} catch (error) {
|
|
@@ -2041,9 +2041,9 @@ var iterate$2 = function (iterable, unboundFunction, options) {
|
|
|
2041
2041
|
} return new Result(false);
|
|
2042
2042
|
};
|
|
2043
2043
|
|
|
2044
|
-
var wellKnownSymbol$
|
|
2044
|
+
var wellKnownSymbol$7 = wellKnownSymbol$h;
|
|
2045
2045
|
|
|
2046
|
-
var ITERATOR$3 = wellKnownSymbol$
|
|
2046
|
+
var ITERATOR$3 = wellKnownSymbol$7('iterator');
|
|
2047
2047
|
var SAFE_CLOSING = false;
|
|
2048
2048
|
|
|
2049
2049
|
try {
|
|
@@ -2091,7 +2091,7 @@ var promiseStaticsIncorrectIteration = FORCED_PROMISE_CONSTRUCTOR$3 || !checkCor
|
|
|
2091
2091
|
});
|
|
2092
2092
|
|
|
2093
2093
|
var $$9 = _export;
|
|
2094
|
-
var call$
|
|
2094
|
+
var call$9 = functionCall;
|
|
2095
2095
|
var aCallable$1 = aCallable$8;
|
|
2096
2096
|
var newPromiseCapabilityModule$2 = newPromiseCapability$2;
|
|
2097
2097
|
var perform$1 = perform$3;
|
|
@@ -2115,7 +2115,7 @@ $$9({ target: 'Promise', stat: true, forced: PROMISE_STATICS_INCORRECT_ITERATION
|
|
|
2115
2115
|
var index = counter++;
|
|
2116
2116
|
var alreadyCalled = false;
|
|
2117
2117
|
remaining++;
|
|
2118
|
-
call$
|
|
2118
|
+
call$9($promiseResolve, C, promise).then(function (value) {
|
|
2119
2119
|
if (alreadyCalled) return;
|
|
2120
2120
|
alreadyCalled = true;
|
|
2121
2121
|
values[index] = value;
|
|
@@ -2155,7 +2155,7 @@ if (isCallable$5(NativePromiseConstructor)) {
|
|
|
2155
2155
|
}
|
|
2156
2156
|
|
|
2157
2157
|
var $$7 = _export;
|
|
2158
|
-
var call$
|
|
2158
|
+
var call$8 = functionCall;
|
|
2159
2159
|
var aCallable = aCallable$8;
|
|
2160
2160
|
var newPromiseCapabilityModule$1 = newPromiseCapability$2;
|
|
2161
2161
|
var perform = perform$3;
|
|
@@ -2172,7 +2172,7 @@ $$7({ target: 'Promise', stat: true, forced: PROMISE_STATICS_INCORRECT_ITERATION
|
|
|
2172
2172
|
var result = perform(function () {
|
|
2173
2173
|
var $promiseResolve = aCallable(C.resolve);
|
|
2174
2174
|
iterate(iterable, function (promise) {
|
|
2175
|
-
call$
|
|
2175
|
+
call$8($promiseResolve, C, promise).then(capability.resolve, reject);
|
|
2176
2176
|
});
|
|
2177
2177
|
});
|
|
2178
2178
|
if (result.error) reject(result.value);
|
|
@@ -2196,12 +2196,12 @@ $$6({ target: 'Promise', stat: true, forced: FORCED_PROMISE_CONSTRUCTOR$1 }, {
|
|
|
2196
2196
|
});
|
|
2197
2197
|
|
|
2198
2198
|
var anObject$7 = anObject$f;
|
|
2199
|
-
var isObject$
|
|
2199
|
+
var isObject$2 = isObject$a;
|
|
2200
2200
|
var newPromiseCapability = newPromiseCapability$2;
|
|
2201
2201
|
|
|
2202
2202
|
var promiseResolve$1 = function (C, x) {
|
|
2203
2203
|
anObject$7(C);
|
|
2204
|
-
if (isObject$
|
|
2204
|
+
if (isObject$2(x) && x.constructor === C) return x;
|
|
2205
2205
|
var promiseCapability = newPromiseCapability.f(C);
|
|
2206
2206
|
var resolve = promiseCapability.resolve;
|
|
2207
2207
|
resolve(x);
|
|
@@ -2284,8 +2284,8 @@ var objectKeys$2 = Object.keys || function keys(O) {
|
|
|
2284
2284
|
};
|
|
2285
2285
|
|
|
2286
2286
|
var DESCRIPTORS$2 = descriptors;
|
|
2287
|
-
var uncurryThis$
|
|
2288
|
-
var call$
|
|
2287
|
+
var uncurryThis$6 = functionUncurryThis;
|
|
2288
|
+
var call$7 = functionCall;
|
|
2289
2289
|
var fails$9 = fails$k;
|
|
2290
2290
|
var objectKeys$1 = objectKeys$2;
|
|
2291
2291
|
var getOwnPropertySymbolsModule = objectGetOwnPropertySymbols;
|
|
@@ -2297,7 +2297,7 @@ var IndexedObject = indexedObject;
|
|
|
2297
2297
|
var $assign = Object.assign;
|
|
2298
2298
|
// eslint-disable-next-line es/no-object-defineproperty -- required for testing
|
|
2299
2299
|
var defineProperty$2 = Object.defineProperty;
|
|
2300
|
-
var concat$1 = uncurryThis$
|
|
2300
|
+
var concat$1 = uncurryThis$6([].concat);
|
|
2301
2301
|
|
|
2302
2302
|
// `Object.assign` method
|
|
2303
2303
|
// https://tc39.es/ecma262/#sec-object.assign
|
|
@@ -2335,7 +2335,7 @@ var objectAssign = !$assign || fails$9(function () {
|
|
|
2335
2335
|
var key;
|
|
2336
2336
|
while (length > j) {
|
|
2337
2337
|
key = keys[j++];
|
|
2338
|
-
if (!DESCRIPTORS$2 || call$
|
|
2338
|
+
if (!DESCRIPTORS$2 || call$7(propertyIsEnumerable, S, key)) T[key] = S[key];
|
|
2339
2339
|
}
|
|
2340
2340
|
} return T;
|
|
2341
2341
|
} : $assign;
|
|
@@ -3120,12 +3120,12 @@ function dataFromDocumentSnapshots() {
|
|
|
3120
3120
|
return map(x => getDataFromDocumentSnapshots(x));
|
|
3121
3121
|
}
|
|
3122
3122
|
|
|
3123
|
-
var classof$
|
|
3123
|
+
var classof$2 = classof$5;
|
|
3124
3124
|
|
|
3125
3125
|
var $String = String;
|
|
3126
3126
|
|
|
3127
3127
|
var toString$4 = function (argument) {
|
|
3128
|
-
if (classof$
|
|
3128
|
+
if (classof$2(argument) === 'Symbol') throw new TypeError('Cannot convert a Symbol value to a string');
|
|
3129
3129
|
return $String(argument);
|
|
3130
3130
|
};
|
|
3131
3131
|
|
|
@@ -3147,7 +3147,7 @@ var regexpFlags$1 = function () {
|
|
|
3147
3147
|
return result;
|
|
3148
3148
|
};
|
|
3149
3149
|
|
|
3150
|
-
var call$
|
|
3150
|
+
var call$6 = functionCall;
|
|
3151
3151
|
var hasOwn$1 = hasOwnProperty_1;
|
|
3152
3152
|
var isPrototypeOf = objectIsPrototypeOf;
|
|
3153
3153
|
var regExpFlags = regexpFlags$1;
|
|
@@ -3157,7 +3157,7 @@ var RegExpPrototype$2 = RegExp.prototype;
|
|
|
3157
3157
|
var regexpGetFlags = function (R) {
|
|
3158
3158
|
var flags = R.flags;
|
|
3159
3159
|
return flags === undefined && !('flags' in RegExpPrototype$2) && !hasOwn$1(R, 'flags') && isPrototypeOf(RegExpPrototype$2, R)
|
|
3160
|
-
? call$
|
|
3160
|
+
? call$6(regExpFlags, R) : flags;
|
|
3161
3161
|
};
|
|
3162
3162
|
|
|
3163
3163
|
var PROPER_FUNCTION_NAME$1 = functionName.PROPER;
|
|
@@ -3392,11 +3392,11 @@ var objectCreate = Object.create || function create(O, Properties) {
|
|
|
3392
3392
|
return Properties === undefined ? result : definePropertiesModule.f(result, Properties);
|
|
3393
3393
|
};
|
|
3394
3394
|
|
|
3395
|
-
var wellKnownSymbol$
|
|
3395
|
+
var wellKnownSymbol$6 = wellKnownSymbol$h;
|
|
3396
3396
|
var create$2 = objectCreate;
|
|
3397
3397
|
var defineProperty$1 = objectDefineProperty.f;
|
|
3398
3398
|
|
|
3399
|
-
var UNSCOPABLES = wellKnownSymbol$
|
|
3399
|
+
var UNSCOPABLES = wellKnownSymbol$6('unscopables');
|
|
3400
3400
|
var ArrayPrototype = Array.prototype;
|
|
3401
3401
|
|
|
3402
3402
|
// Array.prototype[@@unscopables]
|
|
@@ -3446,12 +3446,12 @@ var objectGetPrototypeOf = CORRECT_PROTOTYPE_GETTER ? $Object.getPrototypeOf : f
|
|
|
3446
3446
|
|
|
3447
3447
|
var fails$6 = fails$k;
|
|
3448
3448
|
var isCallable$3 = isCallable$l;
|
|
3449
|
-
var isObject$
|
|
3449
|
+
var isObject$1 = isObject$a;
|
|
3450
3450
|
var getPrototypeOf$1 = objectGetPrototypeOf;
|
|
3451
3451
|
var defineBuiltIn$2 = defineBuiltIn$7;
|
|
3452
|
-
var wellKnownSymbol$
|
|
3452
|
+
var wellKnownSymbol$5 = wellKnownSymbol$h;
|
|
3453
3453
|
|
|
3454
|
-
var ITERATOR$2 = wellKnownSymbol$
|
|
3454
|
+
var ITERATOR$2 = wellKnownSymbol$5('iterator');
|
|
3455
3455
|
var BUGGY_SAFARI_ITERATORS$1 = false;
|
|
3456
3456
|
|
|
3457
3457
|
// `%IteratorPrototype%` object
|
|
@@ -3469,7 +3469,7 @@ if ([].keys) {
|
|
|
3469
3469
|
}
|
|
3470
3470
|
}
|
|
3471
3471
|
|
|
3472
|
-
var NEW_ITERATOR_PROTOTYPE = !isObject$
|
|
3472
|
+
var NEW_ITERATOR_PROTOTYPE = !isObject$1(IteratorPrototype$2) || fails$6(function () {
|
|
3473
3473
|
var test = {};
|
|
3474
3474
|
// FF44- legacy iterators case
|
|
3475
3475
|
return IteratorPrototype$2[ITERATOR$2].call(test) !== test;
|
|
@@ -3507,7 +3507,7 @@ var iteratorCreateConstructor = function (IteratorConstructor, NAME, next, ENUME
|
|
|
3507
3507
|
};
|
|
3508
3508
|
|
|
3509
3509
|
var $$3 = _export;
|
|
3510
|
-
var call$
|
|
3510
|
+
var call$5 = functionCall;
|
|
3511
3511
|
var FunctionName = functionName;
|
|
3512
3512
|
var isCallable$2 = isCallable$l;
|
|
3513
3513
|
var createIteratorConstructor = iteratorCreateConstructor;
|
|
@@ -3516,7 +3516,7 @@ var setPrototypeOf = objectSetPrototypeOf;
|
|
|
3516
3516
|
var setToStringTag$1 = setToStringTag$4;
|
|
3517
3517
|
var createNonEnumerableProperty$2 = createNonEnumerableProperty$5;
|
|
3518
3518
|
var defineBuiltIn$1 = defineBuiltIn$7;
|
|
3519
|
-
var wellKnownSymbol$
|
|
3519
|
+
var wellKnownSymbol$4 = wellKnownSymbol$h;
|
|
3520
3520
|
var Iterators$1 = iterators;
|
|
3521
3521
|
var IteratorsCore = iteratorsCore;
|
|
3522
3522
|
|
|
@@ -3524,7 +3524,7 @@ var PROPER_FUNCTION_NAME = FunctionName.PROPER;
|
|
|
3524
3524
|
var CONFIGURABLE_FUNCTION_NAME = FunctionName.CONFIGURABLE;
|
|
3525
3525
|
var IteratorPrototype = IteratorsCore.IteratorPrototype;
|
|
3526
3526
|
var BUGGY_SAFARI_ITERATORS = IteratorsCore.BUGGY_SAFARI_ITERATORS;
|
|
3527
|
-
var ITERATOR$1 = wellKnownSymbol$
|
|
3527
|
+
var ITERATOR$1 = wellKnownSymbol$4('iterator');
|
|
3528
3528
|
var KEYS = 'keys';
|
|
3529
3529
|
var VALUES = 'values';
|
|
3530
3530
|
var ENTRIES = 'entries';
|
|
@@ -3579,7 +3579,7 @@ var iteratorDefine = function (Iterable, NAME, IteratorConstructor, next, DEFAUL
|
|
|
3579
3579
|
createNonEnumerableProperty$2(IterablePrototype, 'name', VALUES);
|
|
3580
3580
|
} else {
|
|
3581
3581
|
INCORRECT_VALUES_NAME = true;
|
|
3582
|
-
defaultIterator = function values() { return call$
|
|
3582
|
+
defaultIterator = function values() { return call$5(nativeIterator, this); };
|
|
3583
3583
|
}
|
|
3584
3584
|
}
|
|
3585
3585
|
|
|
@@ -3723,9 +3723,9 @@ var DOMTokenListPrototype = domTokenListPrototype;
|
|
|
3723
3723
|
var ArrayIteratorMethods = es_array_iterator;
|
|
3724
3724
|
var createNonEnumerableProperty$1 = createNonEnumerableProperty$5;
|
|
3725
3725
|
var setToStringTag = setToStringTag$4;
|
|
3726
|
-
var wellKnownSymbol$
|
|
3726
|
+
var wellKnownSymbol$3 = wellKnownSymbol$h;
|
|
3727
3727
|
|
|
3728
|
-
var ITERATOR = wellKnownSymbol$
|
|
3728
|
+
var ITERATOR = wellKnownSymbol$3('iterator');
|
|
3729
3729
|
var ArrayValues = ArrayIteratorMethods.values;
|
|
3730
3730
|
|
|
3731
3731
|
var handlePrototype = function (CollectionPrototype, COLLECTION_NAME) {
|
|
@@ -5550,8 +5550,8 @@ var regexpUnsupportedNcg = fails$3(function () {
|
|
|
5550
5550
|
|
|
5551
5551
|
/* eslint-disable regexp/no-empty-capturing-group, regexp/no-empty-group, regexp/no-lazy-ends -- testing */
|
|
5552
5552
|
/* eslint-disable regexp/no-useless-quantifier -- testing */
|
|
5553
|
-
var call$
|
|
5554
|
-
var uncurryThis$
|
|
5553
|
+
var call$4 = functionCall;
|
|
5554
|
+
var uncurryThis$5 = functionUncurryThis;
|
|
5555
5555
|
var toString$3 = toString$4;
|
|
5556
5556
|
var regexpFlags = regexpFlags$1;
|
|
5557
5557
|
var stickyHelpers$1 = regexpStickyHelpers;
|
|
@@ -5564,16 +5564,16 @@ var UNSUPPORTED_NCG = regexpUnsupportedNcg;
|
|
|
5564
5564
|
var nativeReplace = shared('native-string-replace', String.prototype.replace);
|
|
5565
5565
|
var nativeExec = RegExp.prototype.exec;
|
|
5566
5566
|
var patchedExec = nativeExec;
|
|
5567
|
-
var charAt$3 = uncurryThis$
|
|
5568
|
-
var indexOf = uncurryThis$
|
|
5569
|
-
var replace$1 = uncurryThis$
|
|
5570
|
-
var stringSlice$4 = uncurryThis$
|
|
5567
|
+
var charAt$3 = uncurryThis$5(''.charAt);
|
|
5568
|
+
var indexOf = uncurryThis$5(''.indexOf);
|
|
5569
|
+
var replace$1 = uncurryThis$5(''.replace);
|
|
5570
|
+
var stringSlice$4 = uncurryThis$5(''.slice);
|
|
5571
5571
|
|
|
5572
5572
|
var UPDATES_LAST_INDEX_WRONG = (function () {
|
|
5573
5573
|
var re1 = /a/;
|
|
5574
5574
|
var re2 = /b*/g;
|
|
5575
|
-
call$
|
|
5576
|
-
call$
|
|
5575
|
+
call$4(nativeExec, re1, 'a');
|
|
5576
|
+
call$4(nativeExec, re2, 'a');
|
|
5577
5577
|
return re1.lastIndex !== 0 || re2.lastIndex !== 0;
|
|
5578
5578
|
})();
|
|
5579
5579
|
|
|
@@ -5594,14 +5594,14 @@ if (PATCH) {
|
|
|
5594
5594
|
|
|
5595
5595
|
if (raw) {
|
|
5596
5596
|
raw.lastIndex = re.lastIndex;
|
|
5597
|
-
result = call$
|
|
5597
|
+
result = call$4(patchedExec, raw, str);
|
|
5598
5598
|
re.lastIndex = raw.lastIndex;
|
|
5599
5599
|
return result;
|
|
5600
5600
|
}
|
|
5601
5601
|
|
|
5602
5602
|
var groups = state.groups;
|
|
5603
5603
|
var sticky = UNSUPPORTED_Y$1 && re.sticky;
|
|
5604
|
-
var flags = call$
|
|
5604
|
+
var flags = call$4(regexpFlags, re);
|
|
5605
5605
|
var source = re.source;
|
|
5606
5606
|
var charsAdded = 0;
|
|
5607
5607
|
var strCopy = str;
|
|
@@ -5629,7 +5629,7 @@ if (PATCH) {
|
|
|
5629
5629
|
}
|
|
5630
5630
|
if (UPDATES_LAST_INDEX_WRONG) lastIndex = re.lastIndex;
|
|
5631
5631
|
|
|
5632
|
-
match = call$
|
|
5632
|
+
match = call$4(nativeExec, sticky ? reCopy : re, strCopy);
|
|
5633
5633
|
|
|
5634
5634
|
if (sticky) {
|
|
5635
5635
|
if (match) {
|
|
@@ -5644,7 +5644,7 @@ if (PATCH) {
|
|
|
5644
5644
|
if (NPCG_INCLUDED && match && match.length > 1) {
|
|
5645
5645
|
// Fix browsers whose `exec` methods don't consistently return `undefined`
|
|
5646
5646
|
// for NPCG, like IE8. NOTE: This doesn't work for /(.?)?/
|
|
5647
|
-
call$
|
|
5647
|
+
call$4(nativeReplace, match[0], reCopy, function () {
|
|
5648
5648
|
for (i = 1; i < arguments.length - 2; i++) {
|
|
5649
5649
|
if (arguments[i] === undefined) match[i] = undefined;
|
|
5650
5650
|
}
|
|
@@ -5663,34 +5663,34 @@ if (PATCH) {
|
|
|
5663
5663
|
};
|
|
5664
5664
|
}
|
|
5665
5665
|
|
|
5666
|
-
var regexpExec$
|
|
5666
|
+
var regexpExec$2 = patchedExec;
|
|
5667
5667
|
|
|
5668
5668
|
var $$2 = _export;
|
|
5669
|
-
var exec
|
|
5669
|
+
var exec = regexpExec$2;
|
|
5670
5670
|
|
|
5671
5671
|
// `RegExp.prototype.exec` method
|
|
5672
5672
|
// https://tc39.es/ecma262/#sec-regexp.prototype.exec
|
|
5673
|
-
$$2({ target: 'RegExp', proto: true, forced: /./.exec !== exec
|
|
5674
|
-
exec: exec
|
|
5673
|
+
$$2({ target: 'RegExp', proto: true, forced: /./.exec !== exec }, {
|
|
5674
|
+
exec: exec
|
|
5675
5675
|
});
|
|
5676
5676
|
|
|
5677
5677
|
// TODO: Remove from `core-js@4` since it's moved to entry points
|
|
5678
5678
|
|
|
5679
|
-
var
|
|
5679
|
+
var call$3 = functionCall;
|
|
5680
5680
|
var defineBuiltIn = defineBuiltIn$7;
|
|
5681
|
-
var regexpExec$
|
|
5681
|
+
var regexpExec$1 = regexpExec$2;
|
|
5682
5682
|
var fails$2 = fails$k;
|
|
5683
|
-
var wellKnownSymbol$
|
|
5683
|
+
var wellKnownSymbol$2 = wellKnownSymbol$h;
|
|
5684
5684
|
var createNonEnumerableProperty = createNonEnumerableProperty$5;
|
|
5685
5685
|
|
|
5686
|
-
var SPECIES$1 = wellKnownSymbol$
|
|
5686
|
+
var SPECIES$1 = wellKnownSymbol$2('species');
|
|
5687
5687
|
var RegExpPrototype = RegExp.prototype;
|
|
5688
5688
|
|
|
5689
5689
|
var fixRegexpWellKnownSymbolLogic = function (KEY, exec, FORCED, SHAM) {
|
|
5690
|
-
var SYMBOL = wellKnownSymbol$
|
|
5690
|
+
var SYMBOL = wellKnownSymbol$2(KEY);
|
|
5691
5691
|
|
|
5692
5692
|
var DELEGATES_TO_SYMBOL = !fails$2(function () {
|
|
5693
|
-
// String methods call symbol-named
|
|
5693
|
+
// String methods call symbol-named RegExp methods
|
|
5694
5694
|
var O = {};
|
|
5695
5695
|
O[SYMBOL] = function () { return 7; };
|
|
5696
5696
|
return ''[KEY](O) !== 7;
|
|
@@ -5728,18 +5728,17 @@ var fixRegexpWellKnownSymbolLogic = function (KEY, exec, FORCED, SHAM) {
|
|
|
5728
5728
|
!DELEGATES_TO_EXEC ||
|
|
5729
5729
|
FORCED
|
|
5730
5730
|
) {
|
|
5731
|
-
var
|
|
5731
|
+
var nativeRegExpMethod = /./[SYMBOL];
|
|
5732
5732
|
var methods = exec(SYMBOL, ''[KEY], function (nativeMethod, regexp, str, arg2, forceStringMethod) {
|
|
5733
|
-
var uncurriedNativeMethod = uncurryThis$5(nativeMethod);
|
|
5734
5733
|
var $exec = regexp.exec;
|
|
5735
|
-
if ($exec === regexpExec$
|
|
5734
|
+
if ($exec === regexpExec$1 || $exec === RegExpPrototype.exec) {
|
|
5736
5735
|
if (DELEGATES_TO_SYMBOL && !forceStringMethod) {
|
|
5737
5736
|
// The native String method already delegates to @@method (this
|
|
5738
5737
|
// polyfilled function), leasing to infinite recursion.
|
|
5739
5738
|
// We avoid it by directly calling the native @@method method.
|
|
5740
|
-
return { done: true, value:
|
|
5739
|
+
return { done: true, value: call$3(nativeRegExpMethod, regexp, str, arg2) };
|
|
5741
5740
|
}
|
|
5742
|
-
return { done: true, value:
|
|
5741
|
+
return { done: true, value: call$3(nativeMethod, str, regexp, arg2) };
|
|
5743
5742
|
}
|
|
5744
5743
|
return { done: false };
|
|
5745
5744
|
});
|
|
@@ -5751,19 +5750,6 @@ var fixRegexpWellKnownSymbolLogic = function (KEY, exec, FORCED, SHAM) {
|
|
|
5751
5750
|
if (SHAM) createNonEnumerableProperty(RegExpPrototype[SYMBOL], 'sham', true);
|
|
5752
5751
|
};
|
|
5753
5752
|
|
|
5754
|
-
var isObject$1 = isObject$b;
|
|
5755
|
-
var classof$2 = classofRaw$2;
|
|
5756
|
-
var wellKnownSymbol$2 = wellKnownSymbol$i;
|
|
5757
|
-
|
|
5758
|
-
var MATCH = wellKnownSymbol$2('match');
|
|
5759
|
-
|
|
5760
|
-
// `IsRegExp` abstract operation
|
|
5761
|
-
// https://tc39.es/ecma262/#sec-isregexp
|
|
5762
|
-
var isRegexp = function (it) {
|
|
5763
|
-
var isRegExp;
|
|
5764
|
-
return isObject$1(it) && ((isRegExp = it[MATCH]) !== undefined ? !!isRegExp : classof$2(it) === 'RegExp');
|
|
5765
|
-
};
|
|
5766
|
-
|
|
5767
5753
|
var uncurryThis$4 = functionUncurryThis;
|
|
5768
5754
|
var toIntegerOrInfinity$2 = toIntegerOrInfinity$5;
|
|
5769
5755
|
var toString$2 = toString$4;
|
|
@@ -5813,7 +5799,7 @@ var call$2 = functionCall;
|
|
|
5813
5799
|
var anObject$2 = anObject$f;
|
|
5814
5800
|
var isCallable$1 = isCallable$l;
|
|
5815
5801
|
var classof$1 = classofRaw$2;
|
|
5816
|
-
var regexpExec
|
|
5802
|
+
var regexpExec = regexpExec$2;
|
|
5817
5803
|
|
|
5818
5804
|
var $TypeError$1 = TypeError;
|
|
5819
5805
|
|
|
@@ -5826,35 +5812,29 @@ var regexpExecAbstract = function (R, S) {
|
|
|
5826
5812
|
if (result !== null) anObject$2(result);
|
|
5827
5813
|
return result;
|
|
5828
5814
|
}
|
|
5829
|
-
if (classof$1(R) === 'RegExp') return call$2(regexpExec
|
|
5815
|
+
if (classof$1(R) === 'RegExp') return call$2(regexpExec, R, S);
|
|
5830
5816
|
throw new $TypeError$1('RegExp#exec called on incompatible receiver');
|
|
5831
5817
|
};
|
|
5832
5818
|
|
|
5833
|
-
var apply$1 = functionApply;
|
|
5834
5819
|
var call$1 = functionCall;
|
|
5835
5820
|
var uncurryThis$3 = functionUncurryThis;
|
|
5836
5821
|
var fixRegExpWellKnownSymbolLogic$1 = fixRegexpWellKnownSymbolLogic;
|
|
5837
5822
|
var anObject$1 = anObject$f;
|
|
5838
5823
|
var isNullOrUndefined$1 = isNullOrUndefined$6;
|
|
5839
|
-
var isRegExp = isRegexp;
|
|
5840
5824
|
var requireObjectCoercible$1 = requireObjectCoercible$5;
|
|
5841
5825
|
var speciesConstructor = speciesConstructor$2;
|
|
5842
5826
|
var advanceStringIndex$1 = advanceStringIndex$2;
|
|
5843
5827
|
var toLength$1 = toLength$3;
|
|
5844
5828
|
var toString$1 = toString$4;
|
|
5845
5829
|
var getMethod$1 = getMethod$5;
|
|
5846
|
-
var
|
|
5847
|
-
var callRegExpExec = regexpExecAbstract;
|
|
5848
|
-
var regexpExec = regexpExec$3;
|
|
5830
|
+
var regExpExec$1 = regexpExecAbstract;
|
|
5849
5831
|
var stickyHelpers = regexpStickyHelpers;
|
|
5850
5832
|
var fails$1 = fails$k;
|
|
5851
5833
|
|
|
5852
5834
|
var UNSUPPORTED_Y = stickyHelpers.UNSUPPORTED_Y;
|
|
5853
5835
|
var MAX_UINT32 = 0xFFFFFFFF;
|
|
5854
5836
|
var min$1 = Math.min;
|
|
5855
|
-
var $
|
|
5856
|
-
var exec = uncurryThis$3(/./.exec);
|
|
5857
|
-
var push$1 = uncurryThis$3($push);
|
|
5837
|
+
var push$1 = uncurryThis$3([].push);
|
|
5858
5838
|
var stringSlice$2 = uncurryThis$3(''.slice);
|
|
5859
5839
|
|
|
5860
5840
|
// Chrome 51 has a buggy "split" implementation when RegExp#exec !== nativeExec
|
|
@@ -5868,60 +5848,20 @@ var SPLIT_WORKS_WITH_OVERWRITTEN_EXEC = !fails$1(function () {
|
|
|
5868
5848
|
return result.length !== 2 || result[0] !== 'a' || result[1] !== 'b';
|
|
5869
5849
|
});
|
|
5870
5850
|
|
|
5851
|
+
var BUGGY = 'abbc'.split(/(b)*/)[1] === 'c' ||
|
|
5852
|
+
// eslint-disable-next-line regexp/no-empty-group -- required for testing
|
|
5853
|
+
'test'.split(/(?:)/, -1).length !== 4 ||
|
|
5854
|
+
'ab'.split(/(?:ab)*/).length !== 2 ||
|
|
5855
|
+
'.'.split(/(.?)(.?)/).length !== 4 ||
|
|
5856
|
+
// eslint-disable-next-line regexp/no-empty-capturing-group, regexp/no-empty-group -- required for testing
|
|
5857
|
+
'.'.split(/()()/).length > 1 ||
|
|
5858
|
+
''.split(/.?/).length;
|
|
5859
|
+
|
|
5871
5860
|
// @@split logic
|
|
5872
5861
|
fixRegExpWellKnownSymbolLogic$1('split', function (SPLIT, nativeSplit, maybeCallNative) {
|
|
5873
|
-
var internalSplit
|
|
5874
|
-
|
|
5875
|
-
|
|
5876
|
-
// eslint-disable-next-line regexp/no-empty-group -- required for testing
|
|
5877
|
-
'test'.split(/(?:)/, -1).length !== 4 ||
|
|
5878
|
-
'ab'.split(/(?:ab)*/).length !== 2 ||
|
|
5879
|
-
'.'.split(/(.?)(.?)/).length !== 4 ||
|
|
5880
|
-
// eslint-disable-next-line regexp/no-empty-capturing-group, regexp/no-empty-group -- required for testing
|
|
5881
|
-
'.'.split(/()()/).length > 1 ||
|
|
5882
|
-
''.split(/.?/).length
|
|
5883
|
-
) {
|
|
5884
|
-
// based on es5-shim implementation, need to rework it
|
|
5885
|
-
internalSplit = function (separator, limit) {
|
|
5886
|
-
var string = toString$1(requireObjectCoercible$1(this));
|
|
5887
|
-
var lim = limit === undefined ? MAX_UINT32 : limit >>> 0;
|
|
5888
|
-
if (lim === 0) return [];
|
|
5889
|
-
if (separator === undefined) return [string];
|
|
5890
|
-
// If `separator` is not a regex, use native split
|
|
5891
|
-
if (!isRegExp(separator)) {
|
|
5892
|
-
return call$1(nativeSplit, string, separator, lim);
|
|
5893
|
-
}
|
|
5894
|
-
var output = [];
|
|
5895
|
-
var flags = (separator.ignoreCase ? 'i' : '') +
|
|
5896
|
-
(separator.multiline ? 'm' : '') +
|
|
5897
|
-
(separator.unicode ? 'u' : '') +
|
|
5898
|
-
(separator.sticky ? 'y' : '');
|
|
5899
|
-
var lastLastIndex = 0;
|
|
5900
|
-
// Make `global` and avoid `lastIndex` issues by working with a copy
|
|
5901
|
-
var separatorCopy = new RegExp(separator.source, flags + 'g');
|
|
5902
|
-
var match, lastIndex, lastLength;
|
|
5903
|
-
while (match = call$1(regexpExec, separatorCopy, string)) {
|
|
5904
|
-
lastIndex = separatorCopy.lastIndex;
|
|
5905
|
-
if (lastIndex > lastLastIndex) {
|
|
5906
|
-
push$1(output, stringSlice$2(string, lastLastIndex, match.index));
|
|
5907
|
-
if (match.length > 1 && match.index < string.length) apply$1($push, output, arraySlice(match, 1));
|
|
5908
|
-
lastLength = match[0].length;
|
|
5909
|
-
lastLastIndex = lastIndex;
|
|
5910
|
-
if (output.length >= lim) break;
|
|
5911
|
-
}
|
|
5912
|
-
if (separatorCopy.lastIndex === match.index) separatorCopy.lastIndex++; // Avoid an infinite loop
|
|
5913
|
-
}
|
|
5914
|
-
if (lastLastIndex === string.length) {
|
|
5915
|
-
if (lastLength || !exec(separatorCopy, '')) push$1(output, '');
|
|
5916
|
-
} else push$1(output, stringSlice$2(string, lastLastIndex));
|
|
5917
|
-
return output.length > lim ? arraySlice(output, 0, lim) : output;
|
|
5918
|
-
};
|
|
5919
|
-
// Chakra, V8
|
|
5920
|
-
} else if ('0'.split(undefined, 0).length) {
|
|
5921
|
-
internalSplit = function (separator, limit) {
|
|
5922
|
-
return separator === undefined && limit === 0 ? [] : call$1(nativeSplit, this, separator, limit);
|
|
5923
|
-
};
|
|
5924
|
-
} else internalSplit = nativeSplit;
|
|
5862
|
+
var internalSplit = '0'.split(undefined, 0).length ? function (separator, limit) {
|
|
5863
|
+
return separator === undefined && limit === 0 ? [] : call$1(nativeSplit, this, separator, limit);
|
|
5864
|
+
} : nativeSplit;
|
|
5925
5865
|
|
|
5926
5866
|
return [
|
|
5927
5867
|
// `String.prototype.split` method
|
|
@@ -5941,30 +5881,30 @@ fixRegExpWellKnownSymbolLogic$1('split', function (SPLIT, nativeSplit, maybeCall
|
|
|
5941
5881
|
function (string, limit) {
|
|
5942
5882
|
var rx = anObject$1(this);
|
|
5943
5883
|
var S = toString$1(string);
|
|
5944
|
-
var res = maybeCallNative(internalSplit, rx, S, limit, internalSplit !== nativeSplit);
|
|
5945
5884
|
|
|
5946
|
-
if (
|
|
5885
|
+
if (!BUGGY) {
|
|
5886
|
+
var res = maybeCallNative(internalSplit, rx, S, limit, internalSplit !== nativeSplit);
|
|
5887
|
+
if (res.done) return res.value;
|
|
5888
|
+
}
|
|
5947
5889
|
|
|
5948
5890
|
var C = speciesConstructor(rx, RegExp);
|
|
5949
|
-
|
|
5950
5891
|
var unicodeMatching = rx.unicode;
|
|
5951
5892
|
var flags = (rx.ignoreCase ? 'i' : '') +
|
|
5952
5893
|
(rx.multiline ? 'm' : '') +
|
|
5953
5894
|
(rx.unicode ? 'u' : '') +
|
|
5954
5895
|
(UNSUPPORTED_Y ? 'g' : 'y');
|
|
5955
|
-
|
|
5956
5896
|
// ^(? + rx + ) is needed, in combination with some S slicing, to
|
|
5957
5897
|
// simulate the 'y' flag.
|
|
5958
5898
|
var splitter = new C(UNSUPPORTED_Y ? '^(?:' + rx.source + ')' : rx, flags);
|
|
5959
5899
|
var lim = limit === undefined ? MAX_UINT32 : limit >>> 0;
|
|
5960
5900
|
if (lim === 0) return [];
|
|
5961
|
-
if (S.length === 0) return
|
|
5901
|
+
if (S.length === 0) return regExpExec$1(splitter, S) === null ? [S] : [];
|
|
5962
5902
|
var p = 0;
|
|
5963
5903
|
var q = 0;
|
|
5964
5904
|
var A = [];
|
|
5965
5905
|
while (q < S.length) {
|
|
5966
5906
|
splitter.lastIndex = UNSUPPORTED_Y ? 0 : q;
|
|
5967
|
-
var z =
|
|
5907
|
+
var z = regExpExec$1(splitter, UNSUPPORTED_Y ? stringSlice$2(S, q) : S);
|
|
5968
5908
|
var e;
|
|
5969
5909
|
if (
|
|
5970
5910
|
z === null ||
|
|
@@ -5985,7 +5925,7 @@ fixRegExpWellKnownSymbolLogic$1('split', function (SPLIT, nativeSplit, maybeCall
|
|
|
5985
5925
|
return A;
|
|
5986
5926
|
}
|
|
5987
5927
|
];
|
|
5988
|
-
}, !SPLIT_WORKS_WITH_OVERWRITTEN_EXEC, UNSUPPORTED_Y);
|
|
5928
|
+
}, BUGGY || !SPLIT_WORKS_WITH_OVERWRITTEN_EXEC, UNSUPPORTED_Y);
|
|
5989
5929
|
|
|
5990
5930
|
var uncurryThis$2 = functionUncurryThis;
|
|
5991
5931
|
var toObject$1 = toObject$5;
|
|
@@ -6049,7 +5989,7 @@ var advanceStringIndex = advanceStringIndex$2;
|
|
|
6049
5989
|
var getMethod = getMethod$5;
|
|
6050
5990
|
var getSubstitution = getSubstitution$1;
|
|
6051
5991
|
var regExpExec = regexpExecAbstract;
|
|
6052
|
-
var wellKnownSymbol$1 = wellKnownSymbol$
|
|
5992
|
+
var wellKnownSymbol$1 = wellKnownSymbol$h;
|
|
6053
5993
|
|
|
6054
5994
|
var REPLACE = wellKnownSymbol$1('replace');
|
|
6055
5995
|
var max = Math.max;
|
|
@@ -7057,8 +6997,8 @@ var flattenIntoArray_1 = flattenIntoArray$1;
|
|
|
7057
6997
|
|
|
7058
6998
|
var isArray = isArray$3;
|
|
7059
6999
|
var isConstructor = isConstructor$2;
|
|
7060
|
-
var isObject = isObject$
|
|
7061
|
-
var wellKnownSymbol = wellKnownSymbol$
|
|
7000
|
+
var isObject = isObject$a;
|
|
7001
|
+
var wellKnownSymbol = wellKnownSymbol$h;
|
|
7062
7002
|
|
|
7063
7003
|
var SPECIES = wellKnownSymbol('species');
|
|
7064
7004
|
var $Array = Array;
|
|
@@ -8077,7 +8017,7 @@ function IsFirestoreModelId(validationOptions) {
|
|
|
8077
8017
|
};
|
|
8078
8018
|
}
|
|
8079
8019
|
|
|
8080
|
-
var _dec, _dec2, _dec3, _dec4, _class, _descriptor, _dec5, _dec6, _dec7, _dec8, _dec9,
|
|
8020
|
+
var _dec, _dec2, _dec3, _dec4, _class, _descriptor, _dec5, _dec6, _dec7, _dec8, _dec9, _class2, _descriptor2, _dec10, _dec11, _dec12, _dec13, _class3, _descriptor3, _dec14, _dec15, _dec16, _dec17, _dec18, _class4, _descriptor4;
|
|
8081
8021
|
|
|
8082
8022
|
/**
|
|
8083
8023
|
* Simple annotated params that implements FirestoreModelKeyRef.
|
|
@@ -8092,40 +8032,40 @@ let TargetModelParams = (_dec = Expose(), _dec2 = IsNotEmpty(), _dec3 = IsFirest
|
|
|
8092
8032
|
writable: true,
|
|
8093
8033
|
initializer: null
|
|
8094
8034
|
})), _class));
|
|
8095
|
-
let InferredTargetModelParams = (_dec5 = Expose(), _dec6 = IsOptional(), _dec7 = IsNotEmpty(), _dec8 = IsFirestoreModelKey(), _dec9 = Reflect.metadata("design:type", String), (
|
|
8035
|
+
let InferredTargetModelParams = (_dec5 = Expose(), _dec6 = IsOptional(), _dec7 = IsNotEmpty(), _dec8 = IsFirestoreModelKey(), _dec9 = Reflect.metadata("design:type", String), (_class2 = class InferredTargetModelParams {
|
|
8096
8036
|
constructor() {
|
|
8097
8037
|
_initializerDefineProperty(this, "key", _descriptor2, this);
|
|
8098
8038
|
} // FirestoreModelKey
|
|
8099
|
-
}, (_descriptor2 = _applyDecoratedDescriptor(
|
|
8039
|
+
}, (_descriptor2 = _applyDecoratedDescriptor(_class2.prototype, "key", [_dec5, _dec6, _dec7, _dec8, _dec9], {
|
|
8100
8040
|
configurable: true,
|
|
8101
8041
|
enumerable: true,
|
|
8102
8042
|
writable: true,
|
|
8103
8043
|
initializer: null
|
|
8104
|
-
})),
|
|
8044
|
+
})), _class2));
|
|
8105
8045
|
|
|
8106
8046
|
/**
|
|
8107
8047
|
* Simple annotated params that implements FirestoreModelKeyRef but key is a FirestoreModelId.
|
|
8108
8048
|
*/
|
|
8109
|
-
let TargetModelIdParams = (_dec10 = Expose(), _dec11 = IsNotEmpty(), _dec12 = IsFirestoreModelId(), _dec13 = Reflect.metadata("design:type", String), (
|
|
8049
|
+
let TargetModelIdParams = (_dec10 = Expose(), _dec11 = IsNotEmpty(), _dec12 = IsFirestoreModelId(), _dec13 = Reflect.metadata("design:type", String), (_class3 = class TargetModelIdParams {
|
|
8110
8050
|
constructor() {
|
|
8111
8051
|
_initializerDefineProperty(this, "key", _descriptor3, this);
|
|
8112
8052
|
} // FirestoreModelId;
|
|
8113
|
-
}, (_descriptor3 = _applyDecoratedDescriptor(
|
|
8053
|
+
}, (_descriptor3 = _applyDecoratedDescriptor(_class3.prototype, "key", [_dec10, _dec11, _dec12, _dec13], {
|
|
8114
8054
|
configurable: true,
|
|
8115
8055
|
enumerable: true,
|
|
8116
8056
|
writable: true,
|
|
8117
8057
|
initializer: null
|
|
8118
|
-
})),
|
|
8119
|
-
let InferredTargetModelIdParams = (_dec14 = Expose(), _dec15 = IsOptional(), _dec16 = IsNotEmpty(), _dec17 = IsFirestoreModelId(), _dec18 = Reflect.metadata("design:type", String), (
|
|
8058
|
+
})), _class3));
|
|
8059
|
+
let InferredTargetModelIdParams = (_dec14 = Expose(), _dec15 = IsOptional(), _dec16 = IsNotEmpty(), _dec17 = IsFirestoreModelId(), _dec18 = Reflect.metadata("design:type", String), (_class4 = class InferredTargetModelIdParams {
|
|
8120
8060
|
constructor() {
|
|
8121
8061
|
_initializerDefineProperty(this, "key", _descriptor4, this);
|
|
8122
8062
|
} // FirestoreModelId;
|
|
8123
|
-
}, (_descriptor4 = _applyDecoratedDescriptor(
|
|
8063
|
+
}, (_descriptor4 = _applyDecoratedDescriptor(_class4.prototype, "key", [_dec14, _dec15, _dec16, _dec17, _dec18], {
|
|
8124
8064
|
configurable: true,
|
|
8125
8065
|
enumerable: true,
|
|
8126
8066
|
writable: true,
|
|
8127
8067
|
initializer: null
|
|
8128
|
-
})),
|
|
8068
|
+
})), _class4));
|
|
8129
8069
|
|
|
8130
8070
|
/**
|
|
8131
8071
|
* Abstract AbstractModelPermissionService implementation for FirebaseModelsPermissionService.
|