@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.cjs.js
CHANGED
|
@@ -1,7 +1,5 @@
|
|
|
1
1
|
'use strict';
|
|
2
2
|
|
|
3
|
-
Object.defineProperty(exports, '__esModule', { value: true });
|
|
4
|
-
|
|
5
3
|
var rxjs$1 = require('@dereekb/rxjs');
|
|
6
4
|
var rxjs = require('rxjs');
|
|
7
5
|
|
|
@@ -25,7 +23,7 @@ var global$l =
|
|
|
25
23
|
|
|
26
24
|
var objectGetOwnPropertyDescriptor = {};
|
|
27
25
|
|
|
28
|
-
var fails$
|
|
26
|
+
var fails$f = function (exec) {
|
|
29
27
|
try {
|
|
30
28
|
return !!exec();
|
|
31
29
|
} catch (error) {
|
|
@@ -33,17 +31,17 @@ var fails$e = function (exec) {
|
|
|
33
31
|
}
|
|
34
32
|
};
|
|
35
33
|
|
|
36
|
-
var fails$
|
|
34
|
+
var fails$e = fails$f;
|
|
37
35
|
|
|
38
36
|
// Detect IE8's incomplete defineProperty implementation
|
|
39
|
-
var descriptors = !fails$
|
|
37
|
+
var descriptors = !fails$e(function () {
|
|
40
38
|
// eslint-disable-next-line es/no-object-defineproperty -- required for testing
|
|
41
39
|
return Object.defineProperty({}, 1, { get: function () { return 7; } })[1] !== 7;
|
|
42
40
|
});
|
|
43
41
|
|
|
44
|
-
var fails$
|
|
42
|
+
var fails$d = fails$f;
|
|
45
43
|
|
|
46
|
-
var functionBindNative = !fails$
|
|
44
|
+
var functionBindNative = !fails$d(function () {
|
|
47
45
|
// eslint-disable-next-line es/no-function-prototype-bind -- safe
|
|
48
46
|
var test = (function () { /* empty */ }).bind();
|
|
49
47
|
// eslint-disable-next-line no-prototype-builtins -- safe
|
|
@@ -74,7 +72,7 @@ objectPropertyIsEnumerable.f = NASHORN_BUG ? function propertyIsEnumerable(V) {
|
|
|
74
72
|
return !!descriptor && descriptor.enumerable;
|
|
75
73
|
} : $propertyIsEnumerable;
|
|
76
74
|
|
|
77
|
-
var createPropertyDescriptor$
|
|
75
|
+
var createPropertyDescriptor$3 = function (bitmap, value) {
|
|
78
76
|
return {
|
|
79
77
|
enumerable: !(bitmap & 1),
|
|
80
78
|
configurable: !(bitmap & 2),
|
|
@@ -95,24 +93,24 @@ var functionUncurryThis = NATIVE_BIND$2 ? uncurryThisWithBind : function (fn) {
|
|
|
95
93
|
};
|
|
96
94
|
};
|
|
97
95
|
|
|
98
|
-
var uncurryThis$
|
|
96
|
+
var uncurryThis$f = functionUncurryThis;
|
|
99
97
|
|
|
100
|
-
var toString$
|
|
101
|
-
var stringSlice$2 = uncurryThis$
|
|
98
|
+
var toString$5 = uncurryThis$f({}.toString);
|
|
99
|
+
var stringSlice$2 = uncurryThis$f(''.slice);
|
|
102
100
|
|
|
103
101
|
var classofRaw$2 = function (it) {
|
|
104
|
-
return stringSlice$2(toString$
|
|
102
|
+
return stringSlice$2(toString$5(it), 8, -1);
|
|
105
103
|
};
|
|
106
104
|
|
|
107
|
-
var uncurryThis$
|
|
108
|
-
var fails$
|
|
105
|
+
var uncurryThis$e = functionUncurryThis;
|
|
106
|
+
var fails$c = fails$f;
|
|
109
107
|
var classof$6 = classofRaw$2;
|
|
110
108
|
|
|
111
109
|
var $Object$3 = Object;
|
|
112
|
-
var split = uncurryThis$
|
|
110
|
+
var split = uncurryThis$e(''.split);
|
|
113
111
|
|
|
114
112
|
// fallback for non-array-like ES3 and non-enumerable old V8 strings
|
|
115
|
-
var indexedObject = fails$
|
|
113
|
+
var indexedObject = fails$c(function () {
|
|
116
114
|
// throws an error in rhino, see https://github.com/mozilla/rhino/issues/346
|
|
117
115
|
// eslint-disable-next-line no-prototype-builtins -- safe
|
|
118
116
|
return !$Object$3('z').propertyIsEnumerable(0);
|
|
@@ -132,17 +130,17 @@ var $TypeError$d = TypeError;
|
|
|
132
130
|
|
|
133
131
|
// `RequireObjectCoercible` abstract operation
|
|
134
132
|
// https://tc39.es/ecma262/#sec-requireobjectcoercible
|
|
135
|
-
var requireObjectCoercible$
|
|
133
|
+
var requireObjectCoercible$4 = function (it) {
|
|
136
134
|
if (isNullOrUndefined$4(it)) throw new $TypeError$d("Can't call method on " + it);
|
|
137
135
|
return it;
|
|
138
136
|
};
|
|
139
137
|
|
|
140
138
|
// toObject with fallback for non-array-like ES3 strings
|
|
141
139
|
var IndexedObject = indexedObject;
|
|
142
|
-
var requireObjectCoercible$
|
|
140
|
+
var requireObjectCoercible$3 = requireObjectCoercible$4;
|
|
143
141
|
|
|
144
142
|
var toIndexedObject$4 = function (it) {
|
|
145
|
-
return IndexedObject(requireObjectCoercible$
|
|
143
|
+
return IndexedObject(requireObjectCoercible$3(it));
|
|
146
144
|
};
|
|
147
145
|
|
|
148
146
|
// https://tc39.es/ecma262/#sec-IsHTMLDDA-internal-slot
|
|
@@ -151,32 +149,32 @@ var documentAll = typeof document == 'object' && document.all;
|
|
|
151
149
|
// `IsCallable` abstract operation
|
|
152
150
|
// https://tc39.es/ecma262/#sec-iscallable
|
|
153
151
|
// eslint-disable-next-line unicorn/no-typeof-undefined -- required for testing
|
|
154
|
-
var isCallable$
|
|
152
|
+
var isCallable$i = typeof documentAll == 'undefined' && documentAll !== undefined ? function (argument) {
|
|
155
153
|
return typeof argument == 'function' || argument === documentAll;
|
|
156
154
|
} : function (argument) {
|
|
157
155
|
return typeof argument == 'function';
|
|
158
156
|
};
|
|
159
157
|
|
|
160
|
-
var isCallable$
|
|
158
|
+
var isCallable$h = isCallable$i;
|
|
161
159
|
|
|
162
|
-
var isObject$
|
|
163
|
-
return typeof it == 'object' ? it !== null : isCallable$
|
|
160
|
+
var isObject$b = function (it) {
|
|
161
|
+
return typeof it == 'object' ? it !== null : isCallable$h(it);
|
|
164
162
|
};
|
|
165
163
|
|
|
166
164
|
var global$k = global$l;
|
|
167
|
-
var isCallable$
|
|
165
|
+
var isCallable$g = isCallable$i;
|
|
168
166
|
|
|
169
167
|
var aFunction = function (argument) {
|
|
170
|
-
return isCallable$
|
|
168
|
+
return isCallable$g(argument) ? argument : undefined;
|
|
171
169
|
};
|
|
172
170
|
|
|
173
|
-
var getBuiltIn$
|
|
171
|
+
var getBuiltIn$8 = function (namespace, method) {
|
|
174
172
|
return arguments.length < 2 ? aFunction(global$k[namespace]) : global$k[namespace] && global$k[namespace][method];
|
|
175
173
|
};
|
|
176
174
|
|
|
177
|
-
var uncurryThis$
|
|
175
|
+
var uncurryThis$d = functionUncurryThis;
|
|
178
176
|
|
|
179
|
-
var objectIsPrototypeOf = uncurryThis$
|
|
177
|
+
var objectIsPrototypeOf = uncurryThis$d({}.isPrototypeOf);
|
|
180
178
|
|
|
181
179
|
var engineUserAgent = typeof navigator != 'undefined' && String(navigator.userAgent) || '';
|
|
182
180
|
|
|
@@ -210,13 +208,13 @@ var engineV8Version = version;
|
|
|
210
208
|
|
|
211
209
|
/* eslint-disable es/no-symbol -- required for testing */
|
|
212
210
|
var V8_VERSION$1 = engineV8Version;
|
|
213
|
-
var fails$
|
|
211
|
+
var fails$b = fails$f;
|
|
214
212
|
var global$i = global$l;
|
|
215
213
|
|
|
216
214
|
var $String$5 = global$i.String;
|
|
217
215
|
|
|
218
216
|
// eslint-disable-next-line es/no-object-getownpropertysymbols -- required for testing
|
|
219
|
-
var symbolConstructorDetection = !!Object.getOwnPropertySymbols && !fails$
|
|
217
|
+
var symbolConstructorDetection = !!Object.getOwnPropertySymbols && !fails$b(function () {
|
|
220
218
|
var symbol = Symbol('symbol detection');
|
|
221
219
|
// Chrome 38 Symbol has incorrect toString conversion
|
|
222
220
|
// `get-own-property-symbols` polyfill symbols converted to object are not Symbol instances
|
|
@@ -234,9 +232,9 @@ var useSymbolAsUid = NATIVE_SYMBOL$1
|
|
|
234
232
|
&& !Symbol.sham
|
|
235
233
|
&& typeof Symbol.iterator == 'symbol';
|
|
236
234
|
|
|
237
|
-
var getBuiltIn$
|
|
238
|
-
var isCallable$
|
|
239
|
-
var isPrototypeOf$
|
|
235
|
+
var getBuiltIn$7 = getBuiltIn$8;
|
|
236
|
+
var isCallable$f = isCallable$i;
|
|
237
|
+
var isPrototypeOf$3 = objectIsPrototypeOf;
|
|
240
238
|
var USE_SYMBOL_AS_UID$1 = useSymbolAsUid;
|
|
241
239
|
|
|
242
240
|
var $Object$2 = Object;
|
|
@@ -244,8 +242,8 @@ var $Object$2 = Object;
|
|
|
244
242
|
var isSymbol$2 = USE_SYMBOL_AS_UID$1 ? function (it) {
|
|
245
243
|
return typeof it == 'symbol';
|
|
246
244
|
} : function (it) {
|
|
247
|
-
var $Symbol = getBuiltIn$
|
|
248
|
-
return isCallable$
|
|
245
|
+
var $Symbol = getBuiltIn$7('Symbol');
|
|
246
|
+
return isCallable$f($Symbol) && isPrototypeOf$3($Symbol.prototype, $Object$2(it));
|
|
249
247
|
};
|
|
250
248
|
|
|
251
249
|
var $String$4 = String;
|
|
@@ -258,14 +256,14 @@ var tryToString$4 = function (argument) {
|
|
|
258
256
|
}
|
|
259
257
|
};
|
|
260
258
|
|
|
261
|
-
var isCallable$
|
|
259
|
+
var isCallable$e = isCallable$i;
|
|
262
260
|
var tryToString$3 = tryToString$4;
|
|
263
261
|
|
|
264
262
|
var $TypeError$c = TypeError;
|
|
265
263
|
|
|
266
264
|
// `Assert: IsCallable(argument) is true`
|
|
267
265
|
var aCallable$8 = function (argument) {
|
|
268
|
-
if (isCallable$
|
|
266
|
+
if (isCallable$e(argument)) return argument;
|
|
269
267
|
throw new $TypeError$c(tryToString$3(argument) + ' is not a function');
|
|
270
268
|
};
|
|
271
269
|
|
|
@@ -280,8 +278,8 @@ var getMethod$4 = function (V, P) {
|
|
|
280
278
|
};
|
|
281
279
|
|
|
282
280
|
var call$d = functionCall;
|
|
283
|
-
var isCallable$
|
|
284
|
-
var isObject$
|
|
281
|
+
var isCallable$d = isCallable$i;
|
|
282
|
+
var isObject$a = isObject$b;
|
|
285
283
|
|
|
286
284
|
var $TypeError$b = TypeError;
|
|
287
285
|
|
|
@@ -289,61 +287,63 @@ var $TypeError$b = TypeError;
|
|
|
289
287
|
// https://tc39.es/ecma262/#sec-ordinarytoprimitive
|
|
290
288
|
var ordinaryToPrimitive$1 = function (input, pref) {
|
|
291
289
|
var fn, val;
|
|
292
|
-
if (pref === 'string' && isCallable$
|
|
293
|
-
if (isCallable$
|
|
294
|
-
if (pref !== 'string' && isCallable$
|
|
290
|
+
if (pref === 'string' && isCallable$d(fn = input.toString) && !isObject$a(val = call$d(fn, input))) return val;
|
|
291
|
+
if (isCallable$d(fn = input.valueOf) && !isObject$a(val = call$d(fn, input))) return val;
|
|
292
|
+
if (pref !== 'string' && isCallable$d(fn = input.toString) && !isObject$a(val = call$d(fn, input))) return val;
|
|
295
293
|
throw new $TypeError$b("Can't convert object to primitive value");
|
|
296
294
|
};
|
|
297
295
|
|
|
298
|
-
var
|
|
296
|
+
var sharedStore = {exports: {}};
|
|
299
297
|
|
|
300
298
|
var global$h = global$l;
|
|
301
299
|
|
|
302
300
|
// eslint-disable-next-line es/no-object-defineproperty -- safe
|
|
303
|
-
var defineProperty$
|
|
301
|
+
var defineProperty$4 = Object.defineProperty;
|
|
304
302
|
|
|
305
303
|
var defineGlobalProperty$3 = function (key, value) {
|
|
306
304
|
try {
|
|
307
|
-
defineProperty$
|
|
305
|
+
defineProperty$4(global$h, key, { value: value, configurable: true, writable: true });
|
|
308
306
|
} catch (error) {
|
|
309
307
|
global$h[key] = value;
|
|
310
308
|
} return value;
|
|
311
309
|
};
|
|
312
310
|
|
|
313
|
-
var
|
|
311
|
+
var globalThis$1 = global$l;
|
|
314
312
|
var defineGlobalProperty$2 = defineGlobalProperty$3;
|
|
315
313
|
|
|
316
314
|
var SHARED = '__core-js_shared__';
|
|
317
|
-
var store$3 =
|
|
318
|
-
|
|
319
|
-
var sharedStore = store$3;
|
|
315
|
+
var store$3 = sharedStore.exports = globalThis$1[SHARED] || defineGlobalProperty$2(SHARED, {});
|
|
320
316
|
|
|
321
|
-
|
|
322
|
-
|
|
323
|
-
(shared$4.exports = function (key, value) {
|
|
324
|
-
return store$2[key] || (store$2[key] = value !== undefined ? value : {});
|
|
325
|
-
})('versions', []).push({
|
|
326
|
-
version: '3.35.1',
|
|
317
|
+
(store$3.versions || (store$3.versions = [])).push({
|
|
318
|
+
version: '3.36.1',
|
|
327
319
|
mode: 'global',
|
|
328
320
|
copyright: '© 2014-2024 Denis Pushkarev (zloirock.ru)',
|
|
329
|
-
license: 'https://github.com/zloirock/core-js/blob/v3.
|
|
321
|
+
license: 'https://github.com/zloirock/core-js/blob/v3.36.1/LICENSE',
|
|
330
322
|
source: 'https://github.com/zloirock/core-js'
|
|
331
323
|
});
|
|
332
324
|
|
|
333
|
-
var
|
|
325
|
+
var sharedStoreExports = sharedStore.exports;
|
|
326
|
+
|
|
327
|
+
var store$2 = sharedStoreExports;
|
|
328
|
+
|
|
329
|
+
var shared$4 = function (key, value) {
|
|
330
|
+
return store$2[key] || (store$2[key] = value || {});
|
|
331
|
+
};
|
|
332
|
+
|
|
333
|
+
var requireObjectCoercible$2 = requireObjectCoercible$4;
|
|
334
334
|
|
|
335
335
|
var $Object$1 = Object;
|
|
336
336
|
|
|
337
337
|
// `ToObject` abstract operation
|
|
338
338
|
// https://tc39.es/ecma262/#sec-toobject
|
|
339
339
|
var toObject$1 = function (argument) {
|
|
340
|
-
return $Object$1(requireObjectCoercible$
|
|
340
|
+
return $Object$1(requireObjectCoercible$2(argument));
|
|
341
341
|
};
|
|
342
342
|
|
|
343
|
-
var uncurryThis$
|
|
343
|
+
var uncurryThis$c = functionUncurryThis;
|
|
344
344
|
var toObject = toObject$1;
|
|
345
345
|
|
|
346
|
-
var hasOwnProperty = uncurryThis$
|
|
346
|
+
var hasOwnProperty = uncurryThis$c({}.hasOwnProperty);
|
|
347
347
|
|
|
348
348
|
// `HasOwnProperty` abstract operation
|
|
349
349
|
// https://tc39.es/ecma262/#sec-hasownproperty
|
|
@@ -352,37 +352,37 @@ var hasOwnProperty_1 = Object.hasOwn || function hasOwn(it, key) {
|
|
|
352
352
|
return hasOwnProperty(toObject(it), key);
|
|
353
353
|
};
|
|
354
354
|
|
|
355
|
-
var uncurryThis$
|
|
355
|
+
var uncurryThis$b = functionUncurryThis;
|
|
356
356
|
|
|
357
357
|
var id = 0;
|
|
358
358
|
var postfix = Math.random();
|
|
359
|
-
var toString$
|
|
359
|
+
var toString$4 = uncurryThis$b(1.0.toString);
|
|
360
360
|
|
|
361
361
|
var uid$2 = function (key) {
|
|
362
|
-
return 'Symbol(' + (key === undefined ? '' : key) + ')_' + toString$
|
|
362
|
+
return 'Symbol(' + (key === undefined ? '' : key) + ')_' + toString$4(++id + postfix, 36);
|
|
363
363
|
};
|
|
364
364
|
|
|
365
|
-
var global$
|
|
366
|
-
var shared$3 = shared$4
|
|
367
|
-
var hasOwn$
|
|
365
|
+
var global$g = global$l;
|
|
366
|
+
var shared$3 = shared$4;
|
|
367
|
+
var hasOwn$9 = hasOwnProperty_1;
|
|
368
368
|
var uid$1 = uid$2;
|
|
369
369
|
var NATIVE_SYMBOL = symbolConstructorDetection;
|
|
370
370
|
var USE_SYMBOL_AS_UID = useSymbolAsUid;
|
|
371
371
|
|
|
372
|
-
var Symbol$1 = global$
|
|
372
|
+
var Symbol$1 = global$g.Symbol;
|
|
373
373
|
var WellKnownSymbolsStore = shared$3('wks');
|
|
374
374
|
var createWellKnownSymbol = USE_SYMBOL_AS_UID ? Symbol$1['for'] || Symbol$1 : Symbol$1 && Symbol$1.withoutSetter || uid$1;
|
|
375
375
|
|
|
376
376
|
var wellKnownSymbol$b = function (name) {
|
|
377
|
-
if (!hasOwn$
|
|
378
|
-
WellKnownSymbolsStore[name] = NATIVE_SYMBOL && hasOwn$
|
|
377
|
+
if (!hasOwn$9(WellKnownSymbolsStore, name)) {
|
|
378
|
+
WellKnownSymbolsStore[name] = NATIVE_SYMBOL && hasOwn$9(Symbol$1, name)
|
|
379
379
|
? Symbol$1[name]
|
|
380
380
|
: createWellKnownSymbol('Symbol.' + name);
|
|
381
381
|
} return WellKnownSymbolsStore[name];
|
|
382
382
|
};
|
|
383
383
|
|
|
384
384
|
var call$c = functionCall;
|
|
385
|
-
var isObject$
|
|
385
|
+
var isObject$9 = isObject$b;
|
|
386
386
|
var isSymbol$1 = isSymbol$2;
|
|
387
387
|
var getMethod$3 = getMethod$4;
|
|
388
388
|
var ordinaryToPrimitive = ordinaryToPrimitive$1;
|
|
@@ -394,13 +394,13 @@ var TO_PRIMITIVE = wellKnownSymbol$a('toPrimitive');
|
|
|
394
394
|
// `ToPrimitive` abstract operation
|
|
395
395
|
// https://tc39.es/ecma262/#sec-toprimitive
|
|
396
396
|
var toPrimitive$1 = function (input, pref) {
|
|
397
|
-
if (!isObject$
|
|
397
|
+
if (!isObject$9(input) || isSymbol$1(input)) return input;
|
|
398
398
|
var exoticToPrim = getMethod$3(input, TO_PRIMITIVE);
|
|
399
399
|
var result;
|
|
400
400
|
if (exoticToPrim) {
|
|
401
401
|
if (pref === undefined) pref = 'default';
|
|
402
402
|
result = call$c(exoticToPrim, input, pref);
|
|
403
|
-
if (!isObject$
|
|
403
|
+
if (!isObject$9(result) || isSymbol$1(result)) return result;
|
|
404
404
|
throw new $TypeError$a("Can't convert object to primitive value");
|
|
405
405
|
}
|
|
406
406
|
if (pref === undefined) pref = 'number';
|
|
@@ -417,36 +417,36 @@ var toPropertyKey$2 = function (argument) {
|
|
|
417
417
|
return isSymbol(key) ? key : key + '';
|
|
418
418
|
};
|
|
419
419
|
|
|
420
|
-
var global$
|
|
421
|
-
var isObject$
|
|
420
|
+
var global$f = global$l;
|
|
421
|
+
var isObject$8 = isObject$b;
|
|
422
422
|
|
|
423
|
-
var document$3 = global$
|
|
423
|
+
var document$3 = global$f.document;
|
|
424
424
|
// typeof document.createElement is 'object' in old IE
|
|
425
|
-
var EXISTS$1 = isObject$
|
|
425
|
+
var EXISTS$1 = isObject$8(document$3) && isObject$8(document$3.createElement);
|
|
426
426
|
|
|
427
427
|
var documentCreateElement$1 = function (it) {
|
|
428
428
|
return EXISTS$1 ? document$3.createElement(it) : {};
|
|
429
429
|
};
|
|
430
430
|
|
|
431
|
-
var DESCRIPTORS$
|
|
432
|
-
var fails$
|
|
431
|
+
var DESCRIPTORS$a = descriptors;
|
|
432
|
+
var fails$a = fails$f;
|
|
433
433
|
var createElement$1 = documentCreateElement$1;
|
|
434
434
|
|
|
435
435
|
// Thanks to IE8 for its funny defineProperty
|
|
436
|
-
var ie8DomDefine = !DESCRIPTORS$
|
|
436
|
+
var ie8DomDefine = !DESCRIPTORS$a && !fails$a(function () {
|
|
437
437
|
// eslint-disable-next-line es/no-object-defineproperty -- required for testing
|
|
438
438
|
return Object.defineProperty(createElement$1('div'), 'a', {
|
|
439
439
|
get: function () { return 7; }
|
|
440
440
|
}).a !== 7;
|
|
441
441
|
});
|
|
442
442
|
|
|
443
|
-
var DESCRIPTORS$
|
|
443
|
+
var DESCRIPTORS$9 = descriptors;
|
|
444
444
|
var call$b = functionCall;
|
|
445
445
|
var propertyIsEnumerableModule = objectPropertyIsEnumerable;
|
|
446
|
-
var createPropertyDescriptor$
|
|
446
|
+
var createPropertyDescriptor$2 = createPropertyDescriptor$3;
|
|
447
447
|
var toIndexedObject$3 = toIndexedObject$4;
|
|
448
448
|
var toPropertyKey$1 = toPropertyKey$2;
|
|
449
|
-
var hasOwn$
|
|
449
|
+
var hasOwn$8 = hasOwnProperty_1;
|
|
450
450
|
var IE8_DOM_DEFINE$1 = ie8DomDefine;
|
|
451
451
|
|
|
452
452
|
// eslint-disable-next-line es/no-object-getownpropertydescriptor -- safe
|
|
@@ -454,23 +454,23 @@ var $getOwnPropertyDescriptor$1 = Object.getOwnPropertyDescriptor;
|
|
|
454
454
|
|
|
455
455
|
// `Object.getOwnPropertyDescriptor` method
|
|
456
456
|
// https://tc39.es/ecma262/#sec-object.getownpropertydescriptor
|
|
457
|
-
objectGetOwnPropertyDescriptor.f = DESCRIPTORS$
|
|
457
|
+
objectGetOwnPropertyDescriptor.f = DESCRIPTORS$9 ? $getOwnPropertyDescriptor$1 : function getOwnPropertyDescriptor(O, P) {
|
|
458
458
|
O = toIndexedObject$3(O);
|
|
459
459
|
P = toPropertyKey$1(P);
|
|
460
460
|
if (IE8_DOM_DEFINE$1) try {
|
|
461
461
|
return $getOwnPropertyDescriptor$1(O, P);
|
|
462
462
|
} catch (error) { /* empty */ }
|
|
463
|
-
if (hasOwn$
|
|
463
|
+
if (hasOwn$8(O, P)) return createPropertyDescriptor$2(!call$b(propertyIsEnumerableModule.f, O, P), O[P]);
|
|
464
464
|
};
|
|
465
465
|
|
|
466
466
|
var objectDefineProperty = {};
|
|
467
467
|
|
|
468
|
-
var DESCRIPTORS$
|
|
469
|
-
var fails$
|
|
468
|
+
var DESCRIPTORS$8 = descriptors;
|
|
469
|
+
var fails$9 = fails$f;
|
|
470
470
|
|
|
471
471
|
// V8 ~ Chrome 36-
|
|
472
472
|
// https://bugs.chromium.org/p/v8/issues/detail?id=3334
|
|
473
|
-
var v8PrototypeDefineBug = DESCRIPTORS$
|
|
473
|
+
var v8PrototypeDefineBug = DESCRIPTORS$8 && fails$9(function () {
|
|
474
474
|
// eslint-disable-next-line es/no-object-defineproperty -- required for testing
|
|
475
475
|
return Object.defineProperty(function () { /* empty */ }, 'prototype', {
|
|
476
476
|
value: 42,
|
|
@@ -478,21 +478,21 @@ var v8PrototypeDefineBug = DESCRIPTORS$7 && fails$8(function () {
|
|
|
478
478
|
}).prototype !== 42;
|
|
479
479
|
});
|
|
480
480
|
|
|
481
|
-
var isObject$
|
|
481
|
+
var isObject$7 = isObject$b;
|
|
482
482
|
|
|
483
483
|
var $String$3 = String;
|
|
484
484
|
var $TypeError$9 = TypeError;
|
|
485
485
|
|
|
486
486
|
// `Assert: Type(argument) is Object`
|
|
487
|
-
var anObject$
|
|
488
|
-
if (isObject$
|
|
487
|
+
var anObject$c = function (argument) {
|
|
488
|
+
if (isObject$7(argument)) return argument;
|
|
489
489
|
throw new $TypeError$9($String$3(argument) + ' is not an object');
|
|
490
490
|
};
|
|
491
491
|
|
|
492
|
-
var DESCRIPTORS$
|
|
492
|
+
var DESCRIPTORS$7 = descriptors;
|
|
493
493
|
var IE8_DOM_DEFINE = ie8DomDefine;
|
|
494
494
|
var V8_PROTOTYPE_DEFINE_BUG$1 = v8PrototypeDefineBug;
|
|
495
|
-
var anObject$
|
|
495
|
+
var anObject$b = anObject$c;
|
|
496
496
|
var toPropertyKey = toPropertyKey$2;
|
|
497
497
|
|
|
498
498
|
var $TypeError$8 = TypeError;
|
|
@@ -506,10 +506,10 @@ var WRITABLE = 'writable';
|
|
|
506
506
|
|
|
507
507
|
// `Object.defineProperty` method
|
|
508
508
|
// https://tc39.es/ecma262/#sec-object.defineproperty
|
|
509
|
-
objectDefineProperty.f = DESCRIPTORS$
|
|
510
|
-
anObject$
|
|
509
|
+
objectDefineProperty.f = DESCRIPTORS$7 ? V8_PROTOTYPE_DEFINE_BUG$1 ? function defineProperty(O, P, Attributes) {
|
|
510
|
+
anObject$b(O);
|
|
511
511
|
P = toPropertyKey(P);
|
|
512
|
-
anObject$
|
|
512
|
+
anObject$b(Attributes);
|
|
513
513
|
if (typeof O === 'function' && P === 'prototype' && 'value' in Attributes && WRITABLE in Attributes && !Attributes[WRITABLE]) {
|
|
514
514
|
var current = $getOwnPropertyDescriptor(O, P);
|
|
515
515
|
if (current && current[WRITABLE]) {
|
|
@@ -522,9 +522,9 @@ objectDefineProperty.f = DESCRIPTORS$6 ? V8_PROTOTYPE_DEFINE_BUG$1 ? function de
|
|
|
522
522
|
}
|
|
523
523
|
} return $defineProperty(O, P, Attributes);
|
|
524
524
|
} : $defineProperty : function defineProperty(O, P, Attributes) {
|
|
525
|
-
anObject$
|
|
525
|
+
anObject$b(O);
|
|
526
526
|
P = toPropertyKey(P);
|
|
527
|
-
anObject$
|
|
527
|
+
anObject$b(Attributes);
|
|
528
528
|
if (IE8_DOM_DEFINE) try {
|
|
529
529
|
return $defineProperty(O, P, Attributes);
|
|
530
530
|
} catch (error) { /* empty */ }
|
|
@@ -533,12 +533,12 @@ objectDefineProperty.f = DESCRIPTORS$6 ? V8_PROTOTYPE_DEFINE_BUG$1 ? function de
|
|
|
533
533
|
return O;
|
|
534
534
|
};
|
|
535
535
|
|
|
536
|
-
var DESCRIPTORS$
|
|
536
|
+
var DESCRIPTORS$6 = descriptors;
|
|
537
537
|
var definePropertyModule$3 = objectDefineProperty;
|
|
538
|
-
var createPropertyDescriptor = createPropertyDescriptor$
|
|
538
|
+
var createPropertyDescriptor$1 = createPropertyDescriptor$3;
|
|
539
539
|
|
|
540
|
-
var createNonEnumerableProperty$
|
|
541
|
-
return definePropertyModule$3.f(object, key, createPropertyDescriptor(1, value));
|
|
540
|
+
var createNonEnumerableProperty$6 = DESCRIPTORS$6 ? function (object, key, value) {
|
|
541
|
+
return definePropertyModule$3.f(object, key, createPropertyDescriptor$1(1, value));
|
|
542
542
|
} : function (object, key, value) {
|
|
543
543
|
object[key] = value;
|
|
544
544
|
return object;
|
|
@@ -546,17 +546,17 @@ var createNonEnumerableProperty$3 = DESCRIPTORS$5 ? function (object, key, value
|
|
|
546
546
|
|
|
547
547
|
var makeBuiltIn$3 = {exports: {}};
|
|
548
548
|
|
|
549
|
-
var DESCRIPTORS$
|
|
550
|
-
var hasOwn$
|
|
549
|
+
var DESCRIPTORS$5 = descriptors;
|
|
550
|
+
var hasOwn$7 = hasOwnProperty_1;
|
|
551
551
|
|
|
552
552
|
var FunctionPrototype$1 = Function.prototype;
|
|
553
553
|
// eslint-disable-next-line es/no-object-getownpropertydescriptor -- safe
|
|
554
|
-
var getDescriptor = DESCRIPTORS$
|
|
554
|
+
var getDescriptor = DESCRIPTORS$5 && Object.getOwnPropertyDescriptor;
|
|
555
555
|
|
|
556
|
-
var EXISTS = hasOwn$
|
|
556
|
+
var EXISTS = hasOwn$7(FunctionPrototype$1, 'name');
|
|
557
557
|
// additional protection from minified / mangled / dropped function names
|
|
558
558
|
var PROPER = EXISTS && (function something() { /* empty */ }).name === 'something';
|
|
559
|
-
var CONFIGURABLE = EXISTS && (!DESCRIPTORS$
|
|
559
|
+
var CONFIGURABLE = EXISTS && (!DESCRIPTORS$5 || (DESCRIPTORS$5 && getDescriptor(FunctionPrototype$1, 'name').configurable));
|
|
560
560
|
|
|
561
561
|
var functionName = {
|
|
562
562
|
EXISTS: EXISTS,
|
|
@@ -564,14 +564,14 @@ var functionName = {
|
|
|
564
564
|
CONFIGURABLE: CONFIGURABLE
|
|
565
565
|
};
|
|
566
566
|
|
|
567
|
-
var uncurryThis$
|
|
568
|
-
var isCallable$
|
|
569
|
-
var store$1 =
|
|
567
|
+
var uncurryThis$a = functionUncurryThis;
|
|
568
|
+
var isCallable$c = isCallable$i;
|
|
569
|
+
var store$1 = sharedStoreExports;
|
|
570
570
|
|
|
571
|
-
var functionToString = uncurryThis$
|
|
571
|
+
var functionToString = uncurryThis$a(Function.toString);
|
|
572
572
|
|
|
573
573
|
// this helper broken in `core-js@3.4.1-3.4.4`, so we can't use `shared` helper
|
|
574
|
-
if (!isCallable$
|
|
574
|
+
if (!isCallable$c(store$1.inspectSource)) {
|
|
575
575
|
store$1.inspectSource = function (it) {
|
|
576
576
|
return functionToString(it);
|
|
577
577
|
};
|
|
@@ -579,14 +579,14 @@ if (!isCallable$b(store$1.inspectSource)) {
|
|
|
579
579
|
|
|
580
580
|
var inspectSource$3 = store$1.inspectSource;
|
|
581
581
|
|
|
582
|
-
var global$
|
|
583
|
-
var isCallable$
|
|
582
|
+
var global$e = global$l;
|
|
583
|
+
var isCallable$b = isCallable$i;
|
|
584
584
|
|
|
585
|
-
var WeakMap$1 = global$
|
|
585
|
+
var WeakMap$1 = global$e.WeakMap;
|
|
586
586
|
|
|
587
|
-
var weakMapBasicDetection = isCallable$
|
|
587
|
+
var weakMapBasicDetection = isCallable$b(WeakMap$1) && /native code/.test(String(WeakMap$1));
|
|
588
588
|
|
|
589
|
-
var shared$2 = shared$4
|
|
589
|
+
var shared$2 = shared$4;
|
|
590
590
|
var uid = uid$2;
|
|
591
591
|
|
|
592
592
|
var keys = shared$2('keys');
|
|
@@ -598,17 +598,17 @@ var sharedKey$2 = function (key) {
|
|
|
598
598
|
var hiddenKeys$4 = {};
|
|
599
599
|
|
|
600
600
|
var NATIVE_WEAK_MAP = weakMapBasicDetection;
|
|
601
|
-
var global$
|
|
602
|
-
var isObject$
|
|
603
|
-
var createNonEnumerableProperty$
|
|
604
|
-
var hasOwn$
|
|
605
|
-
var shared$1 =
|
|
601
|
+
var global$d = global$l;
|
|
602
|
+
var isObject$6 = isObject$b;
|
|
603
|
+
var createNonEnumerableProperty$5 = createNonEnumerableProperty$6;
|
|
604
|
+
var hasOwn$6 = hasOwnProperty_1;
|
|
605
|
+
var shared$1 = sharedStoreExports;
|
|
606
606
|
var sharedKey$1 = sharedKey$2;
|
|
607
607
|
var hiddenKeys$3 = hiddenKeys$4;
|
|
608
608
|
|
|
609
609
|
var OBJECT_ALREADY_INITIALIZED = 'Object already initialized';
|
|
610
|
-
var TypeError$2 = global$
|
|
611
|
-
var WeakMap = global$
|
|
610
|
+
var TypeError$2 = global$d.TypeError;
|
|
611
|
+
var WeakMap = global$d.WeakMap;
|
|
612
612
|
var set$1, get, has;
|
|
613
613
|
|
|
614
614
|
var enforce = function (it) {
|
|
@@ -618,7 +618,7 @@ var enforce = function (it) {
|
|
|
618
618
|
var getterFor = function (TYPE) {
|
|
619
619
|
return function (it) {
|
|
620
620
|
var state;
|
|
621
|
-
if (!isObject$
|
|
621
|
+
if (!isObject$6(it) || (state = get(it)).type !== TYPE) {
|
|
622
622
|
throw new TypeError$2('Incompatible receiver, ' + TYPE + ' required');
|
|
623
623
|
} return state;
|
|
624
624
|
};
|
|
@@ -647,16 +647,16 @@ if (NATIVE_WEAK_MAP || shared$1.state) {
|
|
|
647
647
|
var STATE = sharedKey$1('state');
|
|
648
648
|
hiddenKeys$3[STATE] = true;
|
|
649
649
|
set$1 = function (it, metadata) {
|
|
650
|
-
if (hasOwn$
|
|
650
|
+
if (hasOwn$6(it, STATE)) throw new TypeError$2(OBJECT_ALREADY_INITIALIZED);
|
|
651
651
|
metadata.facade = it;
|
|
652
|
-
createNonEnumerableProperty$
|
|
652
|
+
createNonEnumerableProperty$5(it, STATE, metadata);
|
|
653
653
|
return metadata;
|
|
654
654
|
};
|
|
655
655
|
get = function (it) {
|
|
656
|
-
return hasOwn$
|
|
656
|
+
return hasOwn$6(it, STATE) ? it[STATE] : {};
|
|
657
657
|
};
|
|
658
658
|
has = function (it) {
|
|
659
|
-
return hasOwn$
|
|
659
|
+
return hasOwn$6(it, STATE);
|
|
660
660
|
};
|
|
661
661
|
}
|
|
662
662
|
|
|
@@ -668,11 +668,11 @@ var internalState = {
|
|
|
668
668
|
getterFor: getterFor
|
|
669
669
|
};
|
|
670
670
|
|
|
671
|
-
var uncurryThis$
|
|
672
|
-
var fails$
|
|
673
|
-
var isCallable$
|
|
674
|
-
var hasOwn$
|
|
675
|
-
var DESCRIPTORS$
|
|
671
|
+
var uncurryThis$9 = functionUncurryThis;
|
|
672
|
+
var fails$8 = fails$f;
|
|
673
|
+
var isCallable$a = isCallable$i;
|
|
674
|
+
var hasOwn$5 = hasOwnProperty_1;
|
|
675
|
+
var DESCRIPTORS$4 = descriptors;
|
|
676
676
|
var CONFIGURABLE_FUNCTION_NAME = functionName.CONFIGURABLE;
|
|
677
677
|
var inspectSource$2 = inspectSource$3;
|
|
678
678
|
var InternalStateModule$1 = internalState;
|
|
@@ -681,38 +681,38 @@ var enforceInternalState = InternalStateModule$1.enforce;
|
|
|
681
681
|
var getInternalState$1 = InternalStateModule$1.get;
|
|
682
682
|
var $String$2 = String;
|
|
683
683
|
// eslint-disable-next-line es/no-object-defineproperty -- safe
|
|
684
|
-
var defineProperty$
|
|
685
|
-
var stringSlice$1 = uncurryThis$
|
|
686
|
-
var replace$
|
|
687
|
-
var join = uncurryThis$
|
|
684
|
+
var defineProperty$3 = Object.defineProperty;
|
|
685
|
+
var stringSlice$1 = uncurryThis$9(''.slice);
|
|
686
|
+
var replace$2 = uncurryThis$9(''.replace);
|
|
687
|
+
var join = uncurryThis$9([].join);
|
|
688
688
|
|
|
689
|
-
var CONFIGURABLE_LENGTH = DESCRIPTORS$
|
|
690
|
-
return defineProperty$
|
|
689
|
+
var CONFIGURABLE_LENGTH = DESCRIPTORS$4 && !fails$8(function () {
|
|
690
|
+
return defineProperty$3(function () { /* empty */ }, 'length', { value: 8 }).length !== 8;
|
|
691
691
|
});
|
|
692
692
|
|
|
693
693
|
var TEMPLATE = String(String).split('String');
|
|
694
694
|
|
|
695
695
|
var makeBuiltIn$2 = makeBuiltIn$3.exports = function (value, name, options) {
|
|
696
696
|
if (stringSlice$1($String$2(name), 0, 7) === 'Symbol(') {
|
|
697
|
-
name = '[' + replace$
|
|
697
|
+
name = '[' + replace$2($String$2(name), /^Symbol\(([^)]*)\).*$/, '$1') + ']';
|
|
698
698
|
}
|
|
699
699
|
if (options && options.getter) name = 'get ' + name;
|
|
700
700
|
if (options && options.setter) name = 'set ' + name;
|
|
701
|
-
if (!hasOwn$
|
|
702
|
-
if (DESCRIPTORS$
|
|
701
|
+
if (!hasOwn$5(value, 'name') || (CONFIGURABLE_FUNCTION_NAME && value.name !== name)) {
|
|
702
|
+
if (DESCRIPTORS$4) defineProperty$3(value, 'name', { value: name, configurable: true });
|
|
703
703
|
else value.name = name;
|
|
704
704
|
}
|
|
705
|
-
if (CONFIGURABLE_LENGTH && options && hasOwn$
|
|
706
|
-
defineProperty$
|
|
705
|
+
if (CONFIGURABLE_LENGTH && options && hasOwn$5(options, 'arity') && value.length !== options.arity) {
|
|
706
|
+
defineProperty$3(value, 'length', { value: options.arity });
|
|
707
707
|
}
|
|
708
708
|
try {
|
|
709
|
-
if (options && hasOwn$
|
|
710
|
-
if (DESCRIPTORS$
|
|
709
|
+
if (options && hasOwn$5(options, 'constructor') && options.constructor) {
|
|
710
|
+
if (DESCRIPTORS$4) defineProperty$3(value, 'prototype', { writable: false });
|
|
711
711
|
// in V8 ~ Chrome 53, prototypes of some methods, like `Array.prototype.values`, are non-writable
|
|
712
712
|
} else if (value.prototype) value.prototype = undefined;
|
|
713
713
|
} catch (error) { /* empty */ }
|
|
714
714
|
var state = enforceInternalState(value);
|
|
715
|
-
if (!hasOwn$
|
|
715
|
+
if (!hasOwn$5(state, 'source')) {
|
|
716
716
|
state.source = join(TEMPLATE, typeof name == 'string' ? name : '');
|
|
717
717
|
} return value;
|
|
718
718
|
};
|
|
@@ -720,19 +720,21 @@ var makeBuiltIn$2 = makeBuiltIn$3.exports = function (value, name, options) {
|
|
|
720
720
|
// add fake Function#toString for correct work wrapped methods / constructors with methods like LoDash isNative
|
|
721
721
|
// eslint-disable-next-line no-extend-native -- required
|
|
722
722
|
Function.prototype.toString = makeBuiltIn$2(function toString() {
|
|
723
|
-
return isCallable$
|
|
723
|
+
return isCallable$a(this) && getInternalState$1(this).source || inspectSource$2(this);
|
|
724
724
|
}, 'toString');
|
|
725
725
|
|
|
726
|
-
var
|
|
726
|
+
var makeBuiltInExports = makeBuiltIn$3.exports;
|
|
727
|
+
|
|
728
|
+
var isCallable$9 = isCallable$i;
|
|
727
729
|
var definePropertyModule$2 = objectDefineProperty;
|
|
728
|
-
var makeBuiltIn$1 =
|
|
730
|
+
var makeBuiltIn$1 = makeBuiltInExports;
|
|
729
731
|
var defineGlobalProperty$1 = defineGlobalProperty$3;
|
|
730
732
|
|
|
731
733
|
var defineBuiltIn$4 = function (O, key, value, options) {
|
|
732
734
|
if (!options) options = {};
|
|
733
735
|
var simple = options.enumerable;
|
|
734
736
|
var name = options.name !== undefined ? options.name : key;
|
|
735
|
-
if (isCallable$
|
|
737
|
+
if (isCallable$9(value)) makeBuiltIn$1(value, name, options);
|
|
736
738
|
if (options.global) {
|
|
737
739
|
if (simple) O[key] = value;
|
|
738
740
|
else defineGlobalProperty$1(key, value);
|
|
@@ -815,6 +817,7 @@ var createMethod = function (IS_INCLUDES) {
|
|
|
815
817
|
return function ($this, el, fromIndex) {
|
|
816
818
|
var O = toIndexedObject$2($this);
|
|
817
819
|
var length = lengthOfArrayLike$1(O);
|
|
820
|
+
if (length === 0) return !IS_INCLUDES && -1;
|
|
818
821
|
var index = toAbsoluteIndex(fromIndex, length);
|
|
819
822
|
var value;
|
|
820
823
|
// Array#includes uses SameValueZero equality algorithm
|
|
@@ -839,22 +842,22 @@ var arrayIncludes = {
|
|
|
839
842
|
indexOf: createMethod(false)
|
|
840
843
|
};
|
|
841
844
|
|
|
842
|
-
var uncurryThis$
|
|
843
|
-
var hasOwn$
|
|
845
|
+
var uncurryThis$8 = functionUncurryThis;
|
|
846
|
+
var hasOwn$4 = hasOwnProperty_1;
|
|
844
847
|
var toIndexedObject$1 = toIndexedObject$4;
|
|
845
848
|
var indexOf$1 = arrayIncludes.indexOf;
|
|
846
849
|
var hiddenKeys$2 = hiddenKeys$4;
|
|
847
850
|
|
|
848
|
-
var push = uncurryThis$
|
|
851
|
+
var push = uncurryThis$8([].push);
|
|
849
852
|
|
|
850
853
|
var objectKeysInternal = function (object, names) {
|
|
851
854
|
var O = toIndexedObject$1(object);
|
|
852
855
|
var i = 0;
|
|
853
856
|
var result = [];
|
|
854
857
|
var key;
|
|
855
|
-
for (key in O) !hasOwn$
|
|
858
|
+
for (key in O) !hasOwn$4(hiddenKeys$2, key) && hasOwn$4(O, key) && push(result, key);
|
|
856
859
|
// Don't enum bug & hidden keys
|
|
857
|
-
while (names.length > i) if (hasOwn$
|
|
860
|
+
while (names.length > i) if (hasOwn$4(O, key = names[i++])) {
|
|
858
861
|
~indexOf$1(result, key) || push(result, key);
|
|
859
862
|
}
|
|
860
863
|
return result;
|
|
@@ -888,40 +891,40 @@ var objectGetOwnPropertySymbols = {};
|
|
|
888
891
|
// eslint-disable-next-line es/no-object-getownpropertysymbols -- safe
|
|
889
892
|
objectGetOwnPropertySymbols.f = Object.getOwnPropertySymbols;
|
|
890
893
|
|
|
891
|
-
var getBuiltIn$
|
|
892
|
-
var uncurryThis$
|
|
894
|
+
var getBuiltIn$6 = getBuiltIn$8;
|
|
895
|
+
var uncurryThis$7 = functionUncurryThis;
|
|
893
896
|
var getOwnPropertyNamesModule = objectGetOwnPropertyNames;
|
|
894
897
|
var getOwnPropertySymbolsModule = objectGetOwnPropertySymbols;
|
|
895
|
-
var anObject$
|
|
898
|
+
var anObject$a = anObject$c;
|
|
896
899
|
|
|
897
|
-
var concat = uncurryThis$
|
|
900
|
+
var concat = uncurryThis$7([].concat);
|
|
898
901
|
|
|
899
902
|
// all object keys, includes non-enumerable and symbols
|
|
900
|
-
var ownKeys$1 = getBuiltIn$
|
|
901
|
-
var keys = getOwnPropertyNamesModule.f(anObject$
|
|
903
|
+
var ownKeys$1 = getBuiltIn$6('Reflect', 'ownKeys') || function ownKeys(it) {
|
|
904
|
+
var keys = getOwnPropertyNamesModule.f(anObject$a(it));
|
|
902
905
|
var getOwnPropertySymbols = getOwnPropertySymbolsModule.f;
|
|
903
906
|
return getOwnPropertySymbols ? concat(keys, getOwnPropertySymbols(it)) : keys;
|
|
904
907
|
};
|
|
905
908
|
|
|
906
|
-
var hasOwn$
|
|
909
|
+
var hasOwn$3 = hasOwnProperty_1;
|
|
907
910
|
var ownKeys = ownKeys$1;
|
|
908
911
|
var getOwnPropertyDescriptorModule = objectGetOwnPropertyDescriptor;
|
|
909
912
|
var definePropertyModule$1 = objectDefineProperty;
|
|
910
913
|
|
|
911
|
-
var copyConstructorProperties$
|
|
914
|
+
var copyConstructorProperties$2 = function (target, source, exceptions) {
|
|
912
915
|
var keys = ownKeys(source);
|
|
913
916
|
var defineProperty = definePropertyModule$1.f;
|
|
914
917
|
var getOwnPropertyDescriptor = getOwnPropertyDescriptorModule.f;
|
|
915
918
|
for (var i = 0; i < keys.length; i++) {
|
|
916
919
|
var key = keys[i];
|
|
917
|
-
if (!hasOwn$
|
|
920
|
+
if (!hasOwn$3(target, key) && !(exceptions && hasOwn$3(exceptions, key))) {
|
|
918
921
|
defineProperty(target, key, getOwnPropertyDescriptor(source, key));
|
|
919
922
|
}
|
|
920
923
|
}
|
|
921
924
|
};
|
|
922
925
|
|
|
923
|
-
var fails$
|
|
924
|
-
var isCallable$
|
|
926
|
+
var fails$7 = fails$f;
|
|
927
|
+
var isCallable$8 = isCallable$i;
|
|
925
928
|
|
|
926
929
|
var replacement = /#|\.prototype\./;
|
|
927
930
|
|
|
@@ -929,7 +932,7 @@ var isForced$2 = function (feature, detection) {
|
|
|
929
932
|
var value = data[normalize(feature)];
|
|
930
933
|
return value === POLYFILL ? true
|
|
931
934
|
: value === NATIVE ? false
|
|
932
|
-
: isCallable$
|
|
935
|
+
: isCallable$8(detection) ? fails$7(detection)
|
|
933
936
|
: !!detection;
|
|
934
937
|
};
|
|
935
938
|
|
|
@@ -943,12 +946,12 @@ var POLYFILL = isForced$2.POLYFILL = 'P';
|
|
|
943
946
|
|
|
944
947
|
var isForced_1 = isForced$2;
|
|
945
948
|
|
|
946
|
-
var global$
|
|
949
|
+
var global$c = global$l;
|
|
947
950
|
var getOwnPropertyDescriptor$1 = objectGetOwnPropertyDescriptor.f;
|
|
948
|
-
var createNonEnumerableProperty$
|
|
951
|
+
var createNonEnumerableProperty$4 = createNonEnumerableProperty$6;
|
|
949
952
|
var defineBuiltIn$3 = defineBuiltIn$4;
|
|
950
953
|
var defineGlobalProperty = defineGlobalProperty$3;
|
|
951
|
-
var copyConstructorProperties = copyConstructorProperties$
|
|
954
|
+
var copyConstructorProperties$1 = copyConstructorProperties$2;
|
|
952
955
|
var isForced$1 = isForced_1;
|
|
953
956
|
|
|
954
957
|
/*
|
|
@@ -972,11 +975,11 @@ var _export = function (options, source) {
|
|
|
972
975
|
var STATIC = options.stat;
|
|
973
976
|
var FORCED, target, key, targetProperty, sourceProperty, descriptor;
|
|
974
977
|
if (GLOBAL) {
|
|
975
|
-
target = global$
|
|
978
|
+
target = global$c;
|
|
976
979
|
} else if (STATIC) {
|
|
977
|
-
target = global$
|
|
980
|
+
target = global$c[TARGET] || defineGlobalProperty(TARGET, {});
|
|
978
981
|
} else {
|
|
979
|
-
target = global$
|
|
982
|
+
target = global$c[TARGET] && global$c[TARGET].prototype;
|
|
980
983
|
}
|
|
981
984
|
if (target) for (key in source) {
|
|
982
985
|
sourceProperty = source[key];
|
|
@@ -988,35 +991,41 @@ var _export = function (options, source) {
|
|
|
988
991
|
// contained in target
|
|
989
992
|
if (!FORCED && targetProperty !== undefined) {
|
|
990
993
|
if (typeof sourceProperty == typeof targetProperty) continue;
|
|
991
|
-
copyConstructorProperties(sourceProperty, targetProperty);
|
|
994
|
+
copyConstructorProperties$1(sourceProperty, targetProperty);
|
|
992
995
|
}
|
|
993
996
|
// add a flag to not completely full polyfills
|
|
994
997
|
if (options.sham || (targetProperty && targetProperty.sham)) {
|
|
995
|
-
createNonEnumerableProperty$
|
|
998
|
+
createNonEnumerableProperty$4(sourceProperty, 'sham', true);
|
|
996
999
|
}
|
|
997
1000
|
defineBuiltIn$3(target, key, sourceProperty, options);
|
|
998
1001
|
}
|
|
999
1002
|
};
|
|
1000
1003
|
|
|
1001
|
-
var
|
|
1002
|
-
var classof$5 = classofRaw$2;
|
|
1004
|
+
var NATIVE_BIND$1 = functionBindNative;
|
|
1003
1005
|
|
|
1004
|
-
var
|
|
1006
|
+
var FunctionPrototype = Function.prototype;
|
|
1007
|
+
var apply$2 = FunctionPrototype.apply;
|
|
1008
|
+
var call$a = FunctionPrototype.call;
|
|
1005
1009
|
|
|
1006
|
-
|
|
1010
|
+
// eslint-disable-next-line es/no-reflect -- safe
|
|
1011
|
+
var functionApply = typeof Reflect == 'object' && Reflect.apply || (NATIVE_BIND$1 ? call$a.bind(apply$2) : function () {
|
|
1012
|
+
return call$a.apply(apply$2, arguments);
|
|
1013
|
+
});
|
|
1014
|
+
|
|
1015
|
+
var uncurryThis$6 = functionUncurryThis;
|
|
1007
1016
|
var aCallable$6 = aCallable$8;
|
|
1008
1017
|
|
|
1009
1018
|
var functionUncurryThisAccessor = function (object, key, method) {
|
|
1010
1019
|
try {
|
|
1011
1020
|
// eslint-disable-next-line es/no-object-getownpropertydescriptor -- safe
|
|
1012
|
-
return uncurryThis$
|
|
1021
|
+
return uncurryThis$6(aCallable$6(Object.getOwnPropertyDescriptor(object, key)[method]));
|
|
1013
1022
|
} catch (error) { /* empty */ }
|
|
1014
1023
|
};
|
|
1015
1024
|
|
|
1016
|
-
var isObject$
|
|
1025
|
+
var isObject$5 = isObject$b;
|
|
1017
1026
|
|
|
1018
1027
|
var isPossiblePrototype$1 = function (argument) {
|
|
1019
|
-
return isObject$
|
|
1028
|
+
return isObject$5(argument) || argument === null;
|
|
1020
1029
|
};
|
|
1021
1030
|
|
|
1022
1031
|
var isPossiblePrototype = isPossiblePrototype$1;
|
|
@@ -1031,7 +1040,8 @@ var aPossiblePrototype$1 = function (argument) {
|
|
|
1031
1040
|
|
|
1032
1041
|
/* eslint-disable no-proto -- safe */
|
|
1033
1042
|
var uncurryThisAccessor = functionUncurryThisAccessor;
|
|
1034
|
-
var
|
|
1043
|
+
var isObject$4 = isObject$b;
|
|
1044
|
+
var requireObjectCoercible$1 = requireObjectCoercible$4;
|
|
1035
1045
|
var aPossiblePrototype = aPossiblePrototype$1;
|
|
1036
1046
|
|
|
1037
1047
|
// `Object.setPrototypeOf` method
|
|
@@ -1048,28 +1058,291 @@ var objectSetPrototypeOf = Object.setPrototypeOf || ('__proto__' in {} ? functio
|
|
|
1048
1058
|
CORRECT_SETTER = test instanceof Array;
|
|
1049
1059
|
} catch (error) { /* empty */ }
|
|
1050
1060
|
return function setPrototypeOf(O, proto) {
|
|
1051
|
-
|
|
1061
|
+
requireObjectCoercible$1(O);
|
|
1052
1062
|
aPossiblePrototype(proto);
|
|
1063
|
+
if (!isObject$4(O)) return O;
|
|
1053
1064
|
if (CORRECT_SETTER) setter(O, proto);
|
|
1054
1065
|
else O.__proto__ = proto;
|
|
1055
1066
|
return O;
|
|
1056
1067
|
};
|
|
1057
1068
|
}() : undefined);
|
|
1058
1069
|
|
|
1059
|
-
var defineProperty$
|
|
1060
|
-
|
|
1070
|
+
var defineProperty$2 = objectDefineProperty.f;
|
|
1071
|
+
|
|
1072
|
+
var proxyAccessor$1 = function (Target, Source, key) {
|
|
1073
|
+
key in Target || defineProperty$2(Target, key, {
|
|
1074
|
+
configurable: true,
|
|
1075
|
+
get: function () { return Source[key]; },
|
|
1076
|
+
set: function (it) { Source[key] = it; }
|
|
1077
|
+
});
|
|
1078
|
+
};
|
|
1079
|
+
|
|
1080
|
+
var isCallable$7 = isCallable$i;
|
|
1081
|
+
var isObject$3 = isObject$b;
|
|
1082
|
+
var setPrototypeOf$2 = objectSetPrototypeOf;
|
|
1083
|
+
|
|
1084
|
+
// makes subclassing work correct for wrapped built-ins
|
|
1085
|
+
var inheritIfRequired$1 = function ($this, dummy, Wrapper) {
|
|
1086
|
+
var NewTarget, NewTargetPrototype;
|
|
1087
|
+
if (
|
|
1088
|
+
// it can work only with native `setPrototypeOf`
|
|
1089
|
+
setPrototypeOf$2 &&
|
|
1090
|
+
// we haven't completely correct pre-ES6 way for getting `new.target`, so use this
|
|
1091
|
+
isCallable$7(NewTarget = dummy.constructor) &&
|
|
1092
|
+
NewTarget !== Wrapper &&
|
|
1093
|
+
isObject$3(NewTargetPrototype = NewTarget.prototype) &&
|
|
1094
|
+
NewTargetPrototype !== Wrapper.prototype
|
|
1095
|
+
) setPrototypeOf$2($this, NewTargetPrototype);
|
|
1096
|
+
return $this;
|
|
1097
|
+
};
|
|
1098
|
+
|
|
1061
1099
|
var wellKnownSymbol$9 = wellKnownSymbol$b;
|
|
1062
1100
|
|
|
1063
1101
|
var TO_STRING_TAG$2 = wellKnownSymbol$9('toStringTag');
|
|
1102
|
+
var test = {};
|
|
1103
|
+
|
|
1104
|
+
test[TO_STRING_TAG$2] = 'z';
|
|
1105
|
+
|
|
1106
|
+
var toStringTagSupport = String(test) === '[object z]';
|
|
1107
|
+
|
|
1108
|
+
var TO_STRING_TAG_SUPPORT = toStringTagSupport;
|
|
1109
|
+
var isCallable$6 = isCallable$i;
|
|
1110
|
+
var classofRaw$1 = classofRaw$2;
|
|
1111
|
+
var wellKnownSymbol$8 = wellKnownSymbol$b;
|
|
1112
|
+
|
|
1113
|
+
var TO_STRING_TAG$1 = wellKnownSymbol$8('toStringTag');
|
|
1114
|
+
var $Object = Object;
|
|
1115
|
+
|
|
1116
|
+
// ES3 wrong here
|
|
1117
|
+
var CORRECT_ARGUMENTS = classofRaw$1(function () { return arguments; }()) === 'Arguments';
|
|
1118
|
+
|
|
1119
|
+
// fallback for IE11 Script Access Denied error
|
|
1120
|
+
var tryGet = function (it, key) {
|
|
1121
|
+
try {
|
|
1122
|
+
return it[key];
|
|
1123
|
+
} catch (error) { /* empty */ }
|
|
1124
|
+
};
|
|
1125
|
+
|
|
1126
|
+
// getting tag from ES6+ `Object.prototype.toString`
|
|
1127
|
+
var classof$5 = TO_STRING_TAG_SUPPORT ? classofRaw$1 : function (it) {
|
|
1128
|
+
var O, tag, result;
|
|
1129
|
+
return it === undefined ? 'Undefined' : it === null ? 'Null'
|
|
1130
|
+
// @@toStringTag case
|
|
1131
|
+
: typeof (tag = tryGet(O = $Object(it), TO_STRING_TAG$1)) == 'string' ? tag
|
|
1132
|
+
// builtinTag case
|
|
1133
|
+
: CORRECT_ARGUMENTS ? classofRaw$1(O)
|
|
1134
|
+
// ES3 arguments fallback
|
|
1135
|
+
: (result = classofRaw$1(O)) === 'Object' && isCallable$6(O.callee) ? 'Arguments' : result;
|
|
1136
|
+
};
|
|
1137
|
+
|
|
1138
|
+
var classof$4 = classof$5;
|
|
1139
|
+
|
|
1140
|
+
var $String = String;
|
|
1141
|
+
|
|
1142
|
+
var toString$3 = function (argument) {
|
|
1143
|
+
if (classof$4(argument) === 'Symbol') throw new TypeError('Cannot convert a Symbol value to a string');
|
|
1144
|
+
return $String(argument);
|
|
1145
|
+
};
|
|
1146
|
+
|
|
1147
|
+
var toString$2 = toString$3;
|
|
1148
|
+
|
|
1149
|
+
var normalizeStringArgument$1 = function (argument, $default) {
|
|
1150
|
+
return argument === undefined ? arguments.length < 2 ? '' : $default : toString$2(argument);
|
|
1151
|
+
};
|
|
1152
|
+
|
|
1153
|
+
var isObject$2 = isObject$b;
|
|
1154
|
+
var createNonEnumerableProperty$3 = createNonEnumerableProperty$6;
|
|
1155
|
+
|
|
1156
|
+
// `InstallErrorCause` abstract operation
|
|
1157
|
+
// https://tc39.es/proposal-error-cause/#sec-errorobjects-install-error-cause
|
|
1158
|
+
var installErrorCause$1 = function (O, options) {
|
|
1159
|
+
if (isObject$2(options) && 'cause' in options) {
|
|
1160
|
+
createNonEnumerableProperty$3(O, 'cause', options.cause);
|
|
1161
|
+
}
|
|
1162
|
+
};
|
|
1163
|
+
|
|
1164
|
+
var uncurryThis$5 = functionUncurryThis;
|
|
1165
|
+
|
|
1166
|
+
var $Error = Error;
|
|
1167
|
+
var replace$1 = uncurryThis$5(''.replace);
|
|
1168
|
+
|
|
1169
|
+
var TEST = (function (arg) { return String(new $Error(arg).stack); })('zxcasd');
|
|
1170
|
+
// eslint-disable-next-line redos/no-vulnerable -- safe
|
|
1171
|
+
var V8_OR_CHAKRA_STACK_ENTRY = /\n\s*at [^:]*:[^\n]*/;
|
|
1172
|
+
var IS_V8_OR_CHAKRA_STACK = V8_OR_CHAKRA_STACK_ENTRY.test(TEST);
|
|
1173
|
+
|
|
1174
|
+
var errorStackClear = function (stack, dropEntries) {
|
|
1175
|
+
if (IS_V8_OR_CHAKRA_STACK && typeof stack == 'string' && !$Error.prepareStackTrace) {
|
|
1176
|
+
while (dropEntries--) stack = replace$1(stack, V8_OR_CHAKRA_STACK_ENTRY, '');
|
|
1177
|
+
} return stack;
|
|
1178
|
+
};
|
|
1179
|
+
|
|
1180
|
+
var fails$6 = fails$f;
|
|
1181
|
+
var createPropertyDescriptor = createPropertyDescriptor$3;
|
|
1182
|
+
|
|
1183
|
+
var errorStackInstallable = !fails$6(function () {
|
|
1184
|
+
var error = new Error('a');
|
|
1185
|
+
if (!('stack' in error)) return true;
|
|
1186
|
+
// eslint-disable-next-line es/no-object-defineproperty -- safe
|
|
1187
|
+
Object.defineProperty(error, 'stack', createPropertyDescriptor(1, 7));
|
|
1188
|
+
return error.stack !== 7;
|
|
1189
|
+
});
|
|
1190
|
+
|
|
1191
|
+
var createNonEnumerableProperty$2 = createNonEnumerableProperty$6;
|
|
1192
|
+
var clearErrorStack = errorStackClear;
|
|
1193
|
+
var ERROR_STACK_INSTALLABLE = errorStackInstallable;
|
|
1194
|
+
|
|
1195
|
+
// non-standard V8
|
|
1196
|
+
var captureStackTrace = Error.captureStackTrace;
|
|
1197
|
+
|
|
1198
|
+
var errorStackInstall = function (error, C, stack, dropEntries) {
|
|
1199
|
+
if (ERROR_STACK_INSTALLABLE) {
|
|
1200
|
+
if (captureStackTrace) captureStackTrace(error, C);
|
|
1201
|
+
else createNonEnumerableProperty$2(error, 'stack', clearErrorStack(stack, dropEntries));
|
|
1202
|
+
}
|
|
1203
|
+
};
|
|
1204
|
+
|
|
1205
|
+
var getBuiltIn$5 = getBuiltIn$8;
|
|
1206
|
+
var hasOwn$2 = hasOwnProperty_1;
|
|
1207
|
+
var createNonEnumerableProperty$1 = createNonEnumerableProperty$6;
|
|
1208
|
+
var isPrototypeOf$2 = objectIsPrototypeOf;
|
|
1209
|
+
var setPrototypeOf$1 = objectSetPrototypeOf;
|
|
1210
|
+
var copyConstructorProperties = copyConstructorProperties$2;
|
|
1211
|
+
var proxyAccessor = proxyAccessor$1;
|
|
1212
|
+
var inheritIfRequired = inheritIfRequired$1;
|
|
1213
|
+
var normalizeStringArgument = normalizeStringArgument$1;
|
|
1214
|
+
var installErrorCause = installErrorCause$1;
|
|
1215
|
+
var installErrorStack = errorStackInstall;
|
|
1216
|
+
var DESCRIPTORS$3 = descriptors;
|
|
1217
|
+
|
|
1218
|
+
var wrapErrorConstructorWithCause$1 = function (FULL_NAME, wrapper, FORCED, IS_AGGREGATE_ERROR) {
|
|
1219
|
+
var STACK_TRACE_LIMIT = 'stackTraceLimit';
|
|
1220
|
+
var OPTIONS_POSITION = IS_AGGREGATE_ERROR ? 2 : 1;
|
|
1221
|
+
var path = FULL_NAME.split('.');
|
|
1222
|
+
var ERROR_NAME = path[path.length - 1];
|
|
1223
|
+
var OriginalError = getBuiltIn$5.apply(null, path);
|
|
1224
|
+
|
|
1225
|
+
if (!OriginalError) return;
|
|
1226
|
+
|
|
1227
|
+
var OriginalErrorPrototype = OriginalError.prototype;
|
|
1228
|
+
|
|
1229
|
+
// V8 9.3- bug https://bugs.chromium.org/p/v8/issues/detail?id=12006
|
|
1230
|
+
if (hasOwn$2(OriginalErrorPrototype, 'cause')) delete OriginalErrorPrototype.cause;
|
|
1231
|
+
|
|
1232
|
+
if (!FORCED) return OriginalError;
|
|
1233
|
+
|
|
1234
|
+
var BaseError = getBuiltIn$5('Error');
|
|
1235
|
+
|
|
1236
|
+
var WrappedError = wrapper(function (a, b) {
|
|
1237
|
+
var message = normalizeStringArgument(IS_AGGREGATE_ERROR ? b : a, undefined);
|
|
1238
|
+
var result = IS_AGGREGATE_ERROR ? new OriginalError(a) : new OriginalError();
|
|
1239
|
+
if (message !== undefined) createNonEnumerableProperty$1(result, 'message', message);
|
|
1240
|
+
installErrorStack(result, WrappedError, result.stack, 2);
|
|
1241
|
+
if (this && isPrototypeOf$2(OriginalErrorPrototype, this)) inheritIfRequired(result, this, WrappedError);
|
|
1242
|
+
if (arguments.length > OPTIONS_POSITION) installErrorCause(result, arguments[OPTIONS_POSITION]);
|
|
1243
|
+
return result;
|
|
1244
|
+
});
|
|
1245
|
+
|
|
1246
|
+
WrappedError.prototype = OriginalErrorPrototype;
|
|
1247
|
+
|
|
1248
|
+
if (ERROR_NAME !== 'Error') {
|
|
1249
|
+
if (setPrototypeOf$1) setPrototypeOf$1(WrappedError, BaseError);
|
|
1250
|
+
else copyConstructorProperties(WrappedError, BaseError, { name: true });
|
|
1251
|
+
} else if (DESCRIPTORS$3 && STACK_TRACE_LIMIT in OriginalError) {
|
|
1252
|
+
proxyAccessor(WrappedError, OriginalError, STACK_TRACE_LIMIT);
|
|
1253
|
+
proxyAccessor(WrappedError, OriginalError, 'prepareStackTrace');
|
|
1254
|
+
}
|
|
1255
|
+
|
|
1256
|
+
copyConstructorProperties(WrappedError, OriginalError);
|
|
1257
|
+
|
|
1258
|
+
try {
|
|
1259
|
+
// Safari 13- bug: WebAssembly errors does not have a proper `.name`
|
|
1260
|
+
if (OriginalErrorPrototype.name !== ERROR_NAME) {
|
|
1261
|
+
createNonEnumerableProperty$1(OriginalErrorPrototype, 'name', ERROR_NAME);
|
|
1262
|
+
}
|
|
1263
|
+
OriginalErrorPrototype.constructor = WrappedError;
|
|
1264
|
+
} catch (error) { /* empty */ }
|
|
1265
|
+
|
|
1266
|
+
return WrappedError;
|
|
1267
|
+
};
|
|
1268
|
+
|
|
1269
|
+
/* eslint-disable no-unused-vars -- required for functions `.length` */
|
|
1270
|
+
var $$7 = _export;
|
|
1271
|
+
var global$b = global$l;
|
|
1272
|
+
var apply$1 = functionApply;
|
|
1273
|
+
var wrapErrorConstructorWithCause = wrapErrorConstructorWithCause$1;
|
|
1274
|
+
|
|
1275
|
+
var WEB_ASSEMBLY = 'WebAssembly';
|
|
1276
|
+
var WebAssembly = global$b[WEB_ASSEMBLY];
|
|
1277
|
+
|
|
1278
|
+
// eslint-disable-next-line es/no-error-cause -- feature detection
|
|
1279
|
+
var FORCED = new Error('e', { cause: 7 }).cause !== 7;
|
|
1280
|
+
|
|
1281
|
+
var exportGlobalErrorCauseWrapper = function (ERROR_NAME, wrapper) {
|
|
1282
|
+
var O = {};
|
|
1283
|
+
O[ERROR_NAME] = wrapErrorConstructorWithCause(ERROR_NAME, wrapper, FORCED);
|
|
1284
|
+
$$7({ global: true, constructor: true, arity: 1, forced: FORCED }, O);
|
|
1285
|
+
};
|
|
1286
|
+
|
|
1287
|
+
var exportWebAssemblyErrorCauseWrapper = function (ERROR_NAME, wrapper) {
|
|
1288
|
+
if (WebAssembly && WebAssembly[ERROR_NAME]) {
|
|
1289
|
+
var O = {};
|
|
1290
|
+
O[ERROR_NAME] = wrapErrorConstructorWithCause(WEB_ASSEMBLY + '.' + ERROR_NAME, wrapper, FORCED);
|
|
1291
|
+
$$7({ target: WEB_ASSEMBLY, stat: true, constructor: true, arity: 1, forced: FORCED }, O);
|
|
1292
|
+
}
|
|
1293
|
+
};
|
|
1294
|
+
|
|
1295
|
+
// https://tc39.es/ecma262/#sec-nativeerror
|
|
1296
|
+
exportGlobalErrorCauseWrapper('Error', function (init) {
|
|
1297
|
+
return function Error(message) { return apply$1(init, this, arguments); };
|
|
1298
|
+
});
|
|
1299
|
+
exportGlobalErrorCauseWrapper('EvalError', function (init) {
|
|
1300
|
+
return function EvalError(message) { return apply$1(init, this, arguments); };
|
|
1301
|
+
});
|
|
1302
|
+
exportGlobalErrorCauseWrapper('RangeError', function (init) {
|
|
1303
|
+
return function RangeError(message) { return apply$1(init, this, arguments); };
|
|
1304
|
+
});
|
|
1305
|
+
exportGlobalErrorCauseWrapper('ReferenceError', function (init) {
|
|
1306
|
+
return function ReferenceError(message) { return apply$1(init, this, arguments); };
|
|
1307
|
+
});
|
|
1308
|
+
exportGlobalErrorCauseWrapper('SyntaxError', function (init) {
|
|
1309
|
+
return function SyntaxError(message) { return apply$1(init, this, arguments); };
|
|
1310
|
+
});
|
|
1311
|
+
exportGlobalErrorCauseWrapper('TypeError', function (init) {
|
|
1312
|
+
return function TypeError(message) { return apply$1(init, this, arguments); };
|
|
1313
|
+
});
|
|
1314
|
+
exportGlobalErrorCauseWrapper('URIError', function (init) {
|
|
1315
|
+
return function URIError(message) { return apply$1(init, this, arguments); };
|
|
1316
|
+
});
|
|
1317
|
+
exportWebAssemblyErrorCauseWrapper('CompileError', function (init) {
|
|
1318
|
+
return function CompileError(message) { return apply$1(init, this, arguments); };
|
|
1319
|
+
});
|
|
1320
|
+
exportWebAssemblyErrorCauseWrapper('LinkError', function (init) {
|
|
1321
|
+
return function LinkError(message) { return apply$1(init, this, arguments); };
|
|
1322
|
+
});
|
|
1323
|
+
exportWebAssemblyErrorCauseWrapper('RuntimeError', function (init) {
|
|
1324
|
+
return function RuntimeError(message) { return apply$1(init, this, arguments); };
|
|
1325
|
+
});
|
|
1326
|
+
|
|
1327
|
+
var global$a = global$l;
|
|
1328
|
+
var classof$3 = classofRaw$2;
|
|
1329
|
+
|
|
1330
|
+
var engineIsNode = classof$3(global$a.process) === 'process';
|
|
1331
|
+
|
|
1332
|
+
var defineProperty$1 = objectDefineProperty.f;
|
|
1333
|
+
var hasOwn$1 = hasOwnProperty_1;
|
|
1334
|
+
var wellKnownSymbol$7 = wellKnownSymbol$b;
|
|
1335
|
+
|
|
1336
|
+
var TO_STRING_TAG = wellKnownSymbol$7('toStringTag');
|
|
1064
1337
|
|
|
1065
1338
|
var setToStringTag$1 = function (target, TAG, STATIC) {
|
|
1066
1339
|
if (target && !STATIC) target = target.prototype;
|
|
1067
|
-
if (target && !hasOwn$1(target, TO_STRING_TAG
|
|
1068
|
-
defineProperty$1(target, TO_STRING_TAG
|
|
1340
|
+
if (target && !hasOwn$1(target, TO_STRING_TAG)) {
|
|
1341
|
+
defineProperty$1(target, TO_STRING_TAG, { configurable: true, value: TAG });
|
|
1069
1342
|
}
|
|
1070
1343
|
};
|
|
1071
1344
|
|
|
1072
|
-
var makeBuiltIn =
|
|
1345
|
+
var makeBuiltIn = makeBuiltInExports;
|
|
1073
1346
|
var defineProperty = objectDefineProperty;
|
|
1074
1347
|
|
|
1075
1348
|
var defineBuiltInAccessor$1 = function (target, name, descriptor) {
|
|
@@ -1078,12 +1351,12 @@ var defineBuiltInAccessor$1 = function (target, name, descriptor) {
|
|
|
1078
1351
|
return defineProperty.f(target, name, descriptor);
|
|
1079
1352
|
};
|
|
1080
1353
|
|
|
1081
|
-
var getBuiltIn$4 = getBuiltIn$
|
|
1354
|
+
var getBuiltIn$4 = getBuiltIn$8;
|
|
1082
1355
|
var defineBuiltInAccessor = defineBuiltInAccessor$1;
|
|
1083
|
-
var wellKnownSymbol$
|
|
1356
|
+
var wellKnownSymbol$6 = wellKnownSymbol$b;
|
|
1084
1357
|
var DESCRIPTORS$2 = descriptors;
|
|
1085
1358
|
|
|
1086
|
-
var SPECIES$3 = wellKnownSymbol$
|
|
1359
|
+
var SPECIES$3 = wellKnownSymbol$6('species');
|
|
1087
1360
|
|
|
1088
1361
|
var setSpecies$1 = function (CONSTRUCTOR_NAME) {
|
|
1089
1362
|
var Constructor = getBuiltIn$4(CONSTRUCTOR_NAME);
|
|
@@ -1105,50 +1378,11 @@ var anInstance$1 = function (it, Prototype) {
|
|
|
1105
1378
|
throw new $TypeError$6('Incorrect invocation');
|
|
1106
1379
|
};
|
|
1107
1380
|
|
|
1108
|
-
var wellKnownSymbol$7 = wellKnownSymbol$b;
|
|
1109
|
-
|
|
1110
|
-
var TO_STRING_TAG$1 = wellKnownSymbol$7('toStringTag');
|
|
1111
|
-
var test = {};
|
|
1112
|
-
|
|
1113
|
-
test[TO_STRING_TAG$1] = 'z';
|
|
1114
|
-
|
|
1115
|
-
var toStringTagSupport = String(test) === '[object z]';
|
|
1116
|
-
|
|
1117
|
-
var TO_STRING_TAG_SUPPORT = toStringTagSupport;
|
|
1118
|
-
var isCallable$6 = isCallable$h;
|
|
1119
|
-
var classofRaw$1 = classofRaw$2;
|
|
1120
|
-
var wellKnownSymbol$6 = wellKnownSymbol$b;
|
|
1121
|
-
|
|
1122
|
-
var TO_STRING_TAG = wellKnownSymbol$6('toStringTag');
|
|
1123
|
-
var $Object = Object;
|
|
1124
|
-
|
|
1125
|
-
// ES3 wrong here
|
|
1126
|
-
var CORRECT_ARGUMENTS = classofRaw$1(function () { return arguments; }()) === 'Arguments';
|
|
1127
|
-
|
|
1128
|
-
// fallback for IE11 Script Access Denied error
|
|
1129
|
-
var tryGet = function (it, key) {
|
|
1130
|
-
try {
|
|
1131
|
-
return it[key];
|
|
1132
|
-
} catch (error) { /* empty */ }
|
|
1133
|
-
};
|
|
1134
|
-
|
|
1135
|
-
// getting tag from ES6+ `Object.prototype.toString`
|
|
1136
|
-
var classof$4 = TO_STRING_TAG_SUPPORT ? classofRaw$1 : function (it) {
|
|
1137
|
-
var O, tag, result;
|
|
1138
|
-
return it === undefined ? 'Undefined' : it === null ? 'Null'
|
|
1139
|
-
// @@toStringTag case
|
|
1140
|
-
: typeof (tag = tryGet(O = $Object(it), TO_STRING_TAG)) == 'string' ? tag
|
|
1141
|
-
// builtinTag case
|
|
1142
|
-
: CORRECT_ARGUMENTS ? classofRaw$1(O)
|
|
1143
|
-
// ES3 arguments fallback
|
|
1144
|
-
: (result = classofRaw$1(O)) === 'Object' && isCallable$6(O.callee) ? 'Arguments' : result;
|
|
1145
|
-
};
|
|
1146
|
-
|
|
1147
1381
|
var uncurryThis$4 = functionUncurryThis;
|
|
1148
|
-
var fails$5 = fails$
|
|
1149
|
-
var isCallable$5 = isCallable$
|
|
1150
|
-
var classof$
|
|
1151
|
-
var getBuiltIn$3 = getBuiltIn$
|
|
1382
|
+
var fails$5 = fails$f;
|
|
1383
|
+
var isCallable$5 = isCallable$i;
|
|
1384
|
+
var classof$2 = classof$5;
|
|
1385
|
+
var getBuiltIn$3 = getBuiltIn$8;
|
|
1152
1386
|
var inspectSource$1 = inspectSource$3;
|
|
1153
1387
|
|
|
1154
1388
|
var noop = function () { /* empty */ };
|
|
@@ -1169,7 +1403,7 @@ var isConstructorModern = function isConstructor(argument) {
|
|
|
1169
1403
|
|
|
1170
1404
|
var isConstructorLegacy = function isConstructor(argument) {
|
|
1171
1405
|
if (!isCallable$5(argument)) return false;
|
|
1172
|
-
switch (classof$
|
|
1406
|
+
switch (classof$2(argument)) {
|
|
1173
1407
|
case 'AsyncFunction':
|
|
1174
1408
|
case 'GeneratorFunction':
|
|
1175
1409
|
case 'AsyncGeneratorFunction': return false;
|
|
@@ -1207,7 +1441,7 @@ var aConstructor$1 = function (argument) {
|
|
|
1207
1441
|
throw new $TypeError$5(tryToString$2(argument) + ' is not a constructor');
|
|
1208
1442
|
};
|
|
1209
1443
|
|
|
1210
|
-
var anObject$9 = anObject$
|
|
1444
|
+
var anObject$9 = anObject$c;
|
|
1211
1445
|
var aConstructor = aConstructor$1;
|
|
1212
1446
|
var isNullOrUndefined$2 = isNullOrUndefined$5;
|
|
1213
1447
|
var wellKnownSymbol$5 = wellKnownSymbol$b;
|
|
@@ -1222,17 +1456,6 @@ var speciesConstructor$1 = function (O, defaultConstructor) {
|
|
|
1222
1456
|
return C === undefined || isNullOrUndefined$2(S = anObject$9(C)[SPECIES$2]) ? defaultConstructor : aConstructor(S);
|
|
1223
1457
|
};
|
|
1224
1458
|
|
|
1225
|
-
var NATIVE_BIND$1 = functionBindNative;
|
|
1226
|
-
|
|
1227
|
-
var FunctionPrototype = Function.prototype;
|
|
1228
|
-
var apply$1 = FunctionPrototype.apply;
|
|
1229
|
-
var call$a = FunctionPrototype.call;
|
|
1230
|
-
|
|
1231
|
-
// eslint-disable-next-line es/no-reflect -- safe
|
|
1232
|
-
var functionApply = typeof Reflect == 'object' && Reflect.apply || (NATIVE_BIND$1 ? call$a.bind(apply$1) : function () {
|
|
1233
|
-
return call$a.apply(apply$1, arguments);
|
|
1234
|
-
});
|
|
1235
|
-
|
|
1236
1459
|
var classofRaw = classofRaw$2;
|
|
1237
1460
|
var uncurryThis$3 = functionUncurryThis;
|
|
1238
1461
|
|
|
@@ -1257,7 +1480,7 @@ var functionBindContext = function (fn, that) {
|
|
|
1257
1480
|
};
|
|
1258
1481
|
};
|
|
1259
1482
|
|
|
1260
|
-
var getBuiltIn$2 = getBuiltIn$
|
|
1483
|
+
var getBuiltIn$2 = getBuiltIn$8;
|
|
1261
1484
|
|
|
1262
1485
|
var html$2 = getBuiltIn$2('document', 'documentElement');
|
|
1263
1486
|
|
|
@@ -1280,9 +1503,9 @@ var engineIsIos = /(?:ipad|iphone|ipod).*applewebkit/i.test(userAgent$2);
|
|
|
1280
1503
|
var global$9 = global$l;
|
|
1281
1504
|
var apply = functionApply;
|
|
1282
1505
|
var bind$3 = functionBindContext;
|
|
1283
|
-
var isCallable$4 = isCallable$
|
|
1506
|
+
var isCallable$4 = isCallable$i;
|
|
1284
1507
|
var hasOwn = hasOwnProperty_1;
|
|
1285
|
-
var fails$4 = fails$
|
|
1508
|
+
var fails$4 = fails$f;
|
|
1286
1509
|
var html$1 = html$2;
|
|
1287
1510
|
var arraySlice = arraySlice$1;
|
|
1288
1511
|
var createElement = documentCreateElement$1;
|
|
@@ -1550,7 +1773,7 @@ var engineIsBrowser = !IS_DENO$1 && !IS_NODE$1
|
|
|
1550
1773
|
|
|
1551
1774
|
var global$5 = global$l;
|
|
1552
1775
|
var NativePromiseConstructor$3 = promiseNativeConstructor;
|
|
1553
|
-
var isCallable$3 = isCallable$
|
|
1776
|
+
var isCallable$3 = isCallable$i;
|
|
1554
1777
|
var isForced = isForced_1;
|
|
1555
1778
|
var inspectSource = inspectSource$3;
|
|
1556
1779
|
var wellKnownSymbol$4 = wellKnownSymbol$b;
|
|
@@ -1625,8 +1848,8 @@ var setPrototypeOf = objectSetPrototypeOf;
|
|
|
1625
1848
|
var setToStringTag = setToStringTag$1;
|
|
1626
1849
|
var setSpecies = setSpecies$1;
|
|
1627
1850
|
var aCallable$3 = aCallable$8;
|
|
1628
|
-
var isCallable$2 = isCallable$
|
|
1629
|
-
var isObject$1 = isObject$
|
|
1851
|
+
var isCallable$2 = isCallable$i;
|
|
1852
|
+
var isObject$1 = isObject$b;
|
|
1630
1853
|
var anInstance = anInstance$1;
|
|
1631
1854
|
var speciesConstructor = speciesConstructor$1;
|
|
1632
1855
|
var task = task$1.set;
|
|
@@ -1916,7 +2139,7 @@ var isArrayIteratorMethod$1 = function (it) {
|
|
|
1916
2139
|
return it !== undefined && (Iterators$1.Array === it || ArrayPrototype[ITERATOR$2] === it);
|
|
1917
2140
|
};
|
|
1918
2141
|
|
|
1919
|
-
var classof$
|
|
2142
|
+
var classof$1 = classof$5;
|
|
1920
2143
|
var getMethod$2 = getMethod$4;
|
|
1921
2144
|
var isNullOrUndefined$1 = isNullOrUndefined$5;
|
|
1922
2145
|
var Iterators = iterators;
|
|
@@ -1927,12 +2150,12 @@ var ITERATOR$1 = wellKnownSymbol$2('iterator');
|
|
|
1927
2150
|
var getIteratorMethod$2 = function (it) {
|
|
1928
2151
|
if (!isNullOrUndefined$1(it)) return getMethod$2(it, ITERATOR$1)
|
|
1929
2152
|
|| getMethod$2(it, '@@iterator')
|
|
1930
|
-
|| Iterators[classof$
|
|
2153
|
+
|| Iterators[classof$1(it)];
|
|
1931
2154
|
};
|
|
1932
2155
|
|
|
1933
2156
|
var call$8 = functionCall;
|
|
1934
2157
|
var aCallable$2 = aCallable$8;
|
|
1935
|
-
var anObject$8 = anObject$
|
|
2158
|
+
var anObject$8 = anObject$c;
|
|
1936
2159
|
var tryToString$1 = tryToString$4;
|
|
1937
2160
|
var getIteratorMethod$1 = getIteratorMethod$2;
|
|
1938
2161
|
|
|
@@ -1945,7 +2168,7 @@ var getIterator$1 = function (argument, usingIterator) {
|
|
|
1945
2168
|
};
|
|
1946
2169
|
|
|
1947
2170
|
var call$7 = functionCall;
|
|
1948
|
-
var anObject$7 = anObject$
|
|
2171
|
+
var anObject$7 = anObject$c;
|
|
1949
2172
|
var getMethod$1 = getMethod$4;
|
|
1950
2173
|
|
|
1951
2174
|
var iteratorClose$1 = function (iterator, kind, value) {
|
|
@@ -1970,7 +2193,7 @@ var iteratorClose$1 = function (iterator, kind, value) {
|
|
|
1970
2193
|
|
|
1971
2194
|
var bind = functionBindContext;
|
|
1972
2195
|
var call$6 = functionCall;
|
|
1973
|
-
var anObject$6 = anObject$
|
|
2196
|
+
var anObject$6 = anObject$c;
|
|
1974
2197
|
var tryToString = tryToString$4;
|
|
1975
2198
|
var isArrayIteratorMethod = isArrayIteratorMethod$1;
|
|
1976
2199
|
var lengthOfArrayLike = lengthOfArrayLike$2;
|
|
@@ -2128,8 +2351,8 @@ $$5({ target: 'Promise', stat: true, forced: PROMISE_STATICS_INCORRECT_ITERATION
|
|
|
2128
2351
|
var $$4 = _export;
|
|
2129
2352
|
var FORCED_PROMISE_CONSTRUCTOR$2 = promiseConstructorDetection.CONSTRUCTOR;
|
|
2130
2353
|
var NativePromiseConstructor = promiseNativeConstructor;
|
|
2131
|
-
var getBuiltIn$1 = getBuiltIn$
|
|
2132
|
-
var isCallable$1 = isCallable$
|
|
2354
|
+
var getBuiltIn$1 = getBuiltIn$8;
|
|
2355
|
+
var isCallable$1 = isCallable$i;
|
|
2133
2356
|
var defineBuiltIn$1 = defineBuiltIn$4;
|
|
2134
2357
|
|
|
2135
2358
|
var NativePromisePrototype = NativePromiseConstructor && NativePromiseConstructor.prototype;
|
|
@@ -2191,8 +2414,8 @@ $$2({ target: 'Promise', stat: true, forced: FORCED_PROMISE_CONSTRUCTOR$1 }, {
|
|
|
2191
2414
|
}
|
|
2192
2415
|
});
|
|
2193
2416
|
|
|
2194
|
-
var anObject$5 = anObject$
|
|
2195
|
-
var isObject = isObject$
|
|
2417
|
+
var anObject$5 = anObject$c;
|
|
2418
|
+
var isObject = isObject$b;
|
|
2196
2419
|
var newPromiseCapability = newPromiseCapability$2;
|
|
2197
2420
|
|
|
2198
2421
|
var promiseResolve$1 = function (C, x) {
|
|
@@ -2205,7 +2428,7 @@ var promiseResolve$1 = function (C, x) {
|
|
|
2205
2428
|
};
|
|
2206
2429
|
|
|
2207
2430
|
var $$1 = _export;
|
|
2208
|
-
var getBuiltIn = getBuiltIn$
|
|
2431
|
+
var getBuiltIn = getBuiltIn$8;
|
|
2209
2432
|
var FORCED_PROMISE_CONSTRUCTOR = promiseConstructorDetection.CONSTRUCTOR;
|
|
2210
2433
|
var promiseResolve = promiseResolve$1;
|
|
2211
2434
|
|
|
@@ -2222,27 +2445,6 @@ $$1({ target: 'Promise', stat: true, forced: FORCED_PROMISE_CONSTRUCTOR }, {
|
|
|
2222
2445
|
/**
|
|
2223
2446
|
* Used for loading services in the browser that are imported from other scripts, such as Facebook, Segment, Stripe, etc.
|
|
2224
2447
|
*/
|
|
2225
|
-
|
|
2226
|
-
function _await(value, then, direct) {
|
|
2227
|
-
if (direct) {
|
|
2228
|
-
return then ? then(value) : value;
|
|
2229
|
-
}
|
|
2230
|
-
if (!value || !value.then) {
|
|
2231
|
-
value = Promise.resolve(value);
|
|
2232
|
-
}
|
|
2233
|
-
return then ? value.then(then) : value;
|
|
2234
|
-
}
|
|
2235
|
-
function _call(body, then, direct) {
|
|
2236
|
-
if (direct) {
|
|
2237
|
-
return then ? then(body()) : body();
|
|
2238
|
-
}
|
|
2239
|
-
try {
|
|
2240
|
-
var result = Promise.resolve(body());
|
|
2241
|
-
return then ? result.then(then) : result;
|
|
2242
|
-
} catch (e) {
|
|
2243
|
-
return Promise.reject(e);
|
|
2244
|
-
}
|
|
2245
|
-
}
|
|
2246
2448
|
class AbstractAsyncWindowLoadedService {
|
|
2247
2449
|
/**
|
|
2248
2450
|
* @param windowKey
|
|
@@ -2318,20 +2520,15 @@ class AbstractAsyncWindowLoadedService {
|
|
|
2318
2520
|
_onLoadServiceFailure() {
|
|
2319
2521
|
// override in parent if needed.
|
|
2320
2522
|
}
|
|
2321
|
-
completeLoadingService() {
|
|
2322
|
-
|
|
2323
|
-
|
|
2324
|
-
|
|
2325
|
-
|
|
2326
|
-
|
|
2327
|
-
|
|
2328
|
-
|
|
2329
|
-
|
|
2330
|
-
return _await(_this._initService(service), function (initializedService) {
|
|
2331
|
-
return initializedService != null ? initializedService : service;
|
|
2332
|
-
});
|
|
2333
|
-
});
|
|
2334
|
-
});
|
|
2523
|
+
async completeLoadingService() {
|
|
2524
|
+
await this._prepareCompleteLoadingService();
|
|
2525
|
+
const service = window[this._windowKey];
|
|
2526
|
+
if (!service) {
|
|
2527
|
+
throw new Error(`Service "${this._serviceName}" could not complete loading.`);
|
|
2528
|
+
}
|
|
2529
|
+
// Init the API
|
|
2530
|
+
const initializedService = await this._initService(service);
|
|
2531
|
+
return initializedService != null ? initializedService : service;
|
|
2335
2532
|
}
|
|
2336
2533
|
_prepareCompleteLoadingService() {
|
|
2337
2534
|
return Promise.resolve();
|
|
@@ -2360,16 +2557,7 @@ function watchWindowAndUpdateVh100StyleProperty(cssVariableName) {
|
|
|
2360
2557
|
refreshPropertyValue();
|
|
2361
2558
|
}
|
|
2362
2559
|
|
|
2363
|
-
var
|
|
2364
|
-
|
|
2365
|
-
var $String = String;
|
|
2366
|
-
|
|
2367
|
-
var toString$2 = function (argument) {
|
|
2368
|
-
if (classof$1(argument) === 'Symbol') throw new TypeError('Cannot convert a Symbol value to a string');
|
|
2369
|
-
return $String(argument);
|
|
2370
|
-
};
|
|
2371
|
-
|
|
2372
|
-
var anObject$4 = anObject$d;
|
|
2560
|
+
var anObject$4 = anObject$c;
|
|
2373
2561
|
|
|
2374
2562
|
// `RegExp.prototype.flags` getter implementation
|
|
2375
2563
|
// https://tc39.es/ecma262/#sec-get-regexp.prototype.flags
|
|
@@ -2387,7 +2575,7 @@ var regexpFlags$1 = function () {
|
|
|
2387
2575
|
return result;
|
|
2388
2576
|
};
|
|
2389
2577
|
|
|
2390
|
-
var fails$3 = fails$
|
|
2578
|
+
var fails$3 = fails$f;
|
|
2391
2579
|
var global$3 = global$l;
|
|
2392
2580
|
|
|
2393
2581
|
// babel-minify and Closure Compiler transpiles RegExp('a', 'y') -> /a/y and it causes SyntaxError
|
|
@@ -2433,7 +2621,7 @@ var objectKeys$1 = Object.keys || function keys(O) {
|
|
|
2433
2621
|
var DESCRIPTORS = descriptors;
|
|
2434
2622
|
var V8_PROTOTYPE_DEFINE_BUG = v8PrototypeDefineBug;
|
|
2435
2623
|
var definePropertyModule = objectDefineProperty;
|
|
2436
|
-
var anObject$3 = anObject$
|
|
2624
|
+
var anObject$3 = anObject$c;
|
|
2437
2625
|
var toIndexedObject = toIndexedObject$4;
|
|
2438
2626
|
var objectKeys = objectKeys$1;
|
|
2439
2627
|
|
|
@@ -2452,7 +2640,7 @@ objectDefineProperties.f = DESCRIPTORS && !V8_PROTOTYPE_DEFINE_BUG ? Object.defi
|
|
|
2452
2640
|
};
|
|
2453
2641
|
|
|
2454
2642
|
/* global ActiveXObject -- old IE, WSH */
|
|
2455
|
-
var anObject$2 = anObject$
|
|
2643
|
+
var anObject$2 = anObject$c;
|
|
2456
2644
|
var definePropertiesModule = objectDefineProperties;
|
|
2457
2645
|
var enumBugKeys = enumBugKeys$3;
|
|
2458
2646
|
var hiddenKeys = hiddenKeys$4;
|
|
@@ -2535,7 +2723,7 @@ var objectCreate = Object.create || function create(O, Properties) {
|
|
|
2535
2723
|
return Properties === undefined ? result : definePropertiesModule.f(result, Properties);
|
|
2536
2724
|
};
|
|
2537
2725
|
|
|
2538
|
-
var fails$2 = fails$
|
|
2726
|
+
var fails$2 = fails$f;
|
|
2539
2727
|
var global$2 = global$l;
|
|
2540
2728
|
|
|
2541
2729
|
// babel-minify and Closure Compiler transpiles RegExp('.', 's') -> /./s and it causes SyntaxError
|
|
@@ -2546,7 +2734,7 @@ var regexpUnsupportedDotAll = fails$2(function () {
|
|
|
2546
2734
|
return !(re.dotAll && re.test('\n') && re.flags === 's');
|
|
2547
2735
|
});
|
|
2548
2736
|
|
|
2549
|
-
var fails$1 = fails$
|
|
2737
|
+
var fails$1 = fails$f;
|
|
2550
2738
|
var global$1 = global$l;
|
|
2551
2739
|
|
|
2552
2740
|
// babel-minify and Closure Compiler transpiles RegExp('(?<a>b)', 'g') -> /(?<a>b)/g and it causes SyntaxError
|
|
@@ -2562,10 +2750,10 @@ var regexpUnsupportedNcg = fails$1(function () {
|
|
|
2562
2750
|
/* eslint-disable regexp/no-useless-quantifier -- testing */
|
|
2563
2751
|
var call$3 = functionCall;
|
|
2564
2752
|
var uncurryThis = functionUncurryThis;
|
|
2565
|
-
var toString$1 = toString$
|
|
2753
|
+
var toString$1 = toString$3;
|
|
2566
2754
|
var regexpFlags = regexpFlags$1;
|
|
2567
2755
|
var stickyHelpers = regexpStickyHelpers;
|
|
2568
|
-
var shared = shared$4
|
|
2756
|
+
var shared = shared$4;
|
|
2569
2757
|
var create = objectCreate;
|
|
2570
2758
|
var getInternalState = internalState.get;
|
|
2571
2759
|
var UNSUPPORTED_DOT_ALL = regexpUnsupportedDotAll;
|
|
@@ -2689,9 +2877,9 @@ $({ target: 'RegExp', proto: true, forced: /./.exec !== exec }, {
|
|
|
2689
2877
|
var call$2 = functionCall;
|
|
2690
2878
|
var defineBuiltIn = defineBuiltIn$4;
|
|
2691
2879
|
var regexpExec$1 = regexpExec$2;
|
|
2692
|
-
var fails = fails$
|
|
2880
|
+
var fails = fails$f;
|
|
2693
2881
|
var wellKnownSymbol = wellKnownSymbol$b;
|
|
2694
|
-
var createNonEnumerableProperty = createNonEnumerableProperty$
|
|
2882
|
+
var createNonEnumerableProperty = createNonEnumerableProperty$6;
|
|
2695
2883
|
|
|
2696
2884
|
var SPECIES = wellKnownSymbol('species');
|
|
2697
2885
|
var RegExpPrototype = RegExp.prototype;
|
|
@@ -2769,8 +2957,8 @@ var sameValue$1 = Object.is || function is(x, y) {
|
|
|
2769
2957
|
};
|
|
2770
2958
|
|
|
2771
2959
|
var call$1 = functionCall;
|
|
2772
|
-
var anObject$1 = anObject$
|
|
2773
|
-
var isCallable = isCallable$
|
|
2960
|
+
var anObject$1 = anObject$c;
|
|
2961
|
+
var isCallable = isCallable$i;
|
|
2774
2962
|
var classof = classofRaw$2;
|
|
2775
2963
|
var regexpExec = regexpExec$2;
|
|
2776
2964
|
|
|
@@ -2791,11 +2979,11 @@ var regexpExecAbstract = function (R, S) {
|
|
|
2791
2979
|
|
|
2792
2980
|
var call = functionCall;
|
|
2793
2981
|
var fixRegExpWellKnownSymbolLogic = fixRegexpWellKnownSymbolLogic;
|
|
2794
|
-
var anObject = anObject$
|
|
2982
|
+
var anObject = anObject$c;
|
|
2795
2983
|
var isNullOrUndefined = isNullOrUndefined$5;
|
|
2796
|
-
var requireObjectCoercible = requireObjectCoercible$
|
|
2984
|
+
var requireObjectCoercible = requireObjectCoercible$4;
|
|
2797
2985
|
var sameValue = sameValue$1;
|
|
2798
|
-
var toString = toString$
|
|
2986
|
+
var toString = toString$3;
|
|
2799
2987
|
var getMethod = getMethod$4;
|
|
2800
2988
|
var regExpExec = regexpExecAbstract;
|
|
2801
2989
|
|