@dereekb/browser 11.1.7 → 12.0.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.cjs.js +512 -324
- package/index.esm.d.ts +1 -0
- package/index.esm.js +503 -293
- package/package.json +5 -4
package/index.esm.js
CHANGED
|
@@ -21,7 +21,7 @@ var global$l =
|
|
|
21
21
|
|
|
22
22
|
var objectGetOwnPropertyDescriptor = {};
|
|
23
23
|
|
|
24
|
-
var fails$
|
|
24
|
+
var fails$f = function (exec) {
|
|
25
25
|
try {
|
|
26
26
|
return !!exec();
|
|
27
27
|
} catch (error) {
|
|
@@ -29,17 +29,17 @@ var fails$e = function (exec) {
|
|
|
29
29
|
}
|
|
30
30
|
};
|
|
31
31
|
|
|
32
|
-
var fails$
|
|
32
|
+
var fails$e = fails$f;
|
|
33
33
|
|
|
34
34
|
// Detect IE8's incomplete defineProperty implementation
|
|
35
|
-
var descriptors = !fails$
|
|
35
|
+
var descriptors = !fails$e(function () {
|
|
36
36
|
// eslint-disable-next-line es/no-object-defineproperty -- required for testing
|
|
37
37
|
return Object.defineProperty({}, 1, { get: function () { return 7; } })[1] !== 7;
|
|
38
38
|
});
|
|
39
39
|
|
|
40
|
-
var fails$
|
|
40
|
+
var fails$d = fails$f;
|
|
41
41
|
|
|
42
|
-
var functionBindNative = !fails$
|
|
42
|
+
var functionBindNative = !fails$d(function () {
|
|
43
43
|
// eslint-disable-next-line es/no-function-prototype-bind -- safe
|
|
44
44
|
var test = (function () { /* empty */ }).bind();
|
|
45
45
|
// eslint-disable-next-line no-prototype-builtins -- safe
|
|
@@ -70,7 +70,7 @@ objectPropertyIsEnumerable.f = NASHORN_BUG ? function propertyIsEnumerable(V) {
|
|
|
70
70
|
return !!descriptor && descriptor.enumerable;
|
|
71
71
|
} : $propertyIsEnumerable;
|
|
72
72
|
|
|
73
|
-
var createPropertyDescriptor$
|
|
73
|
+
var createPropertyDescriptor$3 = function (bitmap, value) {
|
|
74
74
|
return {
|
|
75
75
|
enumerable: !(bitmap & 1),
|
|
76
76
|
configurable: !(bitmap & 2),
|
|
@@ -91,24 +91,24 @@ var functionUncurryThis = NATIVE_BIND$2 ? uncurryThisWithBind : function (fn) {
|
|
|
91
91
|
};
|
|
92
92
|
};
|
|
93
93
|
|
|
94
|
-
var uncurryThis$
|
|
94
|
+
var uncurryThis$f = functionUncurryThis;
|
|
95
95
|
|
|
96
|
-
var toString$
|
|
97
|
-
var stringSlice$2 = uncurryThis$
|
|
96
|
+
var toString$5 = uncurryThis$f({}.toString);
|
|
97
|
+
var stringSlice$2 = uncurryThis$f(''.slice);
|
|
98
98
|
|
|
99
99
|
var classofRaw$2 = function (it) {
|
|
100
|
-
return stringSlice$2(toString$
|
|
100
|
+
return stringSlice$2(toString$5(it), 8, -1);
|
|
101
101
|
};
|
|
102
102
|
|
|
103
|
-
var uncurryThis$
|
|
104
|
-
var fails$
|
|
103
|
+
var uncurryThis$e = functionUncurryThis;
|
|
104
|
+
var fails$c = fails$f;
|
|
105
105
|
var classof$6 = classofRaw$2;
|
|
106
106
|
|
|
107
107
|
var $Object$3 = Object;
|
|
108
|
-
var split = uncurryThis$
|
|
108
|
+
var split = uncurryThis$e(''.split);
|
|
109
109
|
|
|
110
110
|
// fallback for non-array-like ES3 and non-enumerable old V8 strings
|
|
111
|
-
var indexedObject = fails$
|
|
111
|
+
var indexedObject = fails$c(function () {
|
|
112
112
|
// throws an error in rhino, see https://github.com/mozilla/rhino/issues/346
|
|
113
113
|
// eslint-disable-next-line no-prototype-builtins -- safe
|
|
114
114
|
return !$Object$3('z').propertyIsEnumerable(0);
|
|
@@ -128,17 +128,17 @@ var $TypeError$d = TypeError;
|
|
|
128
128
|
|
|
129
129
|
// `RequireObjectCoercible` abstract operation
|
|
130
130
|
// https://tc39.es/ecma262/#sec-requireobjectcoercible
|
|
131
|
-
var requireObjectCoercible$
|
|
131
|
+
var requireObjectCoercible$4 = function (it) {
|
|
132
132
|
if (isNullOrUndefined$4(it)) throw new $TypeError$d("Can't call method on " + it);
|
|
133
133
|
return it;
|
|
134
134
|
};
|
|
135
135
|
|
|
136
136
|
// toObject with fallback for non-array-like ES3 strings
|
|
137
137
|
var IndexedObject = indexedObject;
|
|
138
|
-
var requireObjectCoercible$
|
|
138
|
+
var requireObjectCoercible$3 = requireObjectCoercible$4;
|
|
139
139
|
|
|
140
140
|
var toIndexedObject$4 = function (it) {
|
|
141
|
-
return IndexedObject(requireObjectCoercible$
|
|
141
|
+
return IndexedObject(requireObjectCoercible$3(it));
|
|
142
142
|
};
|
|
143
143
|
|
|
144
144
|
// https://tc39.es/ecma262/#sec-IsHTMLDDA-internal-slot
|
|
@@ -147,32 +147,32 @@ var documentAll = typeof document == 'object' && document.all;
|
|
|
147
147
|
// `IsCallable` abstract operation
|
|
148
148
|
// https://tc39.es/ecma262/#sec-iscallable
|
|
149
149
|
// eslint-disable-next-line unicorn/no-typeof-undefined -- required for testing
|
|
150
|
-
var isCallable$
|
|
150
|
+
var isCallable$i = typeof documentAll == 'undefined' && documentAll !== undefined ? function (argument) {
|
|
151
151
|
return typeof argument == 'function' || argument === documentAll;
|
|
152
152
|
} : function (argument) {
|
|
153
153
|
return typeof argument == 'function';
|
|
154
154
|
};
|
|
155
155
|
|
|
156
|
-
var isCallable$
|
|
156
|
+
var isCallable$h = isCallable$i;
|
|
157
157
|
|
|
158
|
-
var isObject$
|
|
159
|
-
return typeof it == 'object' ? it !== null : isCallable$
|
|
158
|
+
var isObject$b = function (it) {
|
|
159
|
+
return typeof it == 'object' ? it !== null : isCallable$h(it);
|
|
160
160
|
};
|
|
161
161
|
|
|
162
162
|
var global$k = global$l;
|
|
163
|
-
var isCallable$
|
|
163
|
+
var isCallable$g = isCallable$i;
|
|
164
164
|
|
|
165
165
|
var aFunction = function (argument) {
|
|
166
|
-
return isCallable$
|
|
166
|
+
return isCallable$g(argument) ? argument : undefined;
|
|
167
167
|
};
|
|
168
168
|
|
|
169
|
-
var getBuiltIn$
|
|
169
|
+
var getBuiltIn$8 = function (namespace, method) {
|
|
170
170
|
return arguments.length < 2 ? aFunction(global$k[namespace]) : global$k[namespace] && global$k[namespace][method];
|
|
171
171
|
};
|
|
172
172
|
|
|
173
|
-
var uncurryThis$
|
|
173
|
+
var uncurryThis$d = functionUncurryThis;
|
|
174
174
|
|
|
175
|
-
var objectIsPrototypeOf = uncurryThis$
|
|
175
|
+
var objectIsPrototypeOf = uncurryThis$d({}.isPrototypeOf);
|
|
176
176
|
|
|
177
177
|
var engineUserAgent = typeof navigator != 'undefined' && String(navigator.userAgent) || '';
|
|
178
178
|
|
|
@@ -206,13 +206,13 @@ var engineV8Version = version;
|
|
|
206
206
|
|
|
207
207
|
/* eslint-disable es/no-symbol -- required for testing */
|
|
208
208
|
var V8_VERSION$1 = engineV8Version;
|
|
209
|
-
var fails$
|
|
209
|
+
var fails$b = fails$f;
|
|
210
210
|
var global$i = global$l;
|
|
211
211
|
|
|
212
212
|
var $String$5 = global$i.String;
|
|
213
213
|
|
|
214
214
|
// eslint-disable-next-line es/no-object-getownpropertysymbols -- required for testing
|
|
215
|
-
var symbolConstructorDetection = !!Object.getOwnPropertySymbols && !fails$
|
|
215
|
+
var symbolConstructorDetection = !!Object.getOwnPropertySymbols && !fails$b(function () {
|
|
216
216
|
var symbol = Symbol('symbol detection');
|
|
217
217
|
// Chrome 38 Symbol has incorrect toString conversion
|
|
218
218
|
// `get-own-property-symbols` polyfill symbols converted to object are not Symbol instances
|
|
@@ -230,9 +230,9 @@ var useSymbolAsUid = NATIVE_SYMBOL$1
|
|
|
230
230
|
&& !Symbol.sham
|
|
231
231
|
&& typeof Symbol.iterator == 'symbol';
|
|
232
232
|
|
|
233
|
-
var getBuiltIn$
|
|
234
|
-
var isCallable$
|
|
235
|
-
var isPrototypeOf$
|
|
233
|
+
var getBuiltIn$7 = getBuiltIn$8;
|
|
234
|
+
var isCallable$f = isCallable$i;
|
|
235
|
+
var isPrototypeOf$3 = objectIsPrototypeOf;
|
|
236
236
|
var USE_SYMBOL_AS_UID$1 = useSymbolAsUid;
|
|
237
237
|
|
|
238
238
|
var $Object$2 = Object;
|
|
@@ -240,8 +240,8 @@ var $Object$2 = Object;
|
|
|
240
240
|
var isSymbol$2 = USE_SYMBOL_AS_UID$1 ? function (it) {
|
|
241
241
|
return typeof it == 'symbol';
|
|
242
242
|
} : function (it) {
|
|
243
|
-
var $Symbol = getBuiltIn$
|
|
244
|
-
return isCallable$
|
|
243
|
+
var $Symbol = getBuiltIn$7('Symbol');
|
|
244
|
+
return isCallable$f($Symbol) && isPrototypeOf$3($Symbol.prototype, $Object$2(it));
|
|
245
245
|
};
|
|
246
246
|
|
|
247
247
|
var $String$4 = String;
|
|
@@ -254,14 +254,14 @@ var tryToString$4 = function (argument) {
|
|
|
254
254
|
}
|
|
255
255
|
};
|
|
256
256
|
|
|
257
|
-
var isCallable$
|
|
257
|
+
var isCallable$e = isCallable$i;
|
|
258
258
|
var tryToString$3 = tryToString$4;
|
|
259
259
|
|
|
260
260
|
var $TypeError$c = TypeError;
|
|
261
261
|
|
|
262
262
|
// `Assert: IsCallable(argument) is true`
|
|
263
263
|
var aCallable$8 = function (argument) {
|
|
264
|
-
if (isCallable$
|
|
264
|
+
if (isCallable$e(argument)) return argument;
|
|
265
265
|
throw new $TypeError$c(tryToString$3(argument) + ' is not a function');
|
|
266
266
|
};
|
|
267
267
|
|
|
@@ -276,8 +276,8 @@ var getMethod$4 = function (V, P) {
|
|
|
276
276
|
};
|
|
277
277
|
|
|
278
278
|
var call$d = functionCall;
|
|
279
|
-
var isCallable$
|
|
280
|
-
var isObject$
|
|
279
|
+
var isCallable$d = isCallable$i;
|
|
280
|
+
var isObject$a = isObject$b;
|
|
281
281
|
|
|
282
282
|
var $TypeError$b = TypeError;
|
|
283
283
|
|
|
@@ -285,61 +285,63 @@ var $TypeError$b = TypeError;
|
|
|
285
285
|
// https://tc39.es/ecma262/#sec-ordinarytoprimitive
|
|
286
286
|
var ordinaryToPrimitive$1 = function (input, pref) {
|
|
287
287
|
var fn, val;
|
|
288
|
-
if (pref === 'string' && isCallable$
|
|
289
|
-
if (isCallable$
|
|
290
|
-
if (pref !== 'string' && isCallable$
|
|
288
|
+
if (pref === 'string' && isCallable$d(fn = input.toString) && !isObject$a(val = call$d(fn, input))) return val;
|
|
289
|
+
if (isCallable$d(fn = input.valueOf) && !isObject$a(val = call$d(fn, input))) return val;
|
|
290
|
+
if (pref !== 'string' && isCallable$d(fn = input.toString) && !isObject$a(val = call$d(fn, input))) return val;
|
|
291
291
|
throw new $TypeError$b("Can't convert object to primitive value");
|
|
292
292
|
};
|
|
293
293
|
|
|
294
|
-
var
|
|
294
|
+
var sharedStore = {exports: {}};
|
|
295
295
|
|
|
296
296
|
var global$h = global$l;
|
|
297
297
|
|
|
298
298
|
// eslint-disable-next-line es/no-object-defineproperty -- safe
|
|
299
|
-
var defineProperty$
|
|
299
|
+
var defineProperty$4 = Object.defineProperty;
|
|
300
300
|
|
|
301
301
|
var defineGlobalProperty$3 = function (key, value) {
|
|
302
302
|
try {
|
|
303
|
-
defineProperty$
|
|
303
|
+
defineProperty$4(global$h, key, { value: value, configurable: true, writable: true });
|
|
304
304
|
} catch (error) {
|
|
305
305
|
global$h[key] = value;
|
|
306
306
|
} return value;
|
|
307
307
|
};
|
|
308
308
|
|
|
309
|
-
var
|
|
309
|
+
var globalThis$1 = global$l;
|
|
310
310
|
var defineGlobalProperty$2 = defineGlobalProperty$3;
|
|
311
311
|
|
|
312
312
|
var SHARED = '__core-js_shared__';
|
|
313
|
-
var store$3 =
|
|
313
|
+
var store$3 = sharedStore.exports = globalThis$1[SHARED] || defineGlobalProperty$2(SHARED, {});
|
|
314
314
|
|
|
315
|
-
|
|
316
|
-
|
|
317
|
-
var store$2 = sharedStore;
|
|
318
|
-
|
|
319
|
-
(shared$4.exports = function (key, value) {
|
|
320
|
-
return store$2[key] || (store$2[key] = value !== undefined ? value : {});
|
|
321
|
-
})('versions', []).push({
|
|
322
|
-
version: '3.35.1',
|
|
315
|
+
(store$3.versions || (store$3.versions = [])).push({
|
|
316
|
+
version: '3.36.1',
|
|
323
317
|
mode: 'global',
|
|
324
318
|
copyright: '© 2014-2024 Denis Pushkarev (zloirock.ru)',
|
|
325
|
-
license: 'https://github.com/zloirock/core-js/blob/v3.
|
|
319
|
+
license: 'https://github.com/zloirock/core-js/blob/v3.36.1/LICENSE',
|
|
326
320
|
source: 'https://github.com/zloirock/core-js'
|
|
327
321
|
});
|
|
328
322
|
|
|
329
|
-
var
|
|
323
|
+
var sharedStoreExports = sharedStore.exports;
|
|
324
|
+
|
|
325
|
+
var store$2 = sharedStoreExports;
|
|
326
|
+
|
|
327
|
+
var shared$4 = function (key, value) {
|
|
328
|
+
return store$2[key] || (store$2[key] = value || {});
|
|
329
|
+
};
|
|
330
|
+
|
|
331
|
+
var requireObjectCoercible$2 = requireObjectCoercible$4;
|
|
330
332
|
|
|
331
333
|
var $Object$1 = Object;
|
|
332
334
|
|
|
333
335
|
// `ToObject` abstract operation
|
|
334
336
|
// https://tc39.es/ecma262/#sec-toobject
|
|
335
337
|
var toObject$1 = function (argument) {
|
|
336
|
-
return $Object$1(requireObjectCoercible$
|
|
338
|
+
return $Object$1(requireObjectCoercible$2(argument));
|
|
337
339
|
};
|
|
338
340
|
|
|
339
|
-
var uncurryThis$
|
|
341
|
+
var uncurryThis$c = functionUncurryThis;
|
|
340
342
|
var toObject = toObject$1;
|
|
341
343
|
|
|
342
|
-
var hasOwnProperty = uncurryThis$
|
|
344
|
+
var hasOwnProperty = uncurryThis$c({}.hasOwnProperty);
|
|
343
345
|
|
|
344
346
|
// `HasOwnProperty` abstract operation
|
|
345
347
|
// https://tc39.es/ecma262/#sec-hasownproperty
|
|
@@ -348,37 +350,37 @@ var hasOwnProperty_1 = Object.hasOwn || function hasOwn(it, key) {
|
|
|
348
350
|
return hasOwnProperty(toObject(it), key);
|
|
349
351
|
};
|
|
350
352
|
|
|
351
|
-
var uncurryThis$
|
|
353
|
+
var uncurryThis$b = functionUncurryThis;
|
|
352
354
|
|
|
353
355
|
var id = 0;
|
|
354
356
|
var postfix = Math.random();
|
|
355
|
-
var toString$
|
|
357
|
+
var toString$4 = uncurryThis$b(1.0.toString);
|
|
356
358
|
|
|
357
359
|
var uid$2 = function (key) {
|
|
358
|
-
return 'Symbol(' + (key === undefined ? '' : key) + ')_' + toString$
|
|
360
|
+
return 'Symbol(' + (key === undefined ? '' : key) + ')_' + toString$4(++id + postfix, 36);
|
|
359
361
|
};
|
|
360
362
|
|
|
361
|
-
var global$
|
|
362
|
-
var shared$3 = shared$4
|
|
363
|
-
var hasOwn$
|
|
363
|
+
var global$g = global$l;
|
|
364
|
+
var shared$3 = shared$4;
|
|
365
|
+
var hasOwn$9 = hasOwnProperty_1;
|
|
364
366
|
var uid$1 = uid$2;
|
|
365
367
|
var NATIVE_SYMBOL = symbolConstructorDetection;
|
|
366
368
|
var USE_SYMBOL_AS_UID = useSymbolAsUid;
|
|
367
369
|
|
|
368
|
-
var Symbol$1 = global$
|
|
370
|
+
var Symbol$1 = global$g.Symbol;
|
|
369
371
|
var WellKnownSymbolsStore = shared$3('wks');
|
|
370
372
|
var createWellKnownSymbol = USE_SYMBOL_AS_UID ? Symbol$1['for'] || Symbol$1 : Symbol$1 && Symbol$1.withoutSetter || uid$1;
|
|
371
373
|
|
|
372
374
|
var wellKnownSymbol$b = function (name) {
|
|
373
|
-
if (!hasOwn$
|
|
374
|
-
WellKnownSymbolsStore[name] = NATIVE_SYMBOL && hasOwn$
|
|
375
|
+
if (!hasOwn$9(WellKnownSymbolsStore, name)) {
|
|
376
|
+
WellKnownSymbolsStore[name] = NATIVE_SYMBOL && hasOwn$9(Symbol$1, name)
|
|
375
377
|
? Symbol$1[name]
|
|
376
378
|
: createWellKnownSymbol('Symbol.' + name);
|
|
377
379
|
} return WellKnownSymbolsStore[name];
|
|
378
380
|
};
|
|
379
381
|
|
|
380
382
|
var call$c = functionCall;
|
|
381
|
-
var isObject$
|
|
383
|
+
var isObject$9 = isObject$b;
|
|
382
384
|
var isSymbol$1 = isSymbol$2;
|
|
383
385
|
var getMethod$3 = getMethod$4;
|
|
384
386
|
var ordinaryToPrimitive = ordinaryToPrimitive$1;
|
|
@@ -390,13 +392,13 @@ var TO_PRIMITIVE = wellKnownSymbol$a('toPrimitive');
|
|
|
390
392
|
// `ToPrimitive` abstract operation
|
|
391
393
|
// https://tc39.es/ecma262/#sec-toprimitive
|
|
392
394
|
var toPrimitive$1 = function (input, pref) {
|
|
393
|
-
if (!isObject$
|
|
395
|
+
if (!isObject$9(input) || isSymbol$1(input)) return input;
|
|
394
396
|
var exoticToPrim = getMethod$3(input, TO_PRIMITIVE);
|
|
395
397
|
var result;
|
|
396
398
|
if (exoticToPrim) {
|
|
397
399
|
if (pref === undefined) pref = 'default';
|
|
398
400
|
result = call$c(exoticToPrim, input, pref);
|
|
399
|
-
if (!isObject$
|
|
401
|
+
if (!isObject$9(result) || isSymbol$1(result)) return result;
|
|
400
402
|
throw new $TypeError$a("Can't convert object to primitive value");
|
|
401
403
|
}
|
|
402
404
|
if (pref === undefined) pref = 'number';
|
|
@@ -413,36 +415,36 @@ var toPropertyKey$2 = function (argument) {
|
|
|
413
415
|
return isSymbol(key) ? key : key + '';
|
|
414
416
|
};
|
|
415
417
|
|
|
416
|
-
var global$
|
|
417
|
-
var isObject$
|
|
418
|
+
var global$f = global$l;
|
|
419
|
+
var isObject$8 = isObject$b;
|
|
418
420
|
|
|
419
|
-
var document$3 = global$
|
|
421
|
+
var document$3 = global$f.document;
|
|
420
422
|
// typeof document.createElement is 'object' in old IE
|
|
421
|
-
var EXISTS$1 = isObject$
|
|
423
|
+
var EXISTS$1 = isObject$8(document$3) && isObject$8(document$3.createElement);
|
|
422
424
|
|
|
423
425
|
var documentCreateElement$1 = function (it) {
|
|
424
426
|
return EXISTS$1 ? document$3.createElement(it) : {};
|
|
425
427
|
};
|
|
426
428
|
|
|
427
|
-
var DESCRIPTORS$
|
|
428
|
-
var fails$
|
|
429
|
+
var DESCRIPTORS$a = descriptors;
|
|
430
|
+
var fails$a = fails$f;
|
|
429
431
|
var createElement$1 = documentCreateElement$1;
|
|
430
432
|
|
|
431
433
|
// Thanks to IE8 for its funny defineProperty
|
|
432
|
-
var ie8DomDefine = !DESCRIPTORS$
|
|
434
|
+
var ie8DomDefine = !DESCRIPTORS$a && !fails$a(function () {
|
|
433
435
|
// eslint-disable-next-line es/no-object-defineproperty -- required for testing
|
|
434
436
|
return Object.defineProperty(createElement$1('div'), 'a', {
|
|
435
437
|
get: function () { return 7; }
|
|
436
438
|
}).a !== 7;
|
|
437
439
|
});
|
|
438
440
|
|
|
439
|
-
var DESCRIPTORS$
|
|
441
|
+
var DESCRIPTORS$9 = descriptors;
|
|
440
442
|
var call$b = functionCall;
|
|
441
443
|
var propertyIsEnumerableModule = objectPropertyIsEnumerable;
|
|
442
|
-
var createPropertyDescriptor$
|
|
444
|
+
var createPropertyDescriptor$2 = createPropertyDescriptor$3;
|
|
443
445
|
var toIndexedObject$3 = toIndexedObject$4;
|
|
444
446
|
var toPropertyKey$1 = toPropertyKey$2;
|
|
445
|
-
var hasOwn$
|
|
447
|
+
var hasOwn$8 = hasOwnProperty_1;
|
|
446
448
|
var IE8_DOM_DEFINE$1 = ie8DomDefine;
|
|
447
449
|
|
|
448
450
|
// eslint-disable-next-line es/no-object-getownpropertydescriptor -- safe
|
|
@@ -450,23 +452,23 @@ var $getOwnPropertyDescriptor$1 = Object.getOwnPropertyDescriptor;
|
|
|
450
452
|
|
|
451
453
|
// `Object.getOwnPropertyDescriptor` method
|
|
452
454
|
// https://tc39.es/ecma262/#sec-object.getownpropertydescriptor
|
|
453
|
-
objectGetOwnPropertyDescriptor.f = DESCRIPTORS$
|
|
455
|
+
objectGetOwnPropertyDescriptor.f = DESCRIPTORS$9 ? $getOwnPropertyDescriptor$1 : function getOwnPropertyDescriptor(O, P) {
|
|
454
456
|
O = toIndexedObject$3(O);
|
|
455
457
|
P = toPropertyKey$1(P);
|
|
456
458
|
if (IE8_DOM_DEFINE$1) try {
|
|
457
459
|
return $getOwnPropertyDescriptor$1(O, P);
|
|
458
460
|
} catch (error) { /* empty */ }
|
|
459
|
-
if (hasOwn$
|
|
461
|
+
if (hasOwn$8(O, P)) return createPropertyDescriptor$2(!call$b(propertyIsEnumerableModule.f, O, P), O[P]);
|
|
460
462
|
};
|
|
461
463
|
|
|
462
464
|
var objectDefineProperty = {};
|
|
463
465
|
|
|
464
|
-
var DESCRIPTORS$
|
|
465
|
-
var fails$
|
|
466
|
+
var DESCRIPTORS$8 = descriptors;
|
|
467
|
+
var fails$9 = fails$f;
|
|
466
468
|
|
|
467
469
|
// V8 ~ Chrome 36-
|
|
468
470
|
// https://bugs.chromium.org/p/v8/issues/detail?id=3334
|
|
469
|
-
var v8PrototypeDefineBug = DESCRIPTORS$
|
|
471
|
+
var v8PrototypeDefineBug = DESCRIPTORS$8 && fails$9(function () {
|
|
470
472
|
// eslint-disable-next-line es/no-object-defineproperty -- required for testing
|
|
471
473
|
return Object.defineProperty(function () { /* empty */ }, 'prototype', {
|
|
472
474
|
value: 42,
|
|
@@ -474,21 +476,21 @@ var v8PrototypeDefineBug = DESCRIPTORS$7 && fails$8(function () {
|
|
|
474
476
|
}).prototype !== 42;
|
|
475
477
|
});
|
|
476
478
|
|
|
477
|
-
var isObject$
|
|
479
|
+
var isObject$7 = isObject$b;
|
|
478
480
|
|
|
479
481
|
var $String$3 = String;
|
|
480
482
|
var $TypeError$9 = TypeError;
|
|
481
483
|
|
|
482
484
|
// `Assert: Type(argument) is Object`
|
|
483
|
-
var anObject$
|
|
484
|
-
if (isObject$
|
|
485
|
+
var anObject$c = function (argument) {
|
|
486
|
+
if (isObject$7(argument)) return argument;
|
|
485
487
|
throw new $TypeError$9($String$3(argument) + ' is not an object');
|
|
486
488
|
};
|
|
487
489
|
|
|
488
|
-
var DESCRIPTORS$
|
|
490
|
+
var DESCRIPTORS$7 = descriptors;
|
|
489
491
|
var IE8_DOM_DEFINE = ie8DomDefine;
|
|
490
492
|
var V8_PROTOTYPE_DEFINE_BUG$1 = v8PrototypeDefineBug;
|
|
491
|
-
var anObject$
|
|
493
|
+
var anObject$b = anObject$c;
|
|
492
494
|
var toPropertyKey = toPropertyKey$2;
|
|
493
495
|
|
|
494
496
|
var $TypeError$8 = TypeError;
|
|
@@ -502,10 +504,10 @@ var WRITABLE = 'writable';
|
|
|
502
504
|
|
|
503
505
|
// `Object.defineProperty` method
|
|
504
506
|
// https://tc39.es/ecma262/#sec-object.defineproperty
|
|
505
|
-
objectDefineProperty.f = DESCRIPTORS$
|
|
506
|
-
anObject$
|
|
507
|
+
objectDefineProperty.f = DESCRIPTORS$7 ? V8_PROTOTYPE_DEFINE_BUG$1 ? function defineProperty(O, P, Attributes) {
|
|
508
|
+
anObject$b(O);
|
|
507
509
|
P = toPropertyKey(P);
|
|
508
|
-
anObject$
|
|
510
|
+
anObject$b(Attributes);
|
|
509
511
|
if (typeof O === 'function' && P === 'prototype' && 'value' in Attributes && WRITABLE in Attributes && !Attributes[WRITABLE]) {
|
|
510
512
|
var current = $getOwnPropertyDescriptor(O, P);
|
|
511
513
|
if (current && current[WRITABLE]) {
|
|
@@ -518,9 +520,9 @@ objectDefineProperty.f = DESCRIPTORS$6 ? V8_PROTOTYPE_DEFINE_BUG$1 ? function de
|
|
|
518
520
|
}
|
|
519
521
|
} return $defineProperty(O, P, Attributes);
|
|
520
522
|
} : $defineProperty : function defineProperty(O, P, Attributes) {
|
|
521
|
-
anObject$
|
|
523
|
+
anObject$b(O);
|
|
522
524
|
P = toPropertyKey(P);
|
|
523
|
-
anObject$
|
|
525
|
+
anObject$b(Attributes);
|
|
524
526
|
if (IE8_DOM_DEFINE) try {
|
|
525
527
|
return $defineProperty(O, P, Attributes);
|
|
526
528
|
} catch (error) { /* empty */ }
|
|
@@ -529,12 +531,12 @@ objectDefineProperty.f = DESCRIPTORS$6 ? V8_PROTOTYPE_DEFINE_BUG$1 ? function de
|
|
|
529
531
|
return O;
|
|
530
532
|
};
|
|
531
533
|
|
|
532
|
-
var DESCRIPTORS$
|
|
534
|
+
var DESCRIPTORS$6 = descriptors;
|
|
533
535
|
var definePropertyModule$3 = objectDefineProperty;
|
|
534
|
-
var createPropertyDescriptor = createPropertyDescriptor$
|
|
536
|
+
var createPropertyDescriptor$1 = createPropertyDescriptor$3;
|
|
535
537
|
|
|
536
|
-
var createNonEnumerableProperty$
|
|
537
|
-
return definePropertyModule$3.f(object, key, createPropertyDescriptor(1, value));
|
|
538
|
+
var createNonEnumerableProperty$6 = DESCRIPTORS$6 ? function (object, key, value) {
|
|
539
|
+
return definePropertyModule$3.f(object, key, createPropertyDescriptor$1(1, value));
|
|
538
540
|
} : function (object, key, value) {
|
|
539
541
|
object[key] = value;
|
|
540
542
|
return object;
|
|
@@ -542,17 +544,17 @@ var createNonEnumerableProperty$3 = DESCRIPTORS$5 ? function (object, key, value
|
|
|
542
544
|
|
|
543
545
|
var makeBuiltIn$3 = {exports: {}};
|
|
544
546
|
|
|
545
|
-
var DESCRIPTORS$
|
|
546
|
-
var hasOwn$
|
|
547
|
+
var DESCRIPTORS$5 = descriptors;
|
|
548
|
+
var hasOwn$7 = hasOwnProperty_1;
|
|
547
549
|
|
|
548
550
|
var FunctionPrototype$1 = Function.prototype;
|
|
549
551
|
// eslint-disable-next-line es/no-object-getownpropertydescriptor -- safe
|
|
550
|
-
var getDescriptor = DESCRIPTORS$
|
|
552
|
+
var getDescriptor = DESCRIPTORS$5 && Object.getOwnPropertyDescriptor;
|
|
551
553
|
|
|
552
|
-
var EXISTS = hasOwn$
|
|
554
|
+
var EXISTS = hasOwn$7(FunctionPrototype$1, 'name');
|
|
553
555
|
// additional protection from minified / mangled / dropped function names
|
|
554
556
|
var PROPER = EXISTS && (function something() { /* empty */ }).name === 'something';
|
|
555
|
-
var CONFIGURABLE = EXISTS && (!DESCRIPTORS$
|
|
557
|
+
var CONFIGURABLE = EXISTS && (!DESCRIPTORS$5 || (DESCRIPTORS$5 && getDescriptor(FunctionPrototype$1, 'name').configurable));
|
|
556
558
|
|
|
557
559
|
var functionName = {
|
|
558
560
|
EXISTS: EXISTS,
|
|
@@ -560,14 +562,14 @@ var functionName = {
|
|
|
560
562
|
CONFIGURABLE: CONFIGURABLE
|
|
561
563
|
};
|
|
562
564
|
|
|
563
|
-
var uncurryThis$
|
|
564
|
-
var isCallable$
|
|
565
|
-
var store$1 =
|
|
565
|
+
var uncurryThis$a = functionUncurryThis;
|
|
566
|
+
var isCallable$c = isCallable$i;
|
|
567
|
+
var store$1 = sharedStoreExports;
|
|
566
568
|
|
|
567
|
-
var functionToString = uncurryThis$
|
|
569
|
+
var functionToString = uncurryThis$a(Function.toString);
|
|
568
570
|
|
|
569
571
|
// this helper broken in `core-js@3.4.1-3.4.4`, so we can't use `shared` helper
|
|
570
|
-
if (!isCallable$
|
|
572
|
+
if (!isCallable$c(store$1.inspectSource)) {
|
|
571
573
|
store$1.inspectSource = function (it) {
|
|
572
574
|
return functionToString(it);
|
|
573
575
|
};
|
|
@@ -575,14 +577,14 @@ if (!isCallable$b(store$1.inspectSource)) {
|
|
|
575
577
|
|
|
576
578
|
var inspectSource$3 = store$1.inspectSource;
|
|
577
579
|
|
|
578
|
-
var global$
|
|
579
|
-
var isCallable$
|
|
580
|
+
var global$e = global$l;
|
|
581
|
+
var isCallable$b = isCallable$i;
|
|
580
582
|
|
|
581
|
-
var WeakMap$1 = global$
|
|
583
|
+
var WeakMap$1 = global$e.WeakMap;
|
|
582
584
|
|
|
583
|
-
var weakMapBasicDetection = isCallable$
|
|
585
|
+
var weakMapBasicDetection = isCallable$b(WeakMap$1) && /native code/.test(String(WeakMap$1));
|
|
584
586
|
|
|
585
|
-
var shared$2 = shared$4
|
|
587
|
+
var shared$2 = shared$4;
|
|
586
588
|
var uid = uid$2;
|
|
587
589
|
|
|
588
590
|
var keys = shared$2('keys');
|
|
@@ -594,17 +596,17 @@ var sharedKey$2 = function (key) {
|
|
|
594
596
|
var hiddenKeys$4 = {};
|
|
595
597
|
|
|
596
598
|
var NATIVE_WEAK_MAP = weakMapBasicDetection;
|
|
597
|
-
var global$
|
|
598
|
-
var isObject$
|
|
599
|
-
var createNonEnumerableProperty$
|
|
600
|
-
var hasOwn$
|
|
601
|
-
var shared$1 =
|
|
599
|
+
var global$d = global$l;
|
|
600
|
+
var isObject$6 = isObject$b;
|
|
601
|
+
var createNonEnumerableProperty$5 = createNonEnumerableProperty$6;
|
|
602
|
+
var hasOwn$6 = hasOwnProperty_1;
|
|
603
|
+
var shared$1 = sharedStoreExports;
|
|
602
604
|
var sharedKey$1 = sharedKey$2;
|
|
603
605
|
var hiddenKeys$3 = hiddenKeys$4;
|
|
604
606
|
|
|
605
607
|
var OBJECT_ALREADY_INITIALIZED = 'Object already initialized';
|
|
606
|
-
var TypeError$2 = global$
|
|
607
|
-
var WeakMap = global$
|
|
608
|
+
var TypeError$2 = global$d.TypeError;
|
|
609
|
+
var WeakMap = global$d.WeakMap;
|
|
608
610
|
var set$1, get, has;
|
|
609
611
|
|
|
610
612
|
var enforce = function (it) {
|
|
@@ -614,7 +616,7 @@ var enforce = function (it) {
|
|
|
614
616
|
var getterFor = function (TYPE) {
|
|
615
617
|
return function (it) {
|
|
616
618
|
var state;
|
|
617
|
-
if (!isObject$
|
|
619
|
+
if (!isObject$6(it) || (state = get(it)).type !== TYPE) {
|
|
618
620
|
throw new TypeError$2('Incompatible receiver, ' + TYPE + ' required');
|
|
619
621
|
} return state;
|
|
620
622
|
};
|
|
@@ -643,16 +645,16 @@ if (NATIVE_WEAK_MAP || shared$1.state) {
|
|
|
643
645
|
var STATE = sharedKey$1('state');
|
|
644
646
|
hiddenKeys$3[STATE] = true;
|
|
645
647
|
set$1 = function (it, metadata) {
|
|
646
|
-
if (hasOwn$
|
|
648
|
+
if (hasOwn$6(it, STATE)) throw new TypeError$2(OBJECT_ALREADY_INITIALIZED);
|
|
647
649
|
metadata.facade = it;
|
|
648
|
-
createNonEnumerableProperty$
|
|
650
|
+
createNonEnumerableProperty$5(it, STATE, metadata);
|
|
649
651
|
return metadata;
|
|
650
652
|
};
|
|
651
653
|
get = function (it) {
|
|
652
|
-
return hasOwn$
|
|
654
|
+
return hasOwn$6(it, STATE) ? it[STATE] : {};
|
|
653
655
|
};
|
|
654
656
|
has = function (it) {
|
|
655
|
-
return hasOwn$
|
|
657
|
+
return hasOwn$6(it, STATE);
|
|
656
658
|
};
|
|
657
659
|
}
|
|
658
660
|
|
|
@@ -664,11 +666,11 @@ var internalState = {
|
|
|
664
666
|
getterFor: getterFor
|
|
665
667
|
};
|
|
666
668
|
|
|
667
|
-
var uncurryThis$
|
|
668
|
-
var fails$
|
|
669
|
-
var isCallable$
|
|
670
|
-
var hasOwn$
|
|
671
|
-
var DESCRIPTORS$
|
|
669
|
+
var uncurryThis$9 = functionUncurryThis;
|
|
670
|
+
var fails$8 = fails$f;
|
|
671
|
+
var isCallable$a = isCallable$i;
|
|
672
|
+
var hasOwn$5 = hasOwnProperty_1;
|
|
673
|
+
var DESCRIPTORS$4 = descriptors;
|
|
672
674
|
var CONFIGURABLE_FUNCTION_NAME = functionName.CONFIGURABLE;
|
|
673
675
|
var inspectSource$2 = inspectSource$3;
|
|
674
676
|
var InternalStateModule$1 = internalState;
|
|
@@ -677,38 +679,38 @@ var enforceInternalState = InternalStateModule$1.enforce;
|
|
|
677
679
|
var getInternalState$1 = InternalStateModule$1.get;
|
|
678
680
|
var $String$2 = String;
|
|
679
681
|
// eslint-disable-next-line es/no-object-defineproperty -- safe
|
|
680
|
-
var defineProperty$
|
|
681
|
-
var stringSlice$1 = uncurryThis$
|
|
682
|
-
var replace$
|
|
683
|
-
var join = uncurryThis$
|
|
682
|
+
var defineProperty$3 = Object.defineProperty;
|
|
683
|
+
var stringSlice$1 = uncurryThis$9(''.slice);
|
|
684
|
+
var replace$2 = uncurryThis$9(''.replace);
|
|
685
|
+
var join = uncurryThis$9([].join);
|
|
684
686
|
|
|
685
|
-
var CONFIGURABLE_LENGTH = DESCRIPTORS$
|
|
686
|
-
return defineProperty$
|
|
687
|
+
var CONFIGURABLE_LENGTH = DESCRIPTORS$4 && !fails$8(function () {
|
|
688
|
+
return defineProperty$3(function () { /* empty */ }, 'length', { value: 8 }).length !== 8;
|
|
687
689
|
});
|
|
688
690
|
|
|
689
691
|
var TEMPLATE = String(String).split('String');
|
|
690
692
|
|
|
691
693
|
var makeBuiltIn$2 = makeBuiltIn$3.exports = function (value, name, options) {
|
|
692
694
|
if (stringSlice$1($String$2(name), 0, 7) === 'Symbol(') {
|
|
693
|
-
name = '[' + replace$
|
|
695
|
+
name = '[' + replace$2($String$2(name), /^Symbol\(([^)]*)\).*$/, '$1') + ']';
|
|
694
696
|
}
|
|
695
697
|
if (options && options.getter) name = 'get ' + name;
|
|
696
698
|
if (options && options.setter) name = 'set ' + name;
|
|
697
|
-
if (!hasOwn$
|
|
698
|
-
if (DESCRIPTORS$
|
|
699
|
+
if (!hasOwn$5(value, 'name') || (CONFIGURABLE_FUNCTION_NAME && value.name !== name)) {
|
|
700
|
+
if (DESCRIPTORS$4) defineProperty$3(value, 'name', { value: name, configurable: true });
|
|
699
701
|
else value.name = name;
|
|
700
702
|
}
|
|
701
|
-
if (CONFIGURABLE_LENGTH && options && hasOwn$
|
|
702
|
-
defineProperty$
|
|
703
|
+
if (CONFIGURABLE_LENGTH && options && hasOwn$5(options, 'arity') && value.length !== options.arity) {
|
|
704
|
+
defineProperty$3(value, 'length', { value: options.arity });
|
|
703
705
|
}
|
|
704
706
|
try {
|
|
705
|
-
if (options && hasOwn$
|
|
706
|
-
if (DESCRIPTORS$
|
|
707
|
+
if (options && hasOwn$5(options, 'constructor') && options.constructor) {
|
|
708
|
+
if (DESCRIPTORS$4) defineProperty$3(value, 'prototype', { writable: false });
|
|
707
709
|
// in V8 ~ Chrome 53, prototypes of some methods, like `Array.prototype.values`, are non-writable
|
|
708
710
|
} else if (value.prototype) value.prototype = undefined;
|
|
709
711
|
} catch (error) { /* empty */ }
|
|
710
712
|
var state = enforceInternalState(value);
|
|
711
|
-
if (!hasOwn$
|
|
713
|
+
if (!hasOwn$5(state, 'source')) {
|
|
712
714
|
state.source = join(TEMPLATE, typeof name == 'string' ? name : '');
|
|
713
715
|
} return value;
|
|
714
716
|
};
|
|
@@ -716,19 +718,21 @@ var makeBuiltIn$2 = makeBuiltIn$3.exports = function (value, name, options) {
|
|
|
716
718
|
// add fake Function#toString for correct work wrapped methods / constructors with methods like LoDash isNative
|
|
717
719
|
// eslint-disable-next-line no-extend-native -- required
|
|
718
720
|
Function.prototype.toString = makeBuiltIn$2(function toString() {
|
|
719
|
-
return isCallable$
|
|
721
|
+
return isCallable$a(this) && getInternalState$1(this).source || inspectSource$2(this);
|
|
720
722
|
}, 'toString');
|
|
721
723
|
|
|
722
|
-
var
|
|
724
|
+
var makeBuiltInExports = makeBuiltIn$3.exports;
|
|
725
|
+
|
|
726
|
+
var isCallable$9 = isCallable$i;
|
|
723
727
|
var definePropertyModule$2 = objectDefineProperty;
|
|
724
|
-
var makeBuiltIn$1 =
|
|
728
|
+
var makeBuiltIn$1 = makeBuiltInExports;
|
|
725
729
|
var defineGlobalProperty$1 = defineGlobalProperty$3;
|
|
726
730
|
|
|
727
731
|
var defineBuiltIn$4 = function (O, key, value, options) {
|
|
728
732
|
if (!options) options = {};
|
|
729
733
|
var simple = options.enumerable;
|
|
730
734
|
var name = options.name !== undefined ? options.name : key;
|
|
731
|
-
if (isCallable$
|
|
735
|
+
if (isCallable$9(value)) makeBuiltIn$1(value, name, options);
|
|
732
736
|
if (options.global) {
|
|
733
737
|
if (simple) O[key] = value;
|
|
734
738
|
else defineGlobalProperty$1(key, value);
|
|
@@ -811,6 +815,7 @@ var createMethod = function (IS_INCLUDES) {
|
|
|
811
815
|
return function ($this, el, fromIndex) {
|
|
812
816
|
var O = toIndexedObject$2($this);
|
|
813
817
|
var length = lengthOfArrayLike$1(O);
|
|
818
|
+
if (length === 0) return !IS_INCLUDES && -1;
|
|
814
819
|
var index = toAbsoluteIndex(fromIndex, length);
|
|
815
820
|
var value;
|
|
816
821
|
// Array#includes uses SameValueZero equality algorithm
|
|
@@ -835,22 +840,22 @@ var arrayIncludes = {
|
|
|
835
840
|
indexOf: createMethod(false)
|
|
836
841
|
};
|
|
837
842
|
|
|
838
|
-
var uncurryThis$
|
|
839
|
-
var hasOwn$
|
|
843
|
+
var uncurryThis$8 = functionUncurryThis;
|
|
844
|
+
var hasOwn$4 = hasOwnProperty_1;
|
|
840
845
|
var toIndexedObject$1 = toIndexedObject$4;
|
|
841
846
|
var indexOf$1 = arrayIncludes.indexOf;
|
|
842
847
|
var hiddenKeys$2 = hiddenKeys$4;
|
|
843
848
|
|
|
844
|
-
var push = uncurryThis$
|
|
849
|
+
var push = uncurryThis$8([].push);
|
|
845
850
|
|
|
846
851
|
var objectKeysInternal = function (object, names) {
|
|
847
852
|
var O = toIndexedObject$1(object);
|
|
848
853
|
var i = 0;
|
|
849
854
|
var result = [];
|
|
850
855
|
var key;
|
|
851
|
-
for (key in O) !hasOwn$
|
|
856
|
+
for (key in O) !hasOwn$4(hiddenKeys$2, key) && hasOwn$4(O, key) && push(result, key);
|
|
852
857
|
// Don't enum bug & hidden keys
|
|
853
|
-
while (names.length > i) if (hasOwn$
|
|
858
|
+
while (names.length > i) if (hasOwn$4(O, key = names[i++])) {
|
|
854
859
|
~indexOf$1(result, key) || push(result, key);
|
|
855
860
|
}
|
|
856
861
|
return result;
|
|
@@ -884,40 +889,40 @@ var objectGetOwnPropertySymbols = {};
|
|
|
884
889
|
// eslint-disable-next-line es/no-object-getownpropertysymbols -- safe
|
|
885
890
|
objectGetOwnPropertySymbols.f = Object.getOwnPropertySymbols;
|
|
886
891
|
|
|
887
|
-
var getBuiltIn$
|
|
888
|
-
var uncurryThis$
|
|
892
|
+
var getBuiltIn$6 = getBuiltIn$8;
|
|
893
|
+
var uncurryThis$7 = functionUncurryThis;
|
|
889
894
|
var getOwnPropertyNamesModule = objectGetOwnPropertyNames;
|
|
890
895
|
var getOwnPropertySymbolsModule = objectGetOwnPropertySymbols;
|
|
891
|
-
var anObject$
|
|
896
|
+
var anObject$a = anObject$c;
|
|
892
897
|
|
|
893
|
-
var concat = uncurryThis$
|
|
898
|
+
var concat = uncurryThis$7([].concat);
|
|
894
899
|
|
|
895
900
|
// all object keys, includes non-enumerable and symbols
|
|
896
|
-
var ownKeys$1 = getBuiltIn$
|
|
897
|
-
var keys = getOwnPropertyNamesModule.f(anObject$
|
|
901
|
+
var ownKeys$1 = getBuiltIn$6('Reflect', 'ownKeys') || function ownKeys(it) {
|
|
902
|
+
var keys = getOwnPropertyNamesModule.f(anObject$a(it));
|
|
898
903
|
var getOwnPropertySymbols = getOwnPropertySymbolsModule.f;
|
|
899
904
|
return getOwnPropertySymbols ? concat(keys, getOwnPropertySymbols(it)) : keys;
|
|
900
905
|
};
|
|
901
906
|
|
|
902
|
-
var hasOwn$
|
|
907
|
+
var hasOwn$3 = hasOwnProperty_1;
|
|
903
908
|
var ownKeys = ownKeys$1;
|
|
904
909
|
var getOwnPropertyDescriptorModule = objectGetOwnPropertyDescriptor;
|
|
905
910
|
var definePropertyModule$1 = objectDefineProperty;
|
|
906
911
|
|
|
907
|
-
var copyConstructorProperties$
|
|
912
|
+
var copyConstructorProperties$2 = function (target, source, exceptions) {
|
|
908
913
|
var keys = ownKeys(source);
|
|
909
914
|
var defineProperty = definePropertyModule$1.f;
|
|
910
915
|
var getOwnPropertyDescriptor = getOwnPropertyDescriptorModule.f;
|
|
911
916
|
for (var i = 0; i < keys.length; i++) {
|
|
912
917
|
var key = keys[i];
|
|
913
|
-
if (!hasOwn$
|
|
918
|
+
if (!hasOwn$3(target, key) && !(exceptions && hasOwn$3(exceptions, key))) {
|
|
914
919
|
defineProperty(target, key, getOwnPropertyDescriptor(source, key));
|
|
915
920
|
}
|
|
916
921
|
}
|
|
917
922
|
};
|
|
918
923
|
|
|
919
|
-
var fails$
|
|
920
|
-
var isCallable$
|
|
924
|
+
var fails$7 = fails$f;
|
|
925
|
+
var isCallable$8 = isCallable$i;
|
|
921
926
|
|
|
922
927
|
var replacement = /#|\.prototype\./;
|
|
923
928
|
|
|
@@ -925,7 +930,7 @@ var isForced$2 = function (feature, detection) {
|
|
|
925
930
|
var value = data[normalize(feature)];
|
|
926
931
|
return value === POLYFILL ? true
|
|
927
932
|
: value === NATIVE ? false
|
|
928
|
-
: isCallable$
|
|
933
|
+
: isCallable$8(detection) ? fails$7(detection)
|
|
929
934
|
: !!detection;
|
|
930
935
|
};
|
|
931
936
|
|
|
@@ -939,12 +944,12 @@ var POLYFILL = isForced$2.POLYFILL = 'P';
|
|
|
939
944
|
|
|
940
945
|
var isForced_1 = isForced$2;
|
|
941
946
|
|
|
942
|
-
var global$
|
|
947
|
+
var global$c = global$l;
|
|
943
948
|
var getOwnPropertyDescriptor$1 = objectGetOwnPropertyDescriptor.f;
|
|
944
|
-
var createNonEnumerableProperty$
|
|
949
|
+
var createNonEnumerableProperty$4 = createNonEnumerableProperty$6;
|
|
945
950
|
var defineBuiltIn$3 = defineBuiltIn$4;
|
|
946
951
|
var defineGlobalProperty = defineGlobalProperty$3;
|
|
947
|
-
var copyConstructorProperties = copyConstructorProperties$
|
|
952
|
+
var copyConstructorProperties$1 = copyConstructorProperties$2;
|
|
948
953
|
var isForced$1 = isForced_1;
|
|
949
954
|
|
|
950
955
|
/*
|
|
@@ -968,11 +973,11 @@ var _export = function (options, source) {
|
|
|
968
973
|
var STATIC = options.stat;
|
|
969
974
|
var FORCED, target, key, targetProperty, sourceProperty, descriptor;
|
|
970
975
|
if (GLOBAL) {
|
|
971
|
-
target = global$
|
|
976
|
+
target = global$c;
|
|
972
977
|
} else if (STATIC) {
|
|
973
|
-
target = global$
|
|
978
|
+
target = global$c[TARGET] || defineGlobalProperty(TARGET, {});
|
|
974
979
|
} else {
|
|
975
|
-
target = global$
|
|
980
|
+
target = global$c[TARGET] && global$c[TARGET].prototype;
|
|
976
981
|
}
|
|
977
982
|
if (target) for (key in source) {
|
|
978
983
|
sourceProperty = source[key];
|
|
@@ -984,35 +989,41 @@ var _export = function (options, source) {
|
|
|
984
989
|
// contained in target
|
|
985
990
|
if (!FORCED && targetProperty !== undefined) {
|
|
986
991
|
if (typeof sourceProperty == typeof targetProperty) continue;
|
|
987
|
-
copyConstructorProperties(sourceProperty, targetProperty);
|
|
992
|
+
copyConstructorProperties$1(sourceProperty, targetProperty);
|
|
988
993
|
}
|
|
989
994
|
// add a flag to not completely full polyfills
|
|
990
995
|
if (options.sham || (targetProperty && targetProperty.sham)) {
|
|
991
|
-
createNonEnumerableProperty$
|
|
996
|
+
createNonEnumerableProperty$4(sourceProperty, 'sham', true);
|
|
992
997
|
}
|
|
993
998
|
defineBuiltIn$3(target, key, sourceProperty, options);
|
|
994
999
|
}
|
|
995
1000
|
};
|
|
996
1001
|
|
|
997
|
-
var
|
|
998
|
-
var classof$5 = classofRaw$2;
|
|
1002
|
+
var NATIVE_BIND$1 = functionBindNative;
|
|
999
1003
|
|
|
1000
|
-
var
|
|
1004
|
+
var FunctionPrototype = Function.prototype;
|
|
1005
|
+
var apply$2 = FunctionPrototype.apply;
|
|
1006
|
+
var call$a = FunctionPrototype.call;
|
|
1001
1007
|
|
|
1002
|
-
|
|
1008
|
+
// eslint-disable-next-line es/no-reflect -- safe
|
|
1009
|
+
var functionApply = typeof Reflect == 'object' && Reflect.apply || (NATIVE_BIND$1 ? call$a.bind(apply$2) : function () {
|
|
1010
|
+
return call$a.apply(apply$2, arguments);
|
|
1011
|
+
});
|
|
1012
|
+
|
|
1013
|
+
var uncurryThis$6 = functionUncurryThis;
|
|
1003
1014
|
var aCallable$6 = aCallable$8;
|
|
1004
1015
|
|
|
1005
1016
|
var functionUncurryThisAccessor = function (object, key, method) {
|
|
1006
1017
|
try {
|
|
1007
1018
|
// eslint-disable-next-line es/no-object-getownpropertydescriptor -- safe
|
|
1008
|
-
return uncurryThis$
|
|
1019
|
+
return uncurryThis$6(aCallable$6(Object.getOwnPropertyDescriptor(object, key)[method]));
|
|
1009
1020
|
} catch (error) { /* empty */ }
|
|
1010
1021
|
};
|
|
1011
1022
|
|
|
1012
|
-
var isObject$
|
|
1023
|
+
var isObject$5 = isObject$b;
|
|
1013
1024
|
|
|
1014
1025
|
var isPossiblePrototype$1 = function (argument) {
|
|
1015
|
-
return isObject$
|
|
1026
|
+
return isObject$5(argument) || argument === null;
|
|
1016
1027
|
};
|
|
1017
1028
|
|
|
1018
1029
|
var isPossiblePrototype = isPossiblePrototype$1;
|
|
@@ -1027,7 +1038,8 @@ var aPossiblePrototype$1 = function (argument) {
|
|
|
1027
1038
|
|
|
1028
1039
|
/* eslint-disable no-proto -- safe */
|
|
1029
1040
|
var uncurryThisAccessor = functionUncurryThisAccessor;
|
|
1030
|
-
var
|
|
1041
|
+
var isObject$4 = isObject$b;
|
|
1042
|
+
var requireObjectCoercible$1 = requireObjectCoercible$4;
|
|
1031
1043
|
var aPossiblePrototype = aPossiblePrototype$1;
|
|
1032
1044
|
|
|
1033
1045
|
// `Object.setPrototypeOf` method
|
|
@@ -1044,28 +1056,291 @@ var objectSetPrototypeOf = Object.setPrototypeOf || ('__proto__' in {} ? functio
|
|
|
1044
1056
|
CORRECT_SETTER = test instanceof Array;
|
|
1045
1057
|
} catch (error) { /* empty */ }
|
|
1046
1058
|
return function setPrototypeOf(O, proto) {
|
|
1047
|
-
|
|
1059
|
+
requireObjectCoercible$1(O);
|
|
1048
1060
|
aPossiblePrototype(proto);
|
|
1061
|
+
if (!isObject$4(O)) return O;
|
|
1049
1062
|
if (CORRECT_SETTER) setter(O, proto);
|
|
1050
1063
|
else O.__proto__ = proto;
|
|
1051
1064
|
return O;
|
|
1052
1065
|
};
|
|
1053
1066
|
}() : undefined);
|
|
1054
1067
|
|
|
1055
|
-
var defineProperty$
|
|
1056
|
-
|
|
1068
|
+
var defineProperty$2 = objectDefineProperty.f;
|
|
1069
|
+
|
|
1070
|
+
var proxyAccessor$1 = function (Target, Source, key) {
|
|
1071
|
+
key in Target || defineProperty$2(Target, key, {
|
|
1072
|
+
configurable: true,
|
|
1073
|
+
get: function () { return Source[key]; },
|
|
1074
|
+
set: function (it) { Source[key] = it; }
|
|
1075
|
+
});
|
|
1076
|
+
};
|
|
1077
|
+
|
|
1078
|
+
var isCallable$7 = isCallable$i;
|
|
1079
|
+
var isObject$3 = isObject$b;
|
|
1080
|
+
var setPrototypeOf$2 = objectSetPrototypeOf;
|
|
1081
|
+
|
|
1082
|
+
// makes subclassing work correct for wrapped built-ins
|
|
1083
|
+
var inheritIfRequired$1 = function ($this, dummy, Wrapper) {
|
|
1084
|
+
var NewTarget, NewTargetPrototype;
|
|
1085
|
+
if (
|
|
1086
|
+
// it can work only with native `setPrototypeOf`
|
|
1087
|
+
setPrototypeOf$2 &&
|
|
1088
|
+
// we haven't completely correct pre-ES6 way for getting `new.target`, so use this
|
|
1089
|
+
isCallable$7(NewTarget = dummy.constructor) &&
|
|
1090
|
+
NewTarget !== Wrapper &&
|
|
1091
|
+
isObject$3(NewTargetPrototype = NewTarget.prototype) &&
|
|
1092
|
+
NewTargetPrototype !== Wrapper.prototype
|
|
1093
|
+
) setPrototypeOf$2($this, NewTargetPrototype);
|
|
1094
|
+
return $this;
|
|
1095
|
+
};
|
|
1096
|
+
|
|
1057
1097
|
var wellKnownSymbol$9 = wellKnownSymbol$b;
|
|
1058
1098
|
|
|
1059
1099
|
var TO_STRING_TAG$2 = wellKnownSymbol$9('toStringTag');
|
|
1100
|
+
var test = {};
|
|
1101
|
+
|
|
1102
|
+
test[TO_STRING_TAG$2] = 'z';
|
|
1103
|
+
|
|
1104
|
+
var toStringTagSupport = String(test) === '[object z]';
|
|
1105
|
+
|
|
1106
|
+
var TO_STRING_TAG_SUPPORT = toStringTagSupport;
|
|
1107
|
+
var isCallable$6 = isCallable$i;
|
|
1108
|
+
var classofRaw$1 = classofRaw$2;
|
|
1109
|
+
var wellKnownSymbol$8 = wellKnownSymbol$b;
|
|
1110
|
+
|
|
1111
|
+
var TO_STRING_TAG$1 = wellKnownSymbol$8('toStringTag');
|
|
1112
|
+
var $Object = Object;
|
|
1113
|
+
|
|
1114
|
+
// ES3 wrong here
|
|
1115
|
+
var CORRECT_ARGUMENTS = classofRaw$1(function () { return arguments; }()) === 'Arguments';
|
|
1116
|
+
|
|
1117
|
+
// fallback for IE11 Script Access Denied error
|
|
1118
|
+
var tryGet = function (it, key) {
|
|
1119
|
+
try {
|
|
1120
|
+
return it[key];
|
|
1121
|
+
} catch (error) { /* empty */ }
|
|
1122
|
+
};
|
|
1123
|
+
|
|
1124
|
+
// getting tag from ES6+ `Object.prototype.toString`
|
|
1125
|
+
var classof$5 = TO_STRING_TAG_SUPPORT ? classofRaw$1 : function (it) {
|
|
1126
|
+
var O, tag, result;
|
|
1127
|
+
return it === undefined ? 'Undefined' : it === null ? 'Null'
|
|
1128
|
+
// @@toStringTag case
|
|
1129
|
+
: typeof (tag = tryGet(O = $Object(it), TO_STRING_TAG$1)) == 'string' ? tag
|
|
1130
|
+
// builtinTag case
|
|
1131
|
+
: CORRECT_ARGUMENTS ? classofRaw$1(O)
|
|
1132
|
+
// ES3 arguments fallback
|
|
1133
|
+
: (result = classofRaw$1(O)) === 'Object' && isCallable$6(O.callee) ? 'Arguments' : result;
|
|
1134
|
+
};
|
|
1135
|
+
|
|
1136
|
+
var classof$4 = classof$5;
|
|
1137
|
+
|
|
1138
|
+
var $String = String;
|
|
1139
|
+
|
|
1140
|
+
var toString$3 = function (argument) {
|
|
1141
|
+
if (classof$4(argument) === 'Symbol') throw new TypeError('Cannot convert a Symbol value to a string');
|
|
1142
|
+
return $String(argument);
|
|
1143
|
+
};
|
|
1144
|
+
|
|
1145
|
+
var toString$2 = toString$3;
|
|
1146
|
+
|
|
1147
|
+
var normalizeStringArgument$1 = function (argument, $default) {
|
|
1148
|
+
return argument === undefined ? arguments.length < 2 ? '' : $default : toString$2(argument);
|
|
1149
|
+
};
|
|
1150
|
+
|
|
1151
|
+
var isObject$2 = isObject$b;
|
|
1152
|
+
var createNonEnumerableProperty$3 = createNonEnumerableProperty$6;
|
|
1153
|
+
|
|
1154
|
+
// `InstallErrorCause` abstract operation
|
|
1155
|
+
// https://tc39.es/proposal-error-cause/#sec-errorobjects-install-error-cause
|
|
1156
|
+
var installErrorCause$1 = function (O, options) {
|
|
1157
|
+
if (isObject$2(options) && 'cause' in options) {
|
|
1158
|
+
createNonEnumerableProperty$3(O, 'cause', options.cause);
|
|
1159
|
+
}
|
|
1160
|
+
};
|
|
1161
|
+
|
|
1162
|
+
var uncurryThis$5 = functionUncurryThis;
|
|
1163
|
+
|
|
1164
|
+
var $Error = Error;
|
|
1165
|
+
var replace$1 = uncurryThis$5(''.replace);
|
|
1166
|
+
|
|
1167
|
+
var TEST = (function (arg) { return String(new $Error(arg).stack); })('zxcasd');
|
|
1168
|
+
// eslint-disable-next-line redos/no-vulnerable -- safe
|
|
1169
|
+
var V8_OR_CHAKRA_STACK_ENTRY = /\n\s*at [^:]*:[^\n]*/;
|
|
1170
|
+
var IS_V8_OR_CHAKRA_STACK = V8_OR_CHAKRA_STACK_ENTRY.test(TEST);
|
|
1171
|
+
|
|
1172
|
+
var errorStackClear = function (stack, dropEntries) {
|
|
1173
|
+
if (IS_V8_OR_CHAKRA_STACK && typeof stack == 'string' && !$Error.prepareStackTrace) {
|
|
1174
|
+
while (dropEntries--) stack = replace$1(stack, V8_OR_CHAKRA_STACK_ENTRY, '');
|
|
1175
|
+
} return stack;
|
|
1176
|
+
};
|
|
1177
|
+
|
|
1178
|
+
var fails$6 = fails$f;
|
|
1179
|
+
var createPropertyDescriptor = createPropertyDescriptor$3;
|
|
1180
|
+
|
|
1181
|
+
var errorStackInstallable = !fails$6(function () {
|
|
1182
|
+
var error = new Error('a');
|
|
1183
|
+
if (!('stack' in error)) return true;
|
|
1184
|
+
// eslint-disable-next-line es/no-object-defineproperty -- safe
|
|
1185
|
+
Object.defineProperty(error, 'stack', createPropertyDescriptor(1, 7));
|
|
1186
|
+
return error.stack !== 7;
|
|
1187
|
+
});
|
|
1188
|
+
|
|
1189
|
+
var createNonEnumerableProperty$2 = createNonEnumerableProperty$6;
|
|
1190
|
+
var clearErrorStack = errorStackClear;
|
|
1191
|
+
var ERROR_STACK_INSTALLABLE = errorStackInstallable;
|
|
1192
|
+
|
|
1193
|
+
// non-standard V8
|
|
1194
|
+
var captureStackTrace = Error.captureStackTrace;
|
|
1195
|
+
|
|
1196
|
+
var errorStackInstall = function (error, C, stack, dropEntries) {
|
|
1197
|
+
if (ERROR_STACK_INSTALLABLE) {
|
|
1198
|
+
if (captureStackTrace) captureStackTrace(error, C);
|
|
1199
|
+
else createNonEnumerableProperty$2(error, 'stack', clearErrorStack(stack, dropEntries));
|
|
1200
|
+
}
|
|
1201
|
+
};
|
|
1202
|
+
|
|
1203
|
+
var getBuiltIn$5 = getBuiltIn$8;
|
|
1204
|
+
var hasOwn$2 = hasOwnProperty_1;
|
|
1205
|
+
var createNonEnumerableProperty$1 = createNonEnumerableProperty$6;
|
|
1206
|
+
var isPrototypeOf$2 = objectIsPrototypeOf;
|
|
1207
|
+
var setPrototypeOf$1 = objectSetPrototypeOf;
|
|
1208
|
+
var copyConstructorProperties = copyConstructorProperties$2;
|
|
1209
|
+
var proxyAccessor = proxyAccessor$1;
|
|
1210
|
+
var inheritIfRequired = inheritIfRequired$1;
|
|
1211
|
+
var normalizeStringArgument = normalizeStringArgument$1;
|
|
1212
|
+
var installErrorCause = installErrorCause$1;
|
|
1213
|
+
var installErrorStack = errorStackInstall;
|
|
1214
|
+
var DESCRIPTORS$3 = descriptors;
|
|
1215
|
+
|
|
1216
|
+
var wrapErrorConstructorWithCause$1 = function (FULL_NAME, wrapper, FORCED, IS_AGGREGATE_ERROR) {
|
|
1217
|
+
var STACK_TRACE_LIMIT = 'stackTraceLimit';
|
|
1218
|
+
var OPTIONS_POSITION = IS_AGGREGATE_ERROR ? 2 : 1;
|
|
1219
|
+
var path = FULL_NAME.split('.');
|
|
1220
|
+
var ERROR_NAME = path[path.length - 1];
|
|
1221
|
+
var OriginalError = getBuiltIn$5.apply(null, path);
|
|
1222
|
+
|
|
1223
|
+
if (!OriginalError) return;
|
|
1224
|
+
|
|
1225
|
+
var OriginalErrorPrototype = OriginalError.prototype;
|
|
1226
|
+
|
|
1227
|
+
// V8 9.3- bug https://bugs.chromium.org/p/v8/issues/detail?id=12006
|
|
1228
|
+
if (hasOwn$2(OriginalErrorPrototype, 'cause')) delete OriginalErrorPrototype.cause;
|
|
1229
|
+
|
|
1230
|
+
if (!FORCED) return OriginalError;
|
|
1231
|
+
|
|
1232
|
+
var BaseError = getBuiltIn$5('Error');
|
|
1233
|
+
|
|
1234
|
+
var WrappedError = wrapper(function (a, b) {
|
|
1235
|
+
var message = normalizeStringArgument(IS_AGGREGATE_ERROR ? b : a, undefined);
|
|
1236
|
+
var result = IS_AGGREGATE_ERROR ? new OriginalError(a) : new OriginalError();
|
|
1237
|
+
if (message !== undefined) createNonEnumerableProperty$1(result, 'message', message);
|
|
1238
|
+
installErrorStack(result, WrappedError, result.stack, 2);
|
|
1239
|
+
if (this && isPrototypeOf$2(OriginalErrorPrototype, this)) inheritIfRequired(result, this, WrappedError);
|
|
1240
|
+
if (arguments.length > OPTIONS_POSITION) installErrorCause(result, arguments[OPTIONS_POSITION]);
|
|
1241
|
+
return result;
|
|
1242
|
+
});
|
|
1243
|
+
|
|
1244
|
+
WrappedError.prototype = OriginalErrorPrototype;
|
|
1245
|
+
|
|
1246
|
+
if (ERROR_NAME !== 'Error') {
|
|
1247
|
+
if (setPrototypeOf$1) setPrototypeOf$1(WrappedError, BaseError);
|
|
1248
|
+
else copyConstructorProperties(WrappedError, BaseError, { name: true });
|
|
1249
|
+
} else if (DESCRIPTORS$3 && STACK_TRACE_LIMIT in OriginalError) {
|
|
1250
|
+
proxyAccessor(WrappedError, OriginalError, STACK_TRACE_LIMIT);
|
|
1251
|
+
proxyAccessor(WrappedError, OriginalError, 'prepareStackTrace');
|
|
1252
|
+
}
|
|
1253
|
+
|
|
1254
|
+
copyConstructorProperties(WrappedError, OriginalError);
|
|
1255
|
+
|
|
1256
|
+
try {
|
|
1257
|
+
// Safari 13- bug: WebAssembly errors does not have a proper `.name`
|
|
1258
|
+
if (OriginalErrorPrototype.name !== ERROR_NAME) {
|
|
1259
|
+
createNonEnumerableProperty$1(OriginalErrorPrototype, 'name', ERROR_NAME);
|
|
1260
|
+
}
|
|
1261
|
+
OriginalErrorPrototype.constructor = WrappedError;
|
|
1262
|
+
} catch (error) { /* empty */ }
|
|
1263
|
+
|
|
1264
|
+
return WrappedError;
|
|
1265
|
+
};
|
|
1266
|
+
|
|
1267
|
+
/* eslint-disable no-unused-vars -- required for functions `.length` */
|
|
1268
|
+
var $$7 = _export;
|
|
1269
|
+
var global$b = global$l;
|
|
1270
|
+
var apply$1 = functionApply;
|
|
1271
|
+
var wrapErrorConstructorWithCause = wrapErrorConstructorWithCause$1;
|
|
1272
|
+
|
|
1273
|
+
var WEB_ASSEMBLY = 'WebAssembly';
|
|
1274
|
+
var WebAssembly = global$b[WEB_ASSEMBLY];
|
|
1275
|
+
|
|
1276
|
+
// eslint-disable-next-line es/no-error-cause -- feature detection
|
|
1277
|
+
var FORCED = new Error('e', { cause: 7 }).cause !== 7;
|
|
1278
|
+
|
|
1279
|
+
var exportGlobalErrorCauseWrapper = function (ERROR_NAME, wrapper) {
|
|
1280
|
+
var O = {};
|
|
1281
|
+
O[ERROR_NAME] = wrapErrorConstructorWithCause(ERROR_NAME, wrapper, FORCED);
|
|
1282
|
+
$$7({ global: true, constructor: true, arity: 1, forced: FORCED }, O);
|
|
1283
|
+
};
|
|
1284
|
+
|
|
1285
|
+
var exportWebAssemblyErrorCauseWrapper = function (ERROR_NAME, wrapper) {
|
|
1286
|
+
if (WebAssembly && WebAssembly[ERROR_NAME]) {
|
|
1287
|
+
var O = {};
|
|
1288
|
+
O[ERROR_NAME] = wrapErrorConstructorWithCause(WEB_ASSEMBLY + '.' + ERROR_NAME, wrapper, FORCED);
|
|
1289
|
+
$$7({ target: WEB_ASSEMBLY, stat: true, constructor: true, arity: 1, forced: FORCED }, O);
|
|
1290
|
+
}
|
|
1291
|
+
};
|
|
1292
|
+
|
|
1293
|
+
// https://tc39.es/ecma262/#sec-nativeerror
|
|
1294
|
+
exportGlobalErrorCauseWrapper('Error', function (init) {
|
|
1295
|
+
return function Error(message) { return apply$1(init, this, arguments); };
|
|
1296
|
+
});
|
|
1297
|
+
exportGlobalErrorCauseWrapper('EvalError', function (init) {
|
|
1298
|
+
return function EvalError(message) { return apply$1(init, this, arguments); };
|
|
1299
|
+
});
|
|
1300
|
+
exportGlobalErrorCauseWrapper('RangeError', function (init) {
|
|
1301
|
+
return function RangeError(message) { return apply$1(init, this, arguments); };
|
|
1302
|
+
});
|
|
1303
|
+
exportGlobalErrorCauseWrapper('ReferenceError', function (init) {
|
|
1304
|
+
return function ReferenceError(message) { return apply$1(init, this, arguments); };
|
|
1305
|
+
});
|
|
1306
|
+
exportGlobalErrorCauseWrapper('SyntaxError', function (init) {
|
|
1307
|
+
return function SyntaxError(message) { return apply$1(init, this, arguments); };
|
|
1308
|
+
});
|
|
1309
|
+
exportGlobalErrorCauseWrapper('TypeError', function (init) {
|
|
1310
|
+
return function TypeError(message) { return apply$1(init, this, arguments); };
|
|
1311
|
+
});
|
|
1312
|
+
exportGlobalErrorCauseWrapper('URIError', function (init) {
|
|
1313
|
+
return function URIError(message) { return apply$1(init, this, arguments); };
|
|
1314
|
+
});
|
|
1315
|
+
exportWebAssemblyErrorCauseWrapper('CompileError', function (init) {
|
|
1316
|
+
return function CompileError(message) { return apply$1(init, this, arguments); };
|
|
1317
|
+
});
|
|
1318
|
+
exportWebAssemblyErrorCauseWrapper('LinkError', function (init) {
|
|
1319
|
+
return function LinkError(message) { return apply$1(init, this, arguments); };
|
|
1320
|
+
});
|
|
1321
|
+
exportWebAssemblyErrorCauseWrapper('RuntimeError', function (init) {
|
|
1322
|
+
return function RuntimeError(message) { return apply$1(init, this, arguments); };
|
|
1323
|
+
});
|
|
1324
|
+
|
|
1325
|
+
var global$a = global$l;
|
|
1326
|
+
var classof$3 = classofRaw$2;
|
|
1327
|
+
|
|
1328
|
+
var engineIsNode = classof$3(global$a.process) === 'process';
|
|
1329
|
+
|
|
1330
|
+
var defineProperty$1 = objectDefineProperty.f;
|
|
1331
|
+
var hasOwn$1 = hasOwnProperty_1;
|
|
1332
|
+
var wellKnownSymbol$7 = wellKnownSymbol$b;
|
|
1333
|
+
|
|
1334
|
+
var TO_STRING_TAG = wellKnownSymbol$7('toStringTag');
|
|
1060
1335
|
|
|
1061
1336
|
var setToStringTag$1 = function (target, TAG, STATIC) {
|
|
1062
1337
|
if (target && !STATIC) target = target.prototype;
|
|
1063
|
-
if (target && !hasOwn$1(target, TO_STRING_TAG
|
|
1064
|
-
defineProperty$1(target, TO_STRING_TAG
|
|
1338
|
+
if (target && !hasOwn$1(target, TO_STRING_TAG)) {
|
|
1339
|
+
defineProperty$1(target, TO_STRING_TAG, { configurable: true, value: TAG });
|
|
1065
1340
|
}
|
|
1066
1341
|
};
|
|
1067
1342
|
|
|
1068
|
-
var makeBuiltIn =
|
|
1343
|
+
var makeBuiltIn = makeBuiltInExports;
|
|
1069
1344
|
var defineProperty = objectDefineProperty;
|
|
1070
1345
|
|
|
1071
1346
|
var defineBuiltInAccessor$1 = function (target, name, descriptor) {
|
|
@@ -1074,12 +1349,12 @@ var defineBuiltInAccessor$1 = function (target, name, descriptor) {
|
|
|
1074
1349
|
return defineProperty.f(target, name, descriptor);
|
|
1075
1350
|
};
|
|
1076
1351
|
|
|
1077
|
-
var getBuiltIn$4 = getBuiltIn$
|
|
1352
|
+
var getBuiltIn$4 = getBuiltIn$8;
|
|
1078
1353
|
var defineBuiltInAccessor = defineBuiltInAccessor$1;
|
|
1079
|
-
var wellKnownSymbol$
|
|
1354
|
+
var wellKnownSymbol$6 = wellKnownSymbol$b;
|
|
1080
1355
|
var DESCRIPTORS$2 = descriptors;
|
|
1081
1356
|
|
|
1082
|
-
var SPECIES$3 = wellKnownSymbol$
|
|
1357
|
+
var SPECIES$3 = wellKnownSymbol$6('species');
|
|
1083
1358
|
|
|
1084
1359
|
var setSpecies$1 = function (CONSTRUCTOR_NAME) {
|
|
1085
1360
|
var Constructor = getBuiltIn$4(CONSTRUCTOR_NAME);
|
|
@@ -1101,50 +1376,11 @@ var anInstance$1 = function (it, Prototype) {
|
|
|
1101
1376
|
throw new $TypeError$6('Incorrect invocation');
|
|
1102
1377
|
};
|
|
1103
1378
|
|
|
1104
|
-
var wellKnownSymbol$7 = wellKnownSymbol$b;
|
|
1105
|
-
|
|
1106
|
-
var TO_STRING_TAG$1 = wellKnownSymbol$7('toStringTag');
|
|
1107
|
-
var test = {};
|
|
1108
|
-
|
|
1109
|
-
test[TO_STRING_TAG$1] = 'z';
|
|
1110
|
-
|
|
1111
|
-
var toStringTagSupport = String(test) === '[object z]';
|
|
1112
|
-
|
|
1113
|
-
var TO_STRING_TAG_SUPPORT = toStringTagSupport;
|
|
1114
|
-
var isCallable$6 = isCallable$h;
|
|
1115
|
-
var classofRaw$1 = classofRaw$2;
|
|
1116
|
-
var wellKnownSymbol$6 = wellKnownSymbol$b;
|
|
1117
|
-
|
|
1118
|
-
var TO_STRING_TAG = wellKnownSymbol$6('toStringTag');
|
|
1119
|
-
var $Object = Object;
|
|
1120
|
-
|
|
1121
|
-
// ES3 wrong here
|
|
1122
|
-
var CORRECT_ARGUMENTS = classofRaw$1(function () { return arguments; }()) === 'Arguments';
|
|
1123
|
-
|
|
1124
|
-
// fallback for IE11 Script Access Denied error
|
|
1125
|
-
var tryGet = function (it, key) {
|
|
1126
|
-
try {
|
|
1127
|
-
return it[key];
|
|
1128
|
-
} catch (error) { /* empty */ }
|
|
1129
|
-
};
|
|
1130
|
-
|
|
1131
|
-
// getting tag from ES6+ `Object.prototype.toString`
|
|
1132
|
-
var classof$4 = TO_STRING_TAG_SUPPORT ? classofRaw$1 : function (it) {
|
|
1133
|
-
var O, tag, result;
|
|
1134
|
-
return it === undefined ? 'Undefined' : it === null ? 'Null'
|
|
1135
|
-
// @@toStringTag case
|
|
1136
|
-
: typeof (tag = tryGet(O = $Object(it), TO_STRING_TAG)) == 'string' ? tag
|
|
1137
|
-
// builtinTag case
|
|
1138
|
-
: CORRECT_ARGUMENTS ? classofRaw$1(O)
|
|
1139
|
-
// ES3 arguments fallback
|
|
1140
|
-
: (result = classofRaw$1(O)) === 'Object' && isCallable$6(O.callee) ? 'Arguments' : result;
|
|
1141
|
-
};
|
|
1142
|
-
|
|
1143
1379
|
var uncurryThis$4 = functionUncurryThis;
|
|
1144
|
-
var fails$5 = fails$
|
|
1145
|
-
var isCallable$5 = isCallable$
|
|
1146
|
-
var classof$
|
|
1147
|
-
var getBuiltIn$3 = getBuiltIn$
|
|
1380
|
+
var fails$5 = fails$f;
|
|
1381
|
+
var isCallable$5 = isCallable$i;
|
|
1382
|
+
var classof$2 = classof$5;
|
|
1383
|
+
var getBuiltIn$3 = getBuiltIn$8;
|
|
1148
1384
|
var inspectSource$1 = inspectSource$3;
|
|
1149
1385
|
|
|
1150
1386
|
var noop = function () { /* empty */ };
|
|
@@ -1165,7 +1401,7 @@ var isConstructorModern = function isConstructor(argument) {
|
|
|
1165
1401
|
|
|
1166
1402
|
var isConstructorLegacy = function isConstructor(argument) {
|
|
1167
1403
|
if (!isCallable$5(argument)) return false;
|
|
1168
|
-
switch (classof$
|
|
1404
|
+
switch (classof$2(argument)) {
|
|
1169
1405
|
case 'AsyncFunction':
|
|
1170
1406
|
case 'GeneratorFunction':
|
|
1171
1407
|
case 'AsyncGeneratorFunction': return false;
|
|
@@ -1203,7 +1439,7 @@ var aConstructor$1 = function (argument) {
|
|
|
1203
1439
|
throw new $TypeError$5(tryToString$2(argument) + ' is not a constructor');
|
|
1204
1440
|
};
|
|
1205
1441
|
|
|
1206
|
-
var anObject$9 = anObject$
|
|
1442
|
+
var anObject$9 = anObject$c;
|
|
1207
1443
|
var aConstructor = aConstructor$1;
|
|
1208
1444
|
var isNullOrUndefined$2 = isNullOrUndefined$5;
|
|
1209
1445
|
var wellKnownSymbol$5 = wellKnownSymbol$b;
|
|
@@ -1218,17 +1454,6 @@ var speciesConstructor$1 = function (O, defaultConstructor) {
|
|
|
1218
1454
|
return C === undefined || isNullOrUndefined$2(S = anObject$9(C)[SPECIES$2]) ? defaultConstructor : aConstructor(S);
|
|
1219
1455
|
};
|
|
1220
1456
|
|
|
1221
|
-
var NATIVE_BIND$1 = functionBindNative;
|
|
1222
|
-
|
|
1223
|
-
var FunctionPrototype = Function.prototype;
|
|
1224
|
-
var apply$1 = FunctionPrototype.apply;
|
|
1225
|
-
var call$a = FunctionPrototype.call;
|
|
1226
|
-
|
|
1227
|
-
// eslint-disable-next-line es/no-reflect -- safe
|
|
1228
|
-
var functionApply = typeof Reflect == 'object' && Reflect.apply || (NATIVE_BIND$1 ? call$a.bind(apply$1) : function () {
|
|
1229
|
-
return call$a.apply(apply$1, arguments);
|
|
1230
|
-
});
|
|
1231
|
-
|
|
1232
1457
|
var classofRaw = classofRaw$2;
|
|
1233
1458
|
var uncurryThis$3 = functionUncurryThis;
|
|
1234
1459
|
|
|
@@ -1253,7 +1478,7 @@ var functionBindContext = function (fn, that) {
|
|
|
1253
1478
|
};
|
|
1254
1479
|
};
|
|
1255
1480
|
|
|
1256
|
-
var getBuiltIn$2 = getBuiltIn$
|
|
1481
|
+
var getBuiltIn$2 = getBuiltIn$8;
|
|
1257
1482
|
|
|
1258
1483
|
var html$2 = getBuiltIn$2('document', 'documentElement');
|
|
1259
1484
|
|
|
@@ -1276,9 +1501,9 @@ var engineIsIos = /(?:ipad|iphone|ipod).*applewebkit/i.test(userAgent$2);
|
|
|
1276
1501
|
var global$9 = global$l;
|
|
1277
1502
|
var apply = functionApply;
|
|
1278
1503
|
var bind$3 = functionBindContext;
|
|
1279
|
-
var isCallable$4 = isCallable$
|
|
1504
|
+
var isCallable$4 = isCallable$i;
|
|
1280
1505
|
var hasOwn = hasOwnProperty_1;
|
|
1281
|
-
var fails$4 = fails$
|
|
1506
|
+
var fails$4 = fails$f;
|
|
1282
1507
|
var html$1 = html$2;
|
|
1283
1508
|
var arraySlice = arraySlice$1;
|
|
1284
1509
|
var createElement = documentCreateElement$1;
|
|
@@ -1546,7 +1771,7 @@ var engineIsBrowser = !IS_DENO$1 && !IS_NODE$1
|
|
|
1546
1771
|
|
|
1547
1772
|
var global$5 = global$l;
|
|
1548
1773
|
var NativePromiseConstructor$3 = promiseNativeConstructor;
|
|
1549
|
-
var isCallable$3 = isCallable$
|
|
1774
|
+
var isCallable$3 = isCallable$i;
|
|
1550
1775
|
var isForced = isForced_1;
|
|
1551
1776
|
var inspectSource = inspectSource$3;
|
|
1552
1777
|
var wellKnownSymbol$4 = wellKnownSymbol$b;
|
|
@@ -1621,8 +1846,8 @@ var setPrototypeOf = objectSetPrototypeOf;
|
|
|
1621
1846
|
var setToStringTag = setToStringTag$1;
|
|
1622
1847
|
var setSpecies = setSpecies$1;
|
|
1623
1848
|
var aCallable$3 = aCallable$8;
|
|
1624
|
-
var isCallable$2 = isCallable$
|
|
1625
|
-
var isObject$1 = isObject$
|
|
1849
|
+
var isCallable$2 = isCallable$i;
|
|
1850
|
+
var isObject$1 = isObject$b;
|
|
1626
1851
|
var anInstance = anInstance$1;
|
|
1627
1852
|
var speciesConstructor = speciesConstructor$1;
|
|
1628
1853
|
var task = task$1.set;
|
|
@@ -1912,7 +2137,7 @@ var isArrayIteratorMethod$1 = function (it) {
|
|
|
1912
2137
|
return it !== undefined && (Iterators$1.Array === it || ArrayPrototype[ITERATOR$2] === it);
|
|
1913
2138
|
};
|
|
1914
2139
|
|
|
1915
|
-
var classof$
|
|
2140
|
+
var classof$1 = classof$5;
|
|
1916
2141
|
var getMethod$2 = getMethod$4;
|
|
1917
2142
|
var isNullOrUndefined$1 = isNullOrUndefined$5;
|
|
1918
2143
|
var Iterators = iterators;
|
|
@@ -1923,12 +2148,12 @@ var ITERATOR$1 = wellKnownSymbol$2('iterator');
|
|
|
1923
2148
|
var getIteratorMethod$2 = function (it) {
|
|
1924
2149
|
if (!isNullOrUndefined$1(it)) return getMethod$2(it, ITERATOR$1)
|
|
1925
2150
|
|| getMethod$2(it, '@@iterator')
|
|
1926
|
-
|| Iterators[classof$
|
|
2151
|
+
|| Iterators[classof$1(it)];
|
|
1927
2152
|
};
|
|
1928
2153
|
|
|
1929
2154
|
var call$8 = functionCall;
|
|
1930
2155
|
var aCallable$2 = aCallable$8;
|
|
1931
|
-
var anObject$8 = anObject$
|
|
2156
|
+
var anObject$8 = anObject$c;
|
|
1932
2157
|
var tryToString$1 = tryToString$4;
|
|
1933
2158
|
var getIteratorMethod$1 = getIteratorMethod$2;
|
|
1934
2159
|
|
|
@@ -1941,7 +2166,7 @@ var getIterator$1 = function (argument, usingIterator) {
|
|
|
1941
2166
|
};
|
|
1942
2167
|
|
|
1943
2168
|
var call$7 = functionCall;
|
|
1944
|
-
var anObject$7 = anObject$
|
|
2169
|
+
var anObject$7 = anObject$c;
|
|
1945
2170
|
var getMethod$1 = getMethod$4;
|
|
1946
2171
|
|
|
1947
2172
|
var iteratorClose$1 = function (iterator, kind, value) {
|
|
@@ -1966,7 +2191,7 @@ var iteratorClose$1 = function (iterator, kind, value) {
|
|
|
1966
2191
|
|
|
1967
2192
|
var bind = functionBindContext;
|
|
1968
2193
|
var call$6 = functionCall;
|
|
1969
|
-
var anObject$6 = anObject$
|
|
2194
|
+
var anObject$6 = anObject$c;
|
|
1970
2195
|
var tryToString = tryToString$4;
|
|
1971
2196
|
var isArrayIteratorMethod = isArrayIteratorMethod$1;
|
|
1972
2197
|
var lengthOfArrayLike = lengthOfArrayLike$2;
|
|
@@ -2124,8 +2349,8 @@ $$5({ target: 'Promise', stat: true, forced: PROMISE_STATICS_INCORRECT_ITERATION
|
|
|
2124
2349
|
var $$4 = _export;
|
|
2125
2350
|
var FORCED_PROMISE_CONSTRUCTOR$2 = promiseConstructorDetection.CONSTRUCTOR;
|
|
2126
2351
|
var NativePromiseConstructor = promiseNativeConstructor;
|
|
2127
|
-
var getBuiltIn$1 = getBuiltIn$
|
|
2128
|
-
var isCallable$1 = isCallable$
|
|
2352
|
+
var getBuiltIn$1 = getBuiltIn$8;
|
|
2353
|
+
var isCallable$1 = isCallable$i;
|
|
2129
2354
|
var defineBuiltIn$1 = defineBuiltIn$4;
|
|
2130
2355
|
|
|
2131
2356
|
var NativePromisePrototype = NativePromiseConstructor && NativePromiseConstructor.prototype;
|
|
@@ -2187,8 +2412,8 @@ $$2({ target: 'Promise', stat: true, forced: FORCED_PROMISE_CONSTRUCTOR$1 }, {
|
|
|
2187
2412
|
}
|
|
2188
2413
|
});
|
|
2189
2414
|
|
|
2190
|
-
var anObject$5 = anObject$
|
|
2191
|
-
var isObject = isObject$
|
|
2415
|
+
var anObject$5 = anObject$c;
|
|
2416
|
+
var isObject = isObject$b;
|
|
2192
2417
|
var newPromiseCapability = newPromiseCapability$2;
|
|
2193
2418
|
|
|
2194
2419
|
var promiseResolve$1 = function (C, x) {
|
|
@@ -2201,7 +2426,7 @@ var promiseResolve$1 = function (C, x) {
|
|
|
2201
2426
|
};
|
|
2202
2427
|
|
|
2203
2428
|
var $$1 = _export;
|
|
2204
|
-
var getBuiltIn = getBuiltIn$
|
|
2429
|
+
var getBuiltIn = getBuiltIn$8;
|
|
2205
2430
|
var FORCED_PROMISE_CONSTRUCTOR = promiseConstructorDetection.CONSTRUCTOR;
|
|
2206
2431
|
var promiseResolve = promiseResolve$1;
|
|
2207
2432
|
|
|
@@ -2253,7 +2478,6 @@ class AbstractAsyncWindowLoadedService {
|
|
|
2253
2478
|
getService() {
|
|
2254
2479
|
return firstValueFrom(this.service$);
|
|
2255
2480
|
}
|
|
2256
|
-
|
|
2257
2481
|
// MARK: Loading
|
|
2258
2482
|
loadService() {
|
|
2259
2483
|
if (!this._loading.value) {
|
|
@@ -2264,7 +2488,6 @@ class AbstractAsyncWindowLoadedService {
|
|
|
2264
2488
|
};
|
|
2265
2489
|
const tryLoad = () => {
|
|
2266
2490
|
const windowRef = window;
|
|
2267
|
-
|
|
2268
2491
|
// Loaded before the promise.
|
|
2269
2492
|
if (windowRef[this._windowKey]) {
|
|
2270
2493
|
// Not yet finished loading async. Intercept the function.
|
|
@@ -2301,7 +2524,6 @@ class AbstractAsyncWindowLoadedService {
|
|
|
2301
2524
|
if (!service) {
|
|
2302
2525
|
throw new Error(`Service "${this._serviceName}" could not complete loading.`);
|
|
2303
2526
|
}
|
|
2304
|
-
|
|
2305
2527
|
// Init the API
|
|
2306
2528
|
const initializedService = await this._initService(service);
|
|
2307
2529
|
return initializedService != null ? initializedService : service;
|
|
@@ -2315,7 +2537,6 @@ class AbstractAsyncWindowLoadedService {
|
|
|
2315
2537
|
}
|
|
2316
2538
|
|
|
2317
2539
|
// https://dev.to/maciejtrzcinski/100vh-problem-with-ios-safari-3ge9
|
|
2318
|
-
|
|
2319
2540
|
const DEFAULT_VH100_VARIABLE_NAME = 'vh100';
|
|
2320
2541
|
function refreshVh100Function(cssVariableName = DEFAULT_VH100_VARIABLE_NAME) {
|
|
2321
2542
|
const cssProperty = `--${cssVariableName}`;
|
|
@@ -2324,7 +2545,6 @@ function refreshVh100Function(cssVariableName = DEFAULT_VH100_VARIABLE_NAME) {
|
|
|
2324
2545
|
doc.style.setProperty(cssProperty, `${window.innerHeight}px`);
|
|
2325
2546
|
};
|
|
2326
2547
|
}
|
|
2327
|
-
|
|
2328
2548
|
/**
|
|
2329
2549
|
* Adds window event listeners to populate the css variable `vh100`, or another input variable name, with the current window height.
|
|
2330
2550
|
*/
|
|
@@ -2335,16 +2555,7 @@ function watchWindowAndUpdateVh100StyleProperty(cssVariableName) {
|
|
|
2335
2555
|
refreshPropertyValue();
|
|
2336
2556
|
}
|
|
2337
2557
|
|
|
2338
|
-
var
|
|
2339
|
-
|
|
2340
|
-
var $String = String;
|
|
2341
|
-
|
|
2342
|
-
var toString$2 = function (argument) {
|
|
2343
|
-
if (classof$1(argument) === 'Symbol') throw new TypeError('Cannot convert a Symbol value to a string');
|
|
2344
|
-
return $String(argument);
|
|
2345
|
-
};
|
|
2346
|
-
|
|
2347
|
-
var anObject$4 = anObject$d;
|
|
2558
|
+
var anObject$4 = anObject$c;
|
|
2348
2559
|
|
|
2349
2560
|
// `RegExp.prototype.flags` getter implementation
|
|
2350
2561
|
// https://tc39.es/ecma262/#sec-get-regexp.prototype.flags
|
|
@@ -2362,7 +2573,7 @@ var regexpFlags$1 = function () {
|
|
|
2362
2573
|
return result;
|
|
2363
2574
|
};
|
|
2364
2575
|
|
|
2365
|
-
var fails$3 = fails$
|
|
2576
|
+
var fails$3 = fails$f;
|
|
2366
2577
|
var global$3 = global$l;
|
|
2367
2578
|
|
|
2368
2579
|
// babel-minify and Closure Compiler transpiles RegExp('a', 'y') -> /a/y and it causes SyntaxError
|
|
@@ -2408,7 +2619,7 @@ var objectKeys$1 = Object.keys || function keys(O) {
|
|
|
2408
2619
|
var DESCRIPTORS = descriptors;
|
|
2409
2620
|
var V8_PROTOTYPE_DEFINE_BUG = v8PrototypeDefineBug;
|
|
2410
2621
|
var definePropertyModule = objectDefineProperty;
|
|
2411
|
-
var anObject$3 = anObject$
|
|
2622
|
+
var anObject$3 = anObject$c;
|
|
2412
2623
|
var toIndexedObject = toIndexedObject$4;
|
|
2413
2624
|
var objectKeys = objectKeys$1;
|
|
2414
2625
|
|
|
@@ -2427,7 +2638,7 @@ objectDefineProperties.f = DESCRIPTORS && !V8_PROTOTYPE_DEFINE_BUG ? Object.defi
|
|
|
2427
2638
|
};
|
|
2428
2639
|
|
|
2429
2640
|
/* global ActiveXObject -- old IE, WSH */
|
|
2430
|
-
var anObject$2 = anObject$
|
|
2641
|
+
var anObject$2 = anObject$c;
|
|
2431
2642
|
var definePropertiesModule = objectDefineProperties;
|
|
2432
2643
|
var enumBugKeys = enumBugKeys$3;
|
|
2433
2644
|
var hiddenKeys = hiddenKeys$4;
|
|
@@ -2510,7 +2721,7 @@ var objectCreate = Object.create || function create(O, Properties) {
|
|
|
2510
2721
|
return Properties === undefined ? result : definePropertiesModule.f(result, Properties);
|
|
2511
2722
|
};
|
|
2512
2723
|
|
|
2513
|
-
var fails$2 = fails$
|
|
2724
|
+
var fails$2 = fails$f;
|
|
2514
2725
|
var global$2 = global$l;
|
|
2515
2726
|
|
|
2516
2727
|
// babel-minify and Closure Compiler transpiles RegExp('.', 's') -> /./s and it causes SyntaxError
|
|
@@ -2521,7 +2732,7 @@ var regexpUnsupportedDotAll = fails$2(function () {
|
|
|
2521
2732
|
return !(re.dotAll && re.test('\n') && re.flags === 's');
|
|
2522
2733
|
});
|
|
2523
2734
|
|
|
2524
|
-
var fails$1 = fails$
|
|
2735
|
+
var fails$1 = fails$f;
|
|
2525
2736
|
var global$1 = global$l;
|
|
2526
2737
|
|
|
2527
2738
|
// babel-minify and Closure Compiler transpiles RegExp('(?<a>b)', 'g') -> /(?<a>b)/g and it causes SyntaxError
|
|
@@ -2537,10 +2748,10 @@ var regexpUnsupportedNcg = fails$1(function () {
|
|
|
2537
2748
|
/* eslint-disable regexp/no-useless-quantifier -- testing */
|
|
2538
2749
|
var call$3 = functionCall;
|
|
2539
2750
|
var uncurryThis = functionUncurryThis;
|
|
2540
|
-
var toString$1 = toString$
|
|
2751
|
+
var toString$1 = toString$3;
|
|
2541
2752
|
var regexpFlags = regexpFlags$1;
|
|
2542
2753
|
var stickyHelpers = regexpStickyHelpers;
|
|
2543
|
-
var shared = shared$4
|
|
2754
|
+
var shared = shared$4;
|
|
2544
2755
|
var create = objectCreate;
|
|
2545
2756
|
var getInternalState = internalState.get;
|
|
2546
2757
|
var UNSUPPORTED_DOT_ALL = regexpUnsupportedDotAll;
|
|
@@ -2664,9 +2875,9 @@ $({ target: 'RegExp', proto: true, forced: /./.exec !== exec }, {
|
|
|
2664
2875
|
var call$2 = functionCall;
|
|
2665
2876
|
var defineBuiltIn = defineBuiltIn$4;
|
|
2666
2877
|
var regexpExec$1 = regexpExec$2;
|
|
2667
|
-
var fails = fails$
|
|
2878
|
+
var fails = fails$f;
|
|
2668
2879
|
var wellKnownSymbol = wellKnownSymbol$b;
|
|
2669
|
-
var createNonEnumerableProperty = createNonEnumerableProperty$
|
|
2880
|
+
var createNonEnumerableProperty = createNonEnumerableProperty$6;
|
|
2670
2881
|
|
|
2671
2882
|
var SPECIES = wellKnownSymbol('species');
|
|
2672
2883
|
var RegExpPrototype = RegExp.prototype;
|
|
@@ -2744,8 +2955,8 @@ var sameValue$1 = Object.is || function is(x, y) {
|
|
|
2744
2955
|
};
|
|
2745
2956
|
|
|
2746
2957
|
var call$1 = functionCall;
|
|
2747
|
-
var anObject$1 = anObject$
|
|
2748
|
-
var isCallable = isCallable$
|
|
2958
|
+
var anObject$1 = anObject$c;
|
|
2959
|
+
var isCallable = isCallable$i;
|
|
2749
2960
|
var classof = classofRaw$2;
|
|
2750
2961
|
var regexpExec = regexpExec$2;
|
|
2751
2962
|
|
|
@@ -2766,11 +2977,11 @@ var regexpExecAbstract = function (R, S) {
|
|
|
2766
2977
|
|
|
2767
2978
|
var call = functionCall;
|
|
2768
2979
|
var fixRegExpWellKnownSymbolLogic = fixRegexpWellKnownSymbolLogic;
|
|
2769
|
-
var anObject = anObject$
|
|
2980
|
+
var anObject = anObject$c;
|
|
2770
2981
|
var isNullOrUndefined = isNullOrUndefined$5;
|
|
2771
|
-
var requireObjectCoercible = requireObjectCoercible$
|
|
2982
|
+
var requireObjectCoercible = requireObjectCoercible$4;
|
|
2772
2983
|
var sameValue = sameValue$1;
|
|
2773
|
-
var toString = toString$
|
|
2984
|
+
var toString = toString$3;
|
|
2774
2985
|
var getMethod = getMethod$4;
|
|
2775
2986
|
var regExpExec = regexpExecAbstract;
|
|
2776
2987
|
|
|
@@ -2803,7 +3014,6 @@ fixRegExpWellKnownSymbolLogic('search', function (SEARCH, nativeSearch, maybeCal
|
|
|
2803
3014
|
});
|
|
2804
3015
|
|
|
2805
3016
|
// MARK: Window Location Utiltiies
|
|
2806
|
-
|
|
2807
3017
|
/**
|
|
2808
3018
|
* Whether or not the current host is localhost. Useful for determining local dev environments.
|
|
2809
3019
|
*/
|