@hebcal/core 5.5.0 → 5.5.2
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/dist/bundle.js +1695 -1130
- package/dist/bundle.js.map +1 -1
- package/dist/bundle.min.js +2 -2
- package/dist/bundle.min.js.map +1 -1
- package/dist/index.cjs +27 -24
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.mjs +27 -24
- package/dist/index.mjs.map +1 -1
- package/dist/module.d.ts +1581 -0
- package/dist/pkgVersion.d.ts +1 -1
- package/package.json +14 -13
package/dist/bundle.js
CHANGED
|
@@ -1,7 +1,10 @@
|
|
|
1
|
-
/*! @hebcal/core v5.5.
|
|
1
|
+
/*! @hebcal/core v5.5.2 */
|
|
2
2
|
var hebcal = (function (exports) {
|
|
3
3
|
'use strict';
|
|
4
4
|
|
|
5
|
+
/** DO NOT EDIT THIS AUTO-GENERATED FILE! */
|
|
6
|
+
const version = '5.5.2';
|
|
7
|
+
|
|
5
8
|
/* eslint-disable @typescript-eslint/no-namespace, no-inner-declarations */
|
|
6
9
|
/** @private */
|
|
7
10
|
const lengths = [0, 31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31];
|
|
@@ -2288,1171 +2291,1733 @@ class HebrewDateEvent extends Event {
|
|
|
2288
2291
|
|
|
2289
2292
|
var commonjsGlobal = typeof globalThis !== 'undefined' ? globalThis : typeof window !== 'undefined' ? window : typeof global !== 'undefined' ? global : typeof self !== 'undefined' ? self : {};
|
|
2290
2293
|
|
|
2291
|
-
var
|
|
2292
|
-
return it && it.Math === Math && it;
|
|
2293
|
-
};
|
|
2294
|
-
|
|
2295
|
-
// https://github.com/zloirock/core-js/issues/86#issuecomment-115759028
|
|
2296
|
-
var globalThis_1 =
|
|
2297
|
-
// eslint-disable-next-line es/no-global-this -- safe
|
|
2298
|
-
check(typeof globalThis == 'object' && globalThis) ||
|
|
2299
|
-
check(typeof window == 'object' && window) ||
|
|
2300
|
-
// eslint-disable-next-line no-restricted-globals -- safe
|
|
2301
|
-
check(typeof self == 'object' && self) ||
|
|
2302
|
-
check(typeof commonjsGlobal == 'object' && commonjsGlobal) ||
|
|
2303
|
-
check(typeof commonjsGlobal == 'object' && commonjsGlobal) ||
|
|
2304
|
-
// eslint-disable-next-line no-new-func -- fallback
|
|
2305
|
-
(function () { return this; })() || Function('return this')();
|
|
2306
|
-
|
|
2307
|
-
var objectGetOwnPropertyDescriptor = {};
|
|
2308
|
-
|
|
2309
|
-
var fails$9 = function (exec) {
|
|
2310
|
-
try {
|
|
2311
|
-
return !!exec();
|
|
2312
|
-
} catch (error) {
|
|
2313
|
-
return true;
|
|
2314
|
-
}
|
|
2315
|
-
};
|
|
2316
|
-
|
|
2317
|
-
var fails$8 = fails$9;
|
|
2318
|
-
|
|
2319
|
-
// Detect IE8's incomplete defineProperty implementation
|
|
2320
|
-
var descriptors = !fails$8(function () {
|
|
2321
|
-
// eslint-disable-next-line es/no-object-defineproperty -- required for testing
|
|
2322
|
-
return Object.defineProperty({}, 1, { get: function () { return 7; } })[1] !== 7;
|
|
2323
|
-
});
|
|
2324
|
-
|
|
2325
|
-
var fails$7 = fails$9;
|
|
2326
|
-
|
|
2327
|
-
var functionBindNative = !fails$7(function () {
|
|
2328
|
-
// eslint-disable-next-line es/no-function-prototype-bind -- safe
|
|
2329
|
-
var test = (function () { /* empty */ }).bind();
|
|
2330
|
-
// eslint-disable-next-line no-prototype-builtins -- safe
|
|
2331
|
-
return typeof test != 'function' || test.hasOwnProperty('prototype');
|
|
2332
|
-
});
|
|
2333
|
-
|
|
2334
|
-
var NATIVE_BIND$1 = functionBindNative;
|
|
2335
|
-
|
|
2336
|
-
var call$4 = Function.prototype.call;
|
|
2337
|
-
|
|
2338
|
-
var functionCall = NATIVE_BIND$1 ? call$4.bind(call$4) : function () {
|
|
2339
|
-
return call$4.apply(call$4, arguments);
|
|
2340
|
-
};
|
|
2341
|
-
|
|
2342
|
-
var objectPropertyIsEnumerable = {};
|
|
2343
|
-
|
|
2344
|
-
var $propertyIsEnumerable = {}.propertyIsEnumerable;
|
|
2345
|
-
// eslint-disable-next-line es/no-object-getownpropertydescriptor -- safe
|
|
2346
|
-
var getOwnPropertyDescriptor$1 = Object.getOwnPropertyDescriptor;
|
|
2347
|
-
|
|
2348
|
-
// Nashorn ~ JDK8 bug
|
|
2349
|
-
var NASHORN_BUG = getOwnPropertyDescriptor$1 && !$propertyIsEnumerable.call({ 1: 2 }, 1);
|
|
2350
|
-
|
|
2351
|
-
// `Object.prototype.propertyIsEnumerable` method implementation
|
|
2352
|
-
// https://tc39.es/ecma262/#sec-object.prototype.propertyisenumerable
|
|
2353
|
-
objectPropertyIsEnumerable.f = NASHORN_BUG ? function propertyIsEnumerable(V) {
|
|
2354
|
-
var descriptor = getOwnPropertyDescriptor$1(this, V);
|
|
2355
|
-
return !!descriptor && descriptor.enumerable;
|
|
2356
|
-
} : $propertyIsEnumerable;
|
|
2357
|
-
|
|
2358
|
-
var createPropertyDescriptor$2 = function (bitmap, value) {
|
|
2359
|
-
return {
|
|
2360
|
-
enumerable: !(bitmap & 1),
|
|
2361
|
-
configurable: !(bitmap & 2),
|
|
2362
|
-
writable: !(bitmap & 4),
|
|
2363
|
-
value: value
|
|
2364
|
-
};
|
|
2365
|
-
};
|
|
2366
|
-
|
|
2367
|
-
var NATIVE_BIND = functionBindNative;
|
|
2368
|
-
|
|
2369
|
-
var FunctionPrototype$1 = Function.prototype;
|
|
2370
|
-
var call$3 = FunctionPrototype$1.call;
|
|
2371
|
-
var uncurryThisWithBind = NATIVE_BIND && FunctionPrototype$1.bind.bind(call$3, call$3);
|
|
2372
|
-
|
|
2373
|
-
var functionUncurryThis = NATIVE_BIND ? uncurryThisWithBind : function (fn) {
|
|
2374
|
-
return function () {
|
|
2375
|
-
return call$3.apply(fn, arguments);
|
|
2376
|
-
};
|
|
2377
|
-
};
|
|
2378
|
-
|
|
2379
|
-
var uncurryThis$8 = functionUncurryThis;
|
|
2380
|
-
|
|
2381
|
-
var toString$2 = uncurryThis$8({}.toString);
|
|
2382
|
-
var stringSlice$1 = uncurryThis$8(''.slice);
|
|
2383
|
-
|
|
2384
|
-
var classofRaw = function (it) {
|
|
2385
|
-
return stringSlice$1(toString$2(it), 8, -1);
|
|
2386
|
-
};
|
|
2387
|
-
|
|
2388
|
-
var uncurryThis$7 = functionUncurryThis;
|
|
2389
|
-
var fails$6 = fails$9;
|
|
2390
|
-
var classof = classofRaw;
|
|
2391
|
-
|
|
2392
|
-
var $Object$2 = Object;
|
|
2393
|
-
var split = uncurryThis$7(''.split);
|
|
2394
|
-
|
|
2395
|
-
// fallback for non-array-like ES3 and non-enumerable old V8 strings
|
|
2396
|
-
var indexedObject = fails$6(function () {
|
|
2397
|
-
// throws an error in rhino, see https://github.com/mozilla/rhino/issues/346
|
|
2398
|
-
// eslint-disable-next-line no-prototype-builtins -- safe
|
|
2399
|
-
return !$Object$2('z').propertyIsEnumerable(0);
|
|
2400
|
-
}) ? function (it) {
|
|
2401
|
-
return classof(it) === 'String' ? split(it, '') : $Object$2(it);
|
|
2402
|
-
} : $Object$2;
|
|
2403
|
-
|
|
2404
|
-
// we can't use just `it == null` since of `document.all` special case
|
|
2405
|
-
// https://tc39.es/ecma262/#sec-IsHTMLDDA-internal-slot-aec
|
|
2406
|
-
var isNullOrUndefined$2 = function (it) {
|
|
2407
|
-
return it === null || it === undefined;
|
|
2408
|
-
};
|
|
2409
|
-
|
|
2410
|
-
var isNullOrUndefined$1 = isNullOrUndefined$2;
|
|
2411
|
-
|
|
2412
|
-
var $TypeError$5 = TypeError;
|
|
2413
|
-
|
|
2414
|
-
// `RequireObjectCoercible` abstract operation
|
|
2415
|
-
// https://tc39.es/ecma262/#sec-requireobjectcoercible
|
|
2416
|
-
var requireObjectCoercible$2 = function (it) {
|
|
2417
|
-
if (isNullOrUndefined$1(it)) throw new $TypeError$5("Can't call method on " + it);
|
|
2418
|
-
return it;
|
|
2419
|
-
};
|
|
2420
|
-
|
|
2421
|
-
// toObject with fallback for non-array-like ES3 strings
|
|
2422
|
-
var IndexedObject = indexedObject;
|
|
2423
|
-
var requireObjectCoercible$1 = requireObjectCoercible$2;
|
|
2424
|
-
|
|
2425
|
-
var toIndexedObject$4 = function (it) {
|
|
2426
|
-
return IndexedObject(requireObjectCoercible$1(it));
|
|
2427
|
-
};
|
|
2428
|
-
|
|
2429
|
-
// https://tc39.es/ecma262/#sec-IsHTMLDDA-internal-slot
|
|
2430
|
-
var documentAll = typeof document == 'object' && document.all;
|
|
2431
|
-
|
|
2432
|
-
// `IsCallable` abstract operation
|
|
2433
|
-
// https://tc39.es/ecma262/#sec-iscallable
|
|
2434
|
-
// eslint-disable-next-line unicorn/no-typeof-undefined -- required for testing
|
|
2435
|
-
var isCallable$a = typeof documentAll == 'undefined' && documentAll !== undefined ? function (argument) {
|
|
2436
|
-
return typeof argument == 'function' || argument === documentAll;
|
|
2437
|
-
} : function (argument) {
|
|
2438
|
-
return typeof argument == 'function';
|
|
2439
|
-
};
|
|
2440
|
-
|
|
2441
|
-
var isCallable$9 = isCallable$a;
|
|
2294
|
+
var es_array_includes = {};
|
|
2442
2295
|
|
|
2443
|
-
var
|
|
2444
|
-
|
|
2445
|
-
};
|
|
2296
|
+
var globalThis_1;
|
|
2297
|
+
var hasRequiredGlobalThis;
|
|
2446
2298
|
|
|
2447
|
-
|
|
2448
|
-
|
|
2299
|
+
function requireGlobalThis () {
|
|
2300
|
+
if (hasRequiredGlobalThis) return globalThis_1;
|
|
2301
|
+
hasRequiredGlobalThis = 1;
|
|
2302
|
+
var check = function (it) {
|
|
2303
|
+
return it && it.Math === Math && it;
|
|
2304
|
+
};
|
|
2449
2305
|
|
|
2450
|
-
|
|
2451
|
-
|
|
2452
|
-
|
|
2306
|
+
// https://github.com/zloirock/core-js/issues/86#issuecomment-115759028
|
|
2307
|
+
globalThis_1 =
|
|
2308
|
+
// eslint-disable-next-line es/no-global-this -- safe
|
|
2309
|
+
check(typeof globalThis == 'object' && globalThis) ||
|
|
2310
|
+
check(typeof window == 'object' && window) ||
|
|
2311
|
+
// eslint-disable-next-line no-restricted-globals -- safe
|
|
2312
|
+
check(typeof self == 'object' && self) ||
|
|
2313
|
+
check(typeof commonjsGlobal == 'object' && commonjsGlobal) ||
|
|
2314
|
+
check(typeof globalThis_1 == 'object' && globalThis_1) ||
|
|
2315
|
+
// eslint-disable-next-line no-new-func -- fallback
|
|
2316
|
+
(function () { return this; })() || Function('return this')();
|
|
2317
|
+
return globalThis_1;
|
|
2318
|
+
}
|
|
2453
2319
|
|
|
2454
|
-
var
|
|
2455
|
-
return arguments.length < 2 ? aFunction(globalThis$b[namespace]) : globalThis$b[namespace] && globalThis$b[namespace][method];
|
|
2456
|
-
};
|
|
2320
|
+
var objectGetOwnPropertyDescriptor = {};
|
|
2457
2321
|
|
|
2458
|
-
var
|
|
2322
|
+
var fails;
|
|
2323
|
+
var hasRequiredFails;
|
|
2459
2324
|
|
|
2460
|
-
|
|
2325
|
+
function requireFails () {
|
|
2326
|
+
if (hasRequiredFails) return fails;
|
|
2327
|
+
hasRequiredFails = 1;
|
|
2328
|
+
fails = function (exec) {
|
|
2329
|
+
try {
|
|
2330
|
+
return !!exec();
|
|
2331
|
+
} catch (error) {
|
|
2332
|
+
return true;
|
|
2333
|
+
}
|
|
2334
|
+
};
|
|
2335
|
+
return fails;
|
|
2336
|
+
}
|
|
2461
2337
|
|
|
2462
|
-
var
|
|
2338
|
+
var descriptors;
|
|
2339
|
+
var hasRequiredDescriptors;
|
|
2463
2340
|
|
|
2464
|
-
|
|
2465
|
-
|
|
2341
|
+
function requireDescriptors () {
|
|
2342
|
+
if (hasRequiredDescriptors) return descriptors;
|
|
2343
|
+
hasRequiredDescriptors = 1;
|
|
2344
|
+
var fails = requireFails();
|
|
2466
2345
|
|
|
2467
|
-
|
|
2346
|
+
// Detect IE8's incomplete defineProperty implementation
|
|
2347
|
+
descriptors = !fails(function () {
|
|
2348
|
+
// eslint-disable-next-line es/no-object-defineproperty -- required for testing
|
|
2349
|
+
return Object.defineProperty({}, 1, { get: function () { return 7; } })[1] !== 7;
|
|
2350
|
+
});
|
|
2351
|
+
return descriptors;
|
|
2352
|
+
}
|
|
2468
2353
|
|
|
2469
|
-
var
|
|
2470
|
-
var
|
|
2354
|
+
var functionBindNative;
|
|
2355
|
+
var hasRequiredFunctionBindNative;
|
|
2471
2356
|
|
|
2472
|
-
|
|
2473
|
-
|
|
2474
|
-
|
|
2475
|
-
var
|
|
2476
|
-
var match, version$1;
|
|
2357
|
+
function requireFunctionBindNative () {
|
|
2358
|
+
if (hasRequiredFunctionBindNative) return functionBindNative;
|
|
2359
|
+
hasRequiredFunctionBindNative = 1;
|
|
2360
|
+
var fails = requireFails();
|
|
2477
2361
|
|
|
2478
|
-
|
|
2479
|
-
|
|
2480
|
-
|
|
2481
|
-
|
|
2482
|
-
|
|
2362
|
+
functionBindNative = !fails(function () {
|
|
2363
|
+
// eslint-disable-next-line es/no-function-prototype-bind -- safe
|
|
2364
|
+
var test = (function () { /* empty */ }).bind();
|
|
2365
|
+
// eslint-disable-next-line no-prototype-builtins -- safe
|
|
2366
|
+
return typeof test != 'function' || test.hasOwnProperty('prototype');
|
|
2367
|
+
});
|
|
2368
|
+
return functionBindNative;
|
|
2483
2369
|
}
|
|
2484
2370
|
|
|
2485
|
-
|
|
2486
|
-
|
|
2487
|
-
if (!version$1 && userAgent) {
|
|
2488
|
-
match = userAgent.match(/Edge\/(\d+)/);
|
|
2489
|
-
if (!match || match[1] >= 74) {
|
|
2490
|
-
match = userAgent.match(/Chrome\/(\d+)/);
|
|
2491
|
-
if (match) version$1 = +match[1];
|
|
2492
|
-
}
|
|
2493
|
-
}
|
|
2371
|
+
var functionCall;
|
|
2372
|
+
var hasRequiredFunctionCall;
|
|
2494
2373
|
|
|
2495
|
-
|
|
2374
|
+
function requireFunctionCall () {
|
|
2375
|
+
if (hasRequiredFunctionCall) return functionCall;
|
|
2376
|
+
hasRequiredFunctionCall = 1;
|
|
2377
|
+
var NATIVE_BIND = requireFunctionBindNative();
|
|
2496
2378
|
|
|
2497
|
-
|
|
2498
|
-
var V8_VERSION = environmentV8Version;
|
|
2499
|
-
var fails$5 = fails$9;
|
|
2500
|
-
var globalThis$8 = globalThis_1;
|
|
2379
|
+
var call = Function.prototype.call;
|
|
2501
2380
|
|
|
2502
|
-
|
|
2381
|
+
functionCall = NATIVE_BIND ? call.bind(call) : function () {
|
|
2382
|
+
return call.apply(call, arguments);
|
|
2383
|
+
};
|
|
2384
|
+
return functionCall;
|
|
2385
|
+
}
|
|
2503
2386
|
|
|
2504
|
-
|
|
2505
|
-
var symbolConstructorDetection = !!Object.getOwnPropertySymbols && !fails$5(function () {
|
|
2506
|
-
var symbol = Symbol('symbol detection');
|
|
2507
|
-
// Chrome 38 Symbol has incorrect toString conversion
|
|
2508
|
-
// `get-own-property-symbols` polyfill symbols converted to object are not Symbol instances
|
|
2509
|
-
// nb: Do not call `String` directly to avoid this being optimized out to `symbol+''` which will,
|
|
2510
|
-
// of course, fail.
|
|
2511
|
-
return !$String$3(symbol) || !(Object(symbol) instanceof Symbol) ||
|
|
2512
|
-
// Chrome 38-40 symbols are not inherited from DOM collections prototypes to instances
|
|
2513
|
-
!Symbol.sham && V8_VERSION && V8_VERSION < 41;
|
|
2514
|
-
});
|
|
2387
|
+
var objectPropertyIsEnumerable = {};
|
|
2515
2388
|
|
|
2516
|
-
|
|
2517
|
-
var NATIVE_SYMBOL$1 = symbolConstructorDetection;
|
|
2389
|
+
var hasRequiredObjectPropertyIsEnumerable;
|
|
2518
2390
|
|
|
2519
|
-
|
|
2520
|
-
|
|
2521
|
-
|
|
2391
|
+
function requireObjectPropertyIsEnumerable () {
|
|
2392
|
+
if (hasRequiredObjectPropertyIsEnumerable) return objectPropertyIsEnumerable;
|
|
2393
|
+
hasRequiredObjectPropertyIsEnumerable = 1;
|
|
2394
|
+
var $propertyIsEnumerable = {}.propertyIsEnumerable;
|
|
2395
|
+
// eslint-disable-next-line es/no-object-getownpropertydescriptor -- safe
|
|
2396
|
+
var getOwnPropertyDescriptor = Object.getOwnPropertyDescriptor;
|
|
2397
|
+
|
|
2398
|
+
// Nashorn ~ JDK8 bug
|
|
2399
|
+
var NASHORN_BUG = getOwnPropertyDescriptor && !$propertyIsEnumerable.call({ 1: 2 }, 1);
|
|
2400
|
+
|
|
2401
|
+
// `Object.prototype.propertyIsEnumerable` method implementation
|
|
2402
|
+
// https://tc39.es/ecma262/#sec-object.prototype.propertyisenumerable
|
|
2403
|
+
objectPropertyIsEnumerable.f = NASHORN_BUG ? function propertyIsEnumerable(V) {
|
|
2404
|
+
var descriptor = getOwnPropertyDescriptor(this, V);
|
|
2405
|
+
return !!descriptor && descriptor.enumerable;
|
|
2406
|
+
} : $propertyIsEnumerable;
|
|
2407
|
+
return objectPropertyIsEnumerable;
|
|
2408
|
+
}
|
|
2409
|
+
|
|
2410
|
+
var createPropertyDescriptor;
|
|
2411
|
+
var hasRequiredCreatePropertyDescriptor;
|
|
2412
|
+
|
|
2413
|
+
function requireCreatePropertyDescriptor () {
|
|
2414
|
+
if (hasRequiredCreatePropertyDescriptor) return createPropertyDescriptor;
|
|
2415
|
+
hasRequiredCreatePropertyDescriptor = 1;
|
|
2416
|
+
createPropertyDescriptor = function (bitmap, value) {
|
|
2417
|
+
return {
|
|
2418
|
+
enumerable: !(bitmap & 1),
|
|
2419
|
+
configurable: !(bitmap & 2),
|
|
2420
|
+
writable: !(bitmap & 4),
|
|
2421
|
+
value: value
|
|
2422
|
+
};
|
|
2423
|
+
};
|
|
2424
|
+
return createPropertyDescriptor;
|
|
2425
|
+
}
|
|
2426
|
+
|
|
2427
|
+
var functionUncurryThis;
|
|
2428
|
+
var hasRequiredFunctionUncurryThis;
|
|
2429
|
+
|
|
2430
|
+
function requireFunctionUncurryThis () {
|
|
2431
|
+
if (hasRequiredFunctionUncurryThis) return functionUncurryThis;
|
|
2432
|
+
hasRequiredFunctionUncurryThis = 1;
|
|
2433
|
+
var NATIVE_BIND = requireFunctionBindNative();
|
|
2434
|
+
|
|
2435
|
+
var FunctionPrototype = Function.prototype;
|
|
2436
|
+
var call = FunctionPrototype.call;
|
|
2437
|
+
var uncurryThisWithBind = NATIVE_BIND && FunctionPrototype.bind.bind(call, call);
|
|
2438
|
+
|
|
2439
|
+
functionUncurryThis = NATIVE_BIND ? uncurryThisWithBind : function (fn) {
|
|
2440
|
+
return function () {
|
|
2441
|
+
return call.apply(fn, arguments);
|
|
2442
|
+
};
|
|
2443
|
+
};
|
|
2444
|
+
return functionUncurryThis;
|
|
2445
|
+
}
|
|
2446
|
+
|
|
2447
|
+
var classofRaw;
|
|
2448
|
+
var hasRequiredClassofRaw;
|
|
2449
|
+
|
|
2450
|
+
function requireClassofRaw () {
|
|
2451
|
+
if (hasRequiredClassofRaw) return classofRaw;
|
|
2452
|
+
hasRequiredClassofRaw = 1;
|
|
2453
|
+
var uncurryThis = requireFunctionUncurryThis();
|
|
2454
|
+
|
|
2455
|
+
var toString = uncurryThis({}.toString);
|
|
2456
|
+
var stringSlice = uncurryThis(''.slice);
|
|
2457
|
+
|
|
2458
|
+
classofRaw = function (it) {
|
|
2459
|
+
return stringSlice(toString(it), 8, -1);
|
|
2460
|
+
};
|
|
2461
|
+
return classofRaw;
|
|
2462
|
+
}
|
|
2463
|
+
|
|
2464
|
+
var indexedObject;
|
|
2465
|
+
var hasRequiredIndexedObject;
|
|
2466
|
+
|
|
2467
|
+
function requireIndexedObject () {
|
|
2468
|
+
if (hasRequiredIndexedObject) return indexedObject;
|
|
2469
|
+
hasRequiredIndexedObject = 1;
|
|
2470
|
+
var uncurryThis = requireFunctionUncurryThis();
|
|
2471
|
+
var fails = requireFails();
|
|
2472
|
+
var classof = requireClassofRaw();
|
|
2473
|
+
|
|
2474
|
+
var $Object = Object;
|
|
2475
|
+
var split = uncurryThis(''.split);
|
|
2476
|
+
|
|
2477
|
+
// fallback for non-array-like ES3 and non-enumerable old V8 strings
|
|
2478
|
+
indexedObject = fails(function () {
|
|
2479
|
+
// throws an error in rhino, see https://github.com/mozilla/rhino/issues/346
|
|
2480
|
+
// eslint-disable-next-line no-prototype-builtins -- safe
|
|
2481
|
+
return !$Object('z').propertyIsEnumerable(0);
|
|
2482
|
+
}) ? function (it) {
|
|
2483
|
+
return classof(it) === 'String' ? split(it, '') : $Object(it);
|
|
2484
|
+
} : $Object;
|
|
2485
|
+
return indexedObject;
|
|
2486
|
+
}
|
|
2487
|
+
|
|
2488
|
+
var isNullOrUndefined;
|
|
2489
|
+
var hasRequiredIsNullOrUndefined;
|
|
2490
|
+
|
|
2491
|
+
function requireIsNullOrUndefined () {
|
|
2492
|
+
if (hasRequiredIsNullOrUndefined) return isNullOrUndefined;
|
|
2493
|
+
hasRequiredIsNullOrUndefined = 1;
|
|
2494
|
+
// we can't use just `it == null` since of `document.all` special case
|
|
2495
|
+
// https://tc39.es/ecma262/#sec-IsHTMLDDA-internal-slot-aec
|
|
2496
|
+
isNullOrUndefined = function (it) {
|
|
2497
|
+
return it === null || it === undefined;
|
|
2498
|
+
};
|
|
2499
|
+
return isNullOrUndefined;
|
|
2500
|
+
}
|
|
2501
|
+
|
|
2502
|
+
var requireObjectCoercible;
|
|
2503
|
+
var hasRequiredRequireObjectCoercible;
|
|
2522
2504
|
|
|
2523
|
-
|
|
2524
|
-
|
|
2525
|
-
|
|
2526
|
-
var
|
|
2505
|
+
function requireRequireObjectCoercible () {
|
|
2506
|
+
if (hasRequiredRequireObjectCoercible) return requireObjectCoercible;
|
|
2507
|
+
hasRequiredRequireObjectCoercible = 1;
|
|
2508
|
+
var isNullOrUndefined = requireIsNullOrUndefined();
|
|
2527
2509
|
|
|
2528
|
-
var $
|
|
2510
|
+
var $TypeError = TypeError;
|
|
2511
|
+
|
|
2512
|
+
// `RequireObjectCoercible` abstract operation
|
|
2513
|
+
// https://tc39.es/ecma262/#sec-requireobjectcoercible
|
|
2514
|
+
requireObjectCoercible = function (it) {
|
|
2515
|
+
if (isNullOrUndefined(it)) throw new $TypeError("Can't call method on " + it);
|
|
2516
|
+
return it;
|
|
2517
|
+
};
|
|
2518
|
+
return requireObjectCoercible;
|
|
2519
|
+
}
|
|
2529
2520
|
|
|
2530
|
-
var
|
|
2531
|
-
|
|
2532
|
-
} : function (it) {
|
|
2533
|
-
var $Symbol = getBuiltIn$2('Symbol');
|
|
2534
|
-
return isCallable$7($Symbol) && isPrototypeOf($Symbol.prototype, $Object$1(it));
|
|
2535
|
-
};
|
|
2521
|
+
var toIndexedObject;
|
|
2522
|
+
var hasRequiredToIndexedObject;
|
|
2536
2523
|
|
|
2537
|
-
|
|
2524
|
+
function requireToIndexedObject () {
|
|
2525
|
+
if (hasRequiredToIndexedObject) return toIndexedObject;
|
|
2526
|
+
hasRequiredToIndexedObject = 1;
|
|
2527
|
+
// toObject with fallback for non-array-like ES3 strings
|
|
2528
|
+
var IndexedObject = requireIndexedObject();
|
|
2529
|
+
var requireObjectCoercible = requireRequireObjectCoercible();
|
|
2538
2530
|
|
|
2539
|
-
|
|
2540
|
-
|
|
2541
|
-
|
|
2542
|
-
|
|
2543
|
-
|
|
2544
|
-
}
|
|
2545
|
-
};
|
|
2546
|
-
|
|
2547
|
-
var isCallable$6 = isCallable$a;
|
|
2548
|
-
var tryToString = tryToString$1;
|
|
2531
|
+
toIndexedObject = function (it) {
|
|
2532
|
+
return IndexedObject(requireObjectCoercible(it));
|
|
2533
|
+
};
|
|
2534
|
+
return toIndexedObject;
|
|
2535
|
+
}
|
|
2549
2536
|
|
|
2550
|
-
var
|
|
2537
|
+
var isCallable;
|
|
2538
|
+
var hasRequiredIsCallable;
|
|
2551
2539
|
|
|
2552
|
-
|
|
2553
|
-
|
|
2554
|
-
|
|
2555
|
-
|
|
2556
|
-
|
|
2540
|
+
function requireIsCallable () {
|
|
2541
|
+
if (hasRequiredIsCallable) return isCallable;
|
|
2542
|
+
hasRequiredIsCallable = 1;
|
|
2543
|
+
// https://tc39.es/ecma262/#sec-IsHTMLDDA-internal-slot
|
|
2544
|
+
var documentAll = typeof document == 'object' && document.all;
|
|
2557
2545
|
|
|
2558
|
-
|
|
2559
|
-
|
|
2546
|
+
// `IsCallable` abstract operation
|
|
2547
|
+
// https://tc39.es/ecma262/#sec-iscallable
|
|
2548
|
+
// eslint-disable-next-line unicorn/no-typeof-undefined -- required for testing
|
|
2549
|
+
isCallable = typeof documentAll == 'undefined' && documentAll !== undefined ? function (argument) {
|
|
2550
|
+
return typeof argument == 'function' || argument === documentAll;
|
|
2551
|
+
} : function (argument) {
|
|
2552
|
+
return typeof argument == 'function';
|
|
2553
|
+
};
|
|
2554
|
+
return isCallable;
|
|
2555
|
+
}
|
|
2560
2556
|
|
|
2561
|
-
|
|
2562
|
-
|
|
2563
|
-
|
|
2564
|
-
|
|
2565
|
-
|
|
2566
|
-
|
|
2557
|
+
var isObject;
|
|
2558
|
+
var hasRequiredIsObject;
|
|
2559
|
+
|
|
2560
|
+
function requireIsObject () {
|
|
2561
|
+
if (hasRequiredIsObject) return isObject;
|
|
2562
|
+
hasRequiredIsObject = 1;
|
|
2563
|
+
var isCallable = requireIsCallable();
|
|
2564
|
+
|
|
2565
|
+
isObject = function (it) {
|
|
2566
|
+
return typeof it == 'object' ? it !== null : isCallable(it);
|
|
2567
|
+
};
|
|
2568
|
+
return isObject;
|
|
2569
|
+
}
|
|
2570
|
+
|
|
2571
|
+
var getBuiltIn;
|
|
2572
|
+
var hasRequiredGetBuiltIn;
|
|
2573
|
+
|
|
2574
|
+
function requireGetBuiltIn () {
|
|
2575
|
+
if (hasRequiredGetBuiltIn) return getBuiltIn;
|
|
2576
|
+
hasRequiredGetBuiltIn = 1;
|
|
2577
|
+
var globalThis = requireGlobalThis();
|
|
2578
|
+
var isCallable = requireIsCallable();
|
|
2579
|
+
|
|
2580
|
+
var aFunction = function (argument) {
|
|
2581
|
+
return isCallable(argument) ? argument : undefined;
|
|
2582
|
+
};
|
|
2583
|
+
|
|
2584
|
+
getBuiltIn = function (namespace, method) {
|
|
2585
|
+
return arguments.length < 2 ? aFunction(globalThis[namespace]) : globalThis[namespace] && globalThis[namespace][method];
|
|
2586
|
+
};
|
|
2587
|
+
return getBuiltIn;
|
|
2588
|
+
}
|
|
2589
|
+
|
|
2590
|
+
var objectIsPrototypeOf;
|
|
2591
|
+
var hasRequiredObjectIsPrototypeOf;
|
|
2592
|
+
|
|
2593
|
+
function requireObjectIsPrototypeOf () {
|
|
2594
|
+
if (hasRequiredObjectIsPrototypeOf) return objectIsPrototypeOf;
|
|
2595
|
+
hasRequiredObjectIsPrototypeOf = 1;
|
|
2596
|
+
var uncurryThis = requireFunctionUncurryThis();
|
|
2567
2597
|
|
|
2568
|
-
|
|
2569
|
-
|
|
2570
|
-
|
|
2598
|
+
objectIsPrototypeOf = uncurryThis({}.isPrototypeOf);
|
|
2599
|
+
return objectIsPrototypeOf;
|
|
2600
|
+
}
|
|
2601
|
+
|
|
2602
|
+
var environmentUserAgent;
|
|
2603
|
+
var hasRequiredEnvironmentUserAgent;
|
|
2604
|
+
|
|
2605
|
+
function requireEnvironmentUserAgent () {
|
|
2606
|
+
if (hasRequiredEnvironmentUserAgent) return environmentUserAgent;
|
|
2607
|
+
hasRequiredEnvironmentUserAgent = 1;
|
|
2608
|
+
var globalThis = requireGlobalThis();
|
|
2609
|
+
|
|
2610
|
+
var navigator = globalThis.navigator;
|
|
2611
|
+
var userAgent = navigator && navigator.userAgent;
|
|
2612
|
+
|
|
2613
|
+
environmentUserAgent = userAgent ? String(userAgent) : '';
|
|
2614
|
+
return environmentUserAgent;
|
|
2615
|
+
}
|
|
2616
|
+
|
|
2617
|
+
var environmentV8Version;
|
|
2618
|
+
var hasRequiredEnvironmentV8Version;
|
|
2571
2619
|
|
|
2572
|
-
|
|
2620
|
+
function requireEnvironmentV8Version () {
|
|
2621
|
+
if (hasRequiredEnvironmentV8Version) return environmentV8Version;
|
|
2622
|
+
hasRequiredEnvironmentV8Version = 1;
|
|
2623
|
+
var globalThis = requireGlobalThis();
|
|
2624
|
+
var userAgent = requireEnvironmentUserAgent();
|
|
2625
|
+
|
|
2626
|
+
var process = globalThis.process;
|
|
2627
|
+
var Deno = globalThis.Deno;
|
|
2628
|
+
var versions = process && process.versions || Deno && Deno.version;
|
|
2629
|
+
var v8 = versions && versions.v8;
|
|
2630
|
+
var match, version;
|
|
2631
|
+
|
|
2632
|
+
if (v8) {
|
|
2633
|
+
match = v8.split('.');
|
|
2634
|
+
// in old Chrome, versions of V8 isn't V8 = Chrome / 10
|
|
2635
|
+
// but their correct versions are not interesting for us
|
|
2636
|
+
version = match[0] > 0 && match[0] < 4 ? 1 : +(match[0] + match[1]);
|
|
2637
|
+
}
|
|
2638
|
+
|
|
2639
|
+
// BrowserFS NodeJS `process` polyfill incorrectly set `.v8` to `0.0`
|
|
2640
|
+
// so check `userAgent` even if `.v8` exists, but 0
|
|
2641
|
+
if (!version && userAgent) {
|
|
2642
|
+
match = userAgent.match(/Edge\/(\d+)/);
|
|
2643
|
+
if (!match || match[1] >= 74) {
|
|
2644
|
+
match = userAgent.match(/Chrome\/(\d+)/);
|
|
2645
|
+
if (match) version = +match[1];
|
|
2646
|
+
}
|
|
2647
|
+
}
|
|
2648
|
+
|
|
2649
|
+
environmentV8Version = version;
|
|
2650
|
+
return environmentV8Version;
|
|
2651
|
+
}
|
|
2652
|
+
|
|
2653
|
+
var symbolConstructorDetection;
|
|
2654
|
+
var hasRequiredSymbolConstructorDetection;
|
|
2573
2655
|
|
|
2574
|
-
|
|
2575
|
-
|
|
2576
|
-
|
|
2577
|
-
|
|
2578
|
-
|
|
2579
|
-
|
|
2580
|
-
|
|
2581
|
-
|
|
2582
|
-
|
|
2656
|
+
function requireSymbolConstructorDetection () {
|
|
2657
|
+
if (hasRequiredSymbolConstructorDetection) return symbolConstructorDetection;
|
|
2658
|
+
hasRequiredSymbolConstructorDetection = 1;
|
|
2659
|
+
/* eslint-disable es/no-symbol -- required for testing */
|
|
2660
|
+
var V8_VERSION = requireEnvironmentV8Version();
|
|
2661
|
+
var fails = requireFails();
|
|
2662
|
+
var globalThis = requireGlobalThis();
|
|
2663
|
+
|
|
2664
|
+
var $String = globalThis.String;
|
|
2665
|
+
|
|
2666
|
+
// eslint-disable-next-line es/no-object-getownpropertysymbols -- required for testing
|
|
2667
|
+
symbolConstructorDetection = !!Object.getOwnPropertySymbols && !fails(function () {
|
|
2668
|
+
var symbol = Symbol('symbol detection');
|
|
2669
|
+
// Chrome 38 Symbol has incorrect toString conversion
|
|
2670
|
+
// `get-own-property-symbols` polyfill symbols converted to object are not Symbol instances
|
|
2671
|
+
// nb: Do not call `String` directly to avoid this being optimized out to `symbol+''` which will,
|
|
2672
|
+
// of course, fail.
|
|
2673
|
+
return !$String(symbol) || !(Object(symbol) instanceof Symbol) ||
|
|
2674
|
+
// Chrome 38-40 symbols are not inherited from DOM collections prototypes to instances
|
|
2675
|
+
!Symbol.sham && V8_VERSION && V8_VERSION < 41;
|
|
2676
|
+
});
|
|
2677
|
+
return symbolConstructorDetection;
|
|
2678
|
+
}
|
|
2679
|
+
|
|
2680
|
+
var useSymbolAsUid;
|
|
2681
|
+
var hasRequiredUseSymbolAsUid;
|
|
2682
|
+
|
|
2683
|
+
function requireUseSymbolAsUid () {
|
|
2684
|
+
if (hasRequiredUseSymbolAsUid) return useSymbolAsUid;
|
|
2685
|
+
hasRequiredUseSymbolAsUid = 1;
|
|
2686
|
+
/* eslint-disable es/no-symbol -- required for testing */
|
|
2687
|
+
var NATIVE_SYMBOL = requireSymbolConstructorDetection();
|
|
2688
|
+
|
|
2689
|
+
useSymbolAsUid = NATIVE_SYMBOL
|
|
2690
|
+
&& !Symbol.sham
|
|
2691
|
+
&& typeof Symbol.iterator == 'symbol';
|
|
2692
|
+
return useSymbolAsUid;
|
|
2693
|
+
}
|
|
2694
|
+
|
|
2695
|
+
var isSymbol;
|
|
2696
|
+
var hasRequiredIsSymbol;
|
|
2697
|
+
|
|
2698
|
+
function requireIsSymbol () {
|
|
2699
|
+
if (hasRequiredIsSymbol) return isSymbol;
|
|
2700
|
+
hasRequiredIsSymbol = 1;
|
|
2701
|
+
var getBuiltIn = requireGetBuiltIn();
|
|
2702
|
+
var isCallable = requireIsCallable();
|
|
2703
|
+
var isPrototypeOf = requireObjectIsPrototypeOf();
|
|
2704
|
+
var USE_SYMBOL_AS_UID = requireUseSymbolAsUid();
|
|
2705
|
+
|
|
2706
|
+
var $Object = Object;
|
|
2707
|
+
|
|
2708
|
+
isSymbol = USE_SYMBOL_AS_UID ? function (it) {
|
|
2709
|
+
return typeof it == 'symbol';
|
|
2710
|
+
} : function (it) {
|
|
2711
|
+
var $Symbol = getBuiltIn('Symbol');
|
|
2712
|
+
return isCallable($Symbol) && isPrototypeOf($Symbol.prototype, $Object(it));
|
|
2713
|
+
};
|
|
2714
|
+
return isSymbol;
|
|
2715
|
+
}
|
|
2716
|
+
|
|
2717
|
+
var tryToString;
|
|
2718
|
+
var hasRequiredTryToString;
|
|
2719
|
+
|
|
2720
|
+
function requireTryToString () {
|
|
2721
|
+
if (hasRequiredTryToString) return tryToString;
|
|
2722
|
+
hasRequiredTryToString = 1;
|
|
2723
|
+
var $String = String;
|
|
2724
|
+
|
|
2725
|
+
tryToString = function (argument) {
|
|
2726
|
+
try {
|
|
2727
|
+
return $String(argument);
|
|
2728
|
+
} catch (error) {
|
|
2729
|
+
return 'Object';
|
|
2730
|
+
}
|
|
2731
|
+
};
|
|
2732
|
+
return tryToString;
|
|
2733
|
+
}
|
|
2734
|
+
|
|
2735
|
+
var aCallable;
|
|
2736
|
+
var hasRequiredACallable;
|
|
2737
|
+
|
|
2738
|
+
function requireACallable () {
|
|
2739
|
+
if (hasRequiredACallable) return aCallable;
|
|
2740
|
+
hasRequiredACallable = 1;
|
|
2741
|
+
var isCallable = requireIsCallable();
|
|
2742
|
+
var tryToString = requireTryToString();
|
|
2743
|
+
|
|
2744
|
+
var $TypeError = TypeError;
|
|
2745
|
+
|
|
2746
|
+
// `Assert: IsCallable(argument) is true`
|
|
2747
|
+
aCallable = function (argument) {
|
|
2748
|
+
if (isCallable(argument)) return argument;
|
|
2749
|
+
throw new $TypeError(tryToString(argument) + ' is not a function');
|
|
2750
|
+
};
|
|
2751
|
+
return aCallable;
|
|
2752
|
+
}
|
|
2753
|
+
|
|
2754
|
+
var getMethod;
|
|
2755
|
+
var hasRequiredGetMethod;
|
|
2756
|
+
|
|
2757
|
+
function requireGetMethod () {
|
|
2758
|
+
if (hasRequiredGetMethod) return getMethod;
|
|
2759
|
+
hasRequiredGetMethod = 1;
|
|
2760
|
+
var aCallable = requireACallable();
|
|
2761
|
+
var isNullOrUndefined = requireIsNullOrUndefined();
|
|
2762
|
+
|
|
2763
|
+
// `GetMethod` abstract operation
|
|
2764
|
+
// https://tc39.es/ecma262/#sec-getmethod
|
|
2765
|
+
getMethod = function (V, P) {
|
|
2766
|
+
var func = V[P];
|
|
2767
|
+
return isNullOrUndefined(func) ? undefined : aCallable(func);
|
|
2768
|
+
};
|
|
2769
|
+
return getMethod;
|
|
2770
|
+
}
|
|
2771
|
+
|
|
2772
|
+
var ordinaryToPrimitive;
|
|
2773
|
+
var hasRequiredOrdinaryToPrimitive;
|
|
2774
|
+
|
|
2775
|
+
function requireOrdinaryToPrimitive () {
|
|
2776
|
+
if (hasRequiredOrdinaryToPrimitive) return ordinaryToPrimitive;
|
|
2777
|
+
hasRequiredOrdinaryToPrimitive = 1;
|
|
2778
|
+
var call = requireFunctionCall();
|
|
2779
|
+
var isCallable = requireIsCallable();
|
|
2780
|
+
var isObject = requireIsObject();
|
|
2781
|
+
|
|
2782
|
+
var $TypeError = TypeError;
|
|
2783
|
+
|
|
2784
|
+
// `OrdinaryToPrimitive` abstract operation
|
|
2785
|
+
// https://tc39.es/ecma262/#sec-ordinarytoprimitive
|
|
2786
|
+
ordinaryToPrimitive = function (input, pref) {
|
|
2787
|
+
var fn, val;
|
|
2788
|
+
if (pref === 'string' && isCallable(fn = input.toString) && !isObject(val = call(fn, input))) return val;
|
|
2789
|
+
if (isCallable(fn = input.valueOf) && !isObject(val = call(fn, input))) return val;
|
|
2790
|
+
if (pref !== 'string' && isCallable(fn = input.toString) && !isObject(val = call(fn, input))) return val;
|
|
2791
|
+
throw new $TypeError("Can't convert object to primitive value");
|
|
2792
|
+
};
|
|
2793
|
+
return ordinaryToPrimitive;
|
|
2794
|
+
}
|
|
2583
2795
|
|
|
2584
2796
|
var sharedStore = {exports: {}};
|
|
2585
2797
|
|
|
2586
|
-
var
|
|
2587
|
-
|
|
2588
|
-
// eslint-disable-next-line es/no-object-defineproperty -- safe
|
|
2589
|
-
var defineProperty$2 = Object.defineProperty;
|
|
2590
|
-
|
|
2591
|
-
var defineGlobalProperty$3 = function (key, value) {
|
|
2592
|
-
try {
|
|
2593
|
-
defineProperty$2(globalThis$7, key, { value: value, configurable: true, writable: true });
|
|
2594
|
-
} catch (error) {
|
|
2595
|
-
globalThis$7[key] = value;
|
|
2596
|
-
} return value;
|
|
2597
|
-
};
|
|
2598
|
-
|
|
2599
|
-
var globalThis$6 = globalThis_1;
|
|
2600
|
-
var defineGlobalProperty$2 = defineGlobalProperty$3;
|
|
2601
|
-
|
|
2602
|
-
var SHARED = '__core-js_shared__';
|
|
2603
|
-
var store$3 = sharedStore.exports = globalThis$6[SHARED] || defineGlobalProperty$2(SHARED, {});
|
|
2604
|
-
|
|
2605
|
-
(store$3.versions || (store$3.versions = [])).push({
|
|
2606
|
-
version: '3.38.1',
|
|
2607
|
-
mode: 'global',
|
|
2608
|
-
copyright: '© 2014-2024 Denis Pushkarev (zloirock.ru)',
|
|
2609
|
-
license: 'https://github.com/zloirock/core-js/blob/v3.38.1/LICENSE',
|
|
2610
|
-
source: 'https://github.com/zloirock/core-js'
|
|
2611
|
-
});
|
|
2612
|
-
|
|
2613
|
-
var sharedStoreExports = sharedStore.exports;
|
|
2614
|
-
|
|
2615
|
-
var store$2 = sharedStoreExports;
|
|
2616
|
-
|
|
2617
|
-
var shared$3 = function (key, value) {
|
|
2618
|
-
return store$2[key] || (store$2[key] = value || {});
|
|
2619
|
-
};
|
|
2620
|
-
|
|
2621
|
-
var requireObjectCoercible = requireObjectCoercible$2;
|
|
2622
|
-
|
|
2623
|
-
var $Object = Object;
|
|
2624
|
-
|
|
2625
|
-
// `ToObject` abstract operation
|
|
2626
|
-
// https://tc39.es/ecma262/#sec-toobject
|
|
2627
|
-
var toObject$1 = function (argument) {
|
|
2628
|
-
return $Object(requireObjectCoercible(argument));
|
|
2629
|
-
};
|
|
2630
|
-
|
|
2631
|
-
var uncurryThis$5 = functionUncurryThis;
|
|
2632
|
-
var toObject = toObject$1;
|
|
2633
|
-
|
|
2634
|
-
var hasOwnProperty = uncurryThis$5({}.hasOwnProperty);
|
|
2635
|
-
|
|
2636
|
-
// `HasOwnProperty` abstract operation
|
|
2637
|
-
// https://tc39.es/ecma262/#sec-hasownproperty
|
|
2638
|
-
// eslint-disable-next-line es/no-object-hasown -- safe
|
|
2639
|
-
var hasOwnProperty_1 = Object.hasOwn || function hasOwn(it, key) {
|
|
2640
|
-
return hasOwnProperty(toObject(it), key);
|
|
2641
|
-
};
|
|
2642
|
-
|
|
2643
|
-
var uncurryThis$4 = functionUncurryThis;
|
|
2644
|
-
|
|
2645
|
-
var id = 0;
|
|
2646
|
-
var postfix = Math.random();
|
|
2647
|
-
var toString$1 = uncurryThis$4(1.0.toString);
|
|
2648
|
-
|
|
2649
|
-
var uid$2 = function (key) {
|
|
2650
|
-
return 'Symbol(' + (key === undefined ? '' : key) + ')_' + toString$1(++id + postfix, 36);
|
|
2651
|
-
};
|
|
2652
|
-
|
|
2653
|
-
var globalThis$5 = globalThis_1;
|
|
2654
|
-
var shared$2 = shared$3;
|
|
2655
|
-
var hasOwn$6 = hasOwnProperty_1;
|
|
2656
|
-
var uid$1 = uid$2;
|
|
2657
|
-
var NATIVE_SYMBOL = symbolConstructorDetection;
|
|
2658
|
-
var USE_SYMBOL_AS_UID = useSymbolAsUid;
|
|
2659
|
-
|
|
2660
|
-
var Symbol$1 = globalThis$5.Symbol;
|
|
2661
|
-
var WellKnownSymbolsStore = shared$2('wks');
|
|
2662
|
-
var createWellKnownSymbol = USE_SYMBOL_AS_UID ? Symbol$1['for'] || Symbol$1 : Symbol$1 && Symbol$1.withoutSetter || uid$1;
|
|
2663
|
-
|
|
2664
|
-
var wellKnownSymbol$2 = function (name) {
|
|
2665
|
-
if (!hasOwn$6(WellKnownSymbolsStore, name)) {
|
|
2666
|
-
WellKnownSymbolsStore[name] = NATIVE_SYMBOL && hasOwn$6(Symbol$1, name)
|
|
2667
|
-
? Symbol$1[name]
|
|
2668
|
-
: createWellKnownSymbol('Symbol.' + name);
|
|
2669
|
-
} return WellKnownSymbolsStore[name];
|
|
2670
|
-
};
|
|
2671
|
-
|
|
2672
|
-
var call$1 = functionCall;
|
|
2673
|
-
var isObject$3 = isObject$5;
|
|
2674
|
-
var isSymbol$1 = isSymbol$2;
|
|
2675
|
-
var getMethod = getMethod$1;
|
|
2676
|
-
var ordinaryToPrimitive = ordinaryToPrimitive$1;
|
|
2677
|
-
var wellKnownSymbol$1 = wellKnownSymbol$2;
|
|
2678
|
-
|
|
2679
|
-
var $TypeError$2 = TypeError;
|
|
2680
|
-
var TO_PRIMITIVE = wellKnownSymbol$1('toPrimitive');
|
|
2681
|
-
|
|
2682
|
-
// `ToPrimitive` abstract operation
|
|
2683
|
-
// https://tc39.es/ecma262/#sec-toprimitive
|
|
2684
|
-
var toPrimitive$1 = function (input, pref) {
|
|
2685
|
-
if (!isObject$3(input) || isSymbol$1(input)) return input;
|
|
2686
|
-
var exoticToPrim = getMethod(input, TO_PRIMITIVE);
|
|
2687
|
-
var result;
|
|
2688
|
-
if (exoticToPrim) {
|
|
2689
|
-
if (pref === undefined) pref = 'default';
|
|
2690
|
-
result = call$1(exoticToPrim, input, pref);
|
|
2691
|
-
if (!isObject$3(result) || isSymbol$1(result)) return result;
|
|
2692
|
-
throw new $TypeError$2("Can't convert object to primitive value");
|
|
2693
|
-
}
|
|
2694
|
-
if (pref === undefined) pref = 'number';
|
|
2695
|
-
return ordinaryToPrimitive(input, pref);
|
|
2696
|
-
};
|
|
2697
|
-
|
|
2698
|
-
var toPrimitive = toPrimitive$1;
|
|
2699
|
-
var isSymbol = isSymbol$2;
|
|
2700
|
-
|
|
2701
|
-
// `ToPropertyKey` abstract operation
|
|
2702
|
-
// https://tc39.es/ecma262/#sec-topropertykey
|
|
2703
|
-
var toPropertyKey$2 = function (argument) {
|
|
2704
|
-
var key = toPrimitive(argument, 'string');
|
|
2705
|
-
return isSymbol(key) ? key : key + '';
|
|
2706
|
-
};
|
|
2707
|
-
|
|
2708
|
-
var globalThis$4 = globalThis_1;
|
|
2709
|
-
var isObject$2 = isObject$5;
|
|
2710
|
-
|
|
2711
|
-
var document$1 = globalThis$4.document;
|
|
2712
|
-
// typeof document.createElement is 'object' in old IE
|
|
2713
|
-
var EXISTS$1 = isObject$2(document$1) && isObject$2(document$1.createElement);
|
|
2714
|
-
|
|
2715
|
-
var documentCreateElement$1 = function (it) {
|
|
2716
|
-
return EXISTS$1 ? document$1.createElement(it) : {};
|
|
2717
|
-
};
|
|
2718
|
-
|
|
2719
|
-
var DESCRIPTORS$7 = descriptors;
|
|
2720
|
-
var fails$4 = fails$9;
|
|
2721
|
-
var createElement = documentCreateElement$1;
|
|
2722
|
-
|
|
2723
|
-
// Thanks to IE8 for its funny defineProperty
|
|
2724
|
-
var ie8DomDefine = !DESCRIPTORS$7 && !fails$4(function () {
|
|
2725
|
-
// eslint-disable-next-line es/no-object-defineproperty -- required for testing
|
|
2726
|
-
return Object.defineProperty(createElement('div'), 'a', {
|
|
2727
|
-
get: function () { return 7; }
|
|
2728
|
-
}).a !== 7;
|
|
2729
|
-
});
|
|
2730
|
-
|
|
2731
|
-
var DESCRIPTORS$6 = descriptors;
|
|
2732
|
-
var call = functionCall;
|
|
2733
|
-
var propertyIsEnumerableModule = objectPropertyIsEnumerable;
|
|
2734
|
-
var createPropertyDescriptor$1 = createPropertyDescriptor$2;
|
|
2735
|
-
var toIndexedObject$3 = toIndexedObject$4;
|
|
2736
|
-
var toPropertyKey$1 = toPropertyKey$2;
|
|
2737
|
-
var hasOwn$5 = hasOwnProperty_1;
|
|
2738
|
-
var IE8_DOM_DEFINE$1 = ie8DomDefine;
|
|
2739
|
-
|
|
2740
|
-
// eslint-disable-next-line es/no-object-getownpropertydescriptor -- safe
|
|
2741
|
-
var $getOwnPropertyDescriptor$1 = Object.getOwnPropertyDescriptor;
|
|
2742
|
-
|
|
2743
|
-
// `Object.getOwnPropertyDescriptor` method
|
|
2744
|
-
// https://tc39.es/ecma262/#sec-object.getownpropertydescriptor
|
|
2745
|
-
objectGetOwnPropertyDescriptor.f = DESCRIPTORS$6 ? $getOwnPropertyDescriptor$1 : function getOwnPropertyDescriptor(O, P) {
|
|
2746
|
-
O = toIndexedObject$3(O);
|
|
2747
|
-
P = toPropertyKey$1(P);
|
|
2748
|
-
if (IE8_DOM_DEFINE$1) try {
|
|
2749
|
-
return $getOwnPropertyDescriptor$1(O, P);
|
|
2750
|
-
} catch (error) { /* empty */ }
|
|
2751
|
-
if (hasOwn$5(O, P)) return createPropertyDescriptor$1(!call(propertyIsEnumerableModule.f, O, P), O[P]);
|
|
2752
|
-
};
|
|
2753
|
-
|
|
2754
|
-
var objectDefineProperty = {};
|
|
2755
|
-
|
|
2756
|
-
var DESCRIPTORS$5 = descriptors;
|
|
2757
|
-
var fails$3 = fails$9;
|
|
2758
|
-
|
|
2759
|
-
// V8 ~ Chrome 36-
|
|
2760
|
-
// https://bugs.chromium.org/p/v8/issues/detail?id=3334
|
|
2761
|
-
var v8PrototypeDefineBug = DESCRIPTORS$5 && fails$3(function () {
|
|
2762
|
-
// eslint-disable-next-line es/no-object-defineproperty -- required for testing
|
|
2763
|
-
return Object.defineProperty(function () { /* empty */ }, 'prototype', {
|
|
2764
|
-
value: 42,
|
|
2765
|
-
writable: false
|
|
2766
|
-
}).prototype !== 42;
|
|
2767
|
-
});
|
|
2768
|
-
|
|
2769
|
-
var isObject$1 = isObject$5;
|
|
2770
|
-
|
|
2771
|
-
var $String$1 = String;
|
|
2772
|
-
var $TypeError$1 = TypeError;
|
|
2773
|
-
|
|
2774
|
-
// `Assert: Type(argument) is Object`
|
|
2775
|
-
var anObject$4 = function (argument) {
|
|
2776
|
-
if (isObject$1(argument)) return argument;
|
|
2777
|
-
throw new $TypeError$1($String$1(argument) + ' is not an object');
|
|
2778
|
-
};
|
|
2779
|
-
|
|
2780
|
-
var DESCRIPTORS$4 = descriptors;
|
|
2781
|
-
var IE8_DOM_DEFINE = ie8DomDefine;
|
|
2782
|
-
var V8_PROTOTYPE_DEFINE_BUG$1 = v8PrototypeDefineBug;
|
|
2783
|
-
var anObject$3 = anObject$4;
|
|
2784
|
-
var toPropertyKey = toPropertyKey$2;
|
|
2785
|
-
|
|
2786
|
-
var $TypeError = TypeError;
|
|
2787
|
-
// eslint-disable-next-line es/no-object-defineproperty -- safe
|
|
2788
|
-
var $defineProperty = Object.defineProperty;
|
|
2789
|
-
// eslint-disable-next-line es/no-object-getownpropertydescriptor -- safe
|
|
2790
|
-
var $getOwnPropertyDescriptor = Object.getOwnPropertyDescriptor;
|
|
2791
|
-
var ENUMERABLE = 'enumerable';
|
|
2792
|
-
var CONFIGURABLE$1 = 'configurable';
|
|
2793
|
-
var WRITABLE = 'writable';
|
|
2794
|
-
|
|
2795
|
-
// `Object.defineProperty` method
|
|
2796
|
-
// https://tc39.es/ecma262/#sec-object.defineproperty
|
|
2797
|
-
objectDefineProperty.f = DESCRIPTORS$4 ? V8_PROTOTYPE_DEFINE_BUG$1 ? function defineProperty(O, P, Attributes) {
|
|
2798
|
-
anObject$3(O);
|
|
2799
|
-
P = toPropertyKey(P);
|
|
2800
|
-
anObject$3(Attributes);
|
|
2801
|
-
if (typeof O === 'function' && P === 'prototype' && 'value' in Attributes && WRITABLE in Attributes && !Attributes[WRITABLE]) {
|
|
2802
|
-
var current = $getOwnPropertyDescriptor(O, P);
|
|
2803
|
-
if (current && current[WRITABLE]) {
|
|
2804
|
-
O[P] = Attributes.value;
|
|
2805
|
-
Attributes = {
|
|
2806
|
-
configurable: CONFIGURABLE$1 in Attributes ? Attributes[CONFIGURABLE$1] : current[CONFIGURABLE$1],
|
|
2807
|
-
enumerable: ENUMERABLE in Attributes ? Attributes[ENUMERABLE] : current[ENUMERABLE],
|
|
2808
|
-
writable: false
|
|
2809
|
-
};
|
|
2810
|
-
}
|
|
2811
|
-
} return $defineProperty(O, P, Attributes);
|
|
2812
|
-
} : $defineProperty : function defineProperty(O, P, Attributes) {
|
|
2813
|
-
anObject$3(O);
|
|
2814
|
-
P = toPropertyKey(P);
|
|
2815
|
-
anObject$3(Attributes);
|
|
2816
|
-
if (IE8_DOM_DEFINE) try {
|
|
2817
|
-
return $defineProperty(O, P, Attributes);
|
|
2818
|
-
} catch (error) { /* empty */ }
|
|
2819
|
-
if ('get' in Attributes || 'set' in Attributes) throw new $TypeError('Accessors not supported');
|
|
2820
|
-
if ('value' in Attributes) O[P] = Attributes.value;
|
|
2821
|
-
return O;
|
|
2822
|
-
};
|
|
2823
|
-
|
|
2824
|
-
var DESCRIPTORS$3 = descriptors;
|
|
2825
|
-
var definePropertyModule$3 = objectDefineProperty;
|
|
2826
|
-
var createPropertyDescriptor = createPropertyDescriptor$2;
|
|
2827
|
-
|
|
2828
|
-
var createNonEnumerableProperty$2 = DESCRIPTORS$3 ? function (object, key, value) {
|
|
2829
|
-
return definePropertyModule$3.f(object, key, createPropertyDescriptor(1, value));
|
|
2830
|
-
} : function (object, key, value) {
|
|
2831
|
-
object[key] = value;
|
|
2832
|
-
return object;
|
|
2833
|
-
};
|
|
2834
|
-
|
|
2835
|
-
var makeBuiltIn$2 = {exports: {}};
|
|
2836
|
-
|
|
2837
|
-
var DESCRIPTORS$2 = descriptors;
|
|
2838
|
-
var hasOwn$4 = hasOwnProperty_1;
|
|
2798
|
+
var isPure;
|
|
2799
|
+
var hasRequiredIsPure;
|
|
2839
2800
|
|
|
2840
|
-
|
|
2841
|
-
|
|
2842
|
-
|
|
2843
|
-
|
|
2844
|
-
|
|
2845
|
-
// additional protection from minified / mangled / dropped function names
|
|
2846
|
-
var PROPER = EXISTS && (function something() { /* empty */ }).name === 'something';
|
|
2847
|
-
var CONFIGURABLE = EXISTS && (!DESCRIPTORS$2 || (DESCRIPTORS$2 && getDescriptor(FunctionPrototype, 'name').configurable));
|
|
2848
|
-
|
|
2849
|
-
var functionName = {
|
|
2850
|
-
EXISTS: EXISTS,
|
|
2851
|
-
PROPER: PROPER,
|
|
2852
|
-
CONFIGURABLE: CONFIGURABLE
|
|
2853
|
-
};
|
|
2854
|
-
|
|
2855
|
-
var uncurryThis$3 = functionUncurryThis;
|
|
2856
|
-
var isCallable$4 = isCallable$a;
|
|
2857
|
-
var store$1 = sharedStoreExports;
|
|
2858
|
-
|
|
2859
|
-
var functionToString = uncurryThis$3(Function.toString);
|
|
2860
|
-
|
|
2861
|
-
// this helper broken in `core-js@3.4.1-3.4.4`, so we can't use `shared` helper
|
|
2862
|
-
if (!isCallable$4(store$1.inspectSource)) {
|
|
2863
|
-
store$1.inspectSource = function (it) {
|
|
2864
|
-
return functionToString(it);
|
|
2865
|
-
};
|
|
2801
|
+
function requireIsPure () {
|
|
2802
|
+
if (hasRequiredIsPure) return isPure;
|
|
2803
|
+
hasRequiredIsPure = 1;
|
|
2804
|
+
isPure = false;
|
|
2805
|
+
return isPure;
|
|
2866
2806
|
}
|
|
2867
2807
|
|
|
2868
|
-
var
|
|
2869
|
-
|
|
2870
|
-
var globalThis$3 = globalThis_1;
|
|
2871
|
-
var isCallable$3 = isCallable$a;
|
|
2808
|
+
var defineGlobalProperty;
|
|
2809
|
+
var hasRequiredDefineGlobalProperty;
|
|
2872
2810
|
|
|
2873
|
-
|
|
2811
|
+
function requireDefineGlobalProperty () {
|
|
2812
|
+
if (hasRequiredDefineGlobalProperty) return defineGlobalProperty;
|
|
2813
|
+
hasRequiredDefineGlobalProperty = 1;
|
|
2814
|
+
var globalThis = requireGlobalThis();
|
|
2874
2815
|
|
|
2875
|
-
|
|
2816
|
+
// eslint-disable-next-line es/no-object-defineproperty -- safe
|
|
2817
|
+
var defineProperty = Object.defineProperty;
|
|
2876
2818
|
|
|
2877
|
-
|
|
2878
|
-
|
|
2879
|
-
|
|
2880
|
-
|
|
2881
|
-
|
|
2882
|
-
|
|
2883
|
-
|
|
2884
|
-
|
|
2819
|
+
defineGlobalProperty = function (key, value) {
|
|
2820
|
+
try {
|
|
2821
|
+
defineProperty(globalThis, key, { value: value, configurable: true, writable: true });
|
|
2822
|
+
} catch (error) {
|
|
2823
|
+
globalThis[key] = value;
|
|
2824
|
+
} return value;
|
|
2825
|
+
};
|
|
2826
|
+
return defineGlobalProperty;
|
|
2827
|
+
}
|
|
2885
2828
|
|
|
2886
|
-
var
|
|
2829
|
+
var hasRequiredSharedStore;
|
|
2887
2830
|
|
|
2888
|
-
|
|
2889
|
-
|
|
2890
|
-
|
|
2891
|
-
var
|
|
2892
|
-
var
|
|
2893
|
-
var
|
|
2894
|
-
var sharedKey$1 = sharedKey$2;
|
|
2895
|
-
var hiddenKeys$3 = hiddenKeys$4;
|
|
2831
|
+
function requireSharedStore () {
|
|
2832
|
+
if (hasRequiredSharedStore) return sharedStore.exports;
|
|
2833
|
+
hasRequiredSharedStore = 1;
|
|
2834
|
+
var IS_PURE = requireIsPure();
|
|
2835
|
+
var globalThis = requireGlobalThis();
|
|
2836
|
+
var defineGlobalProperty = requireDefineGlobalProperty();
|
|
2896
2837
|
|
|
2897
|
-
var
|
|
2898
|
-
var
|
|
2899
|
-
var WeakMap$1 = globalThis$2.WeakMap;
|
|
2900
|
-
var set, get, has;
|
|
2838
|
+
var SHARED = '__core-js_shared__';
|
|
2839
|
+
var store = sharedStore.exports = globalThis[SHARED] || defineGlobalProperty(SHARED, {});
|
|
2901
2840
|
|
|
2902
|
-
|
|
2903
|
-
|
|
2904
|
-
|
|
2841
|
+
(store.versions || (store.versions = [])).push({
|
|
2842
|
+
version: '3.38.1',
|
|
2843
|
+
mode: IS_PURE ? 'pure' : 'global',
|
|
2844
|
+
copyright: '© 2014-2024 Denis Pushkarev (zloirock.ru)',
|
|
2845
|
+
license: 'https://github.com/zloirock/core-js/blob/v3.38.1/LICENSE',
|
|
2846
|
+
source: 'https://github.com/zloirock/core-js'
|
|
2847
|
+
});
|
|
2848
|
+
return sharedStore.exports;
|
|
2849
|
+
}
|
|
2905
2850
|
|
|
2906
|
-
var
|
|
2907
|
-
|
|
2908
|
-
var state;
|
|
2909
|
-
if (!isObject(it) || (state = get(it)).type !== TYPE) {
|
|
2910
|
-
throw new TypeError$1('Incompatible receiver, ' + TYPE + ' required');
|
|
2911
|
-
} return state;
|
|
2912
|
-
};
|
|
2913
|
-
};
|
|
2851
|
+
var shared;
|
|
2852
|
+
var hasRequiredShared;
|
|
2914
2853
|
|
|
2915
|
-
|
|
2916
|
-
|
|
2917
|
-
|
|
2918
|
-
|
|
2919
|
-
|
|
2920
|
-
|
|
2921
|
-
|
|
2922
|
-
|
|
2923
|
-
|
|
2924
|
-
|
|
2925
|
-
|
|
2926
|
-
|
|
2927
|
-
|
|
2928
|
-
|
|
2929
|
-
|
|
2930
|
-
|
|
2931
|
-
|
|
2932
|
-
|
|
2933
|
-
|
|
2934
|
-
|
|
2935
|
-
|
|
2936
|
-
|
|
2937
|
-
|
|
2938
|
-
|
|
2939
|
-
|
|
2940
|
-
|
|
2941
|
-
|
|
2942
|
-
|
|
2943
|
-
|
|
2944
|
-
|
|
2945
|
-
|
|
2946
|
-
|
|
2947
|
-
|
|
2948
|
-
|
|
2854
|
+
function requireShared () {
|
|
2855
|
+
if (hasRequiredShared) return shared;
|
|
2856
|
+
hasRequiredShared = 1;
|
|
2857
|
+
var store = requireSharedStore();
|
|
2858
|
+
|
|
2859
|
+
shared = function (key, value) {
|
|
2860
|
+
return store[key] || (store[key] = value || {});
|
|
2861
|
+
};
|
|
2862
|
+
return shared;
|
|
2863
|
+
}
|
|
2864
|
+
|
|
2865
|
+
var toObject;
|
|
2866
|
+
var hasRequiredToObject;
|
|
2867
|
+
|
|
2868
|
+
function requireToObject () {
|
|
2869
|
+
if (hasRequiredToObject) return toObject;
|
|
2870
|
+
hasRequiredToObject = 1;
|
|
2871
|
+
var requireObjectCoercible = requireRequireObjectCoercible();
|
|
2872
|
+
|
|
2873
|
+
var $Object = Object;
|
|
2874
|
+
|
|
2875
|
+
// `ToObject` abstract operation
|
|
2876
|
+
// https://tc39.es/ecma262/#sec-toobject
|
|
2877
|
+
toObject = function (argument) {
|
|
2878
|
+
return $Object(requireObjectCoercible(argument));
|
|
2879
|
+
};
|
|
2880
|
+
return toObject;
|
|
2881
|
+
}
|
|
2882
|
+
|
|
2883
|
+
var hasOwnProperty_1;
|
|
2884
|
+
var hasRequiredHasOwnProperty;
|
|
2885
|
+
|
|
2886
|
+
function requireHasOwnProperty () {
|
|
2887
|
+
if (hasRequiredHasOwnProperty) return hasOwnProperty_1;
|
|
2888
|
+
hasRequiredHasOwnProperty = 1;
|
|
2889
|
+
var uncurryThis = requireFunctionUncurryThis();
|
|
2890
|
+
var toObject = requireToObject();
|
|
2891
|
+
|
|
2892
|
+
var hasOwnProperty = uncurryThis({}.hasOwnProperty);
|
|
2893
|
+
|
|
2894
|
+
// `HasOwnProperty` abstract operation
|
|
2895
|
+
// https://tc39.es/ecma262/#sec-hasownproperty
|
|
2896
|
+
// eslint-disable-next-line es/no-object-hasown -- safe
|
|
2897
|
+
hasOwnProperty_1 = Object.hasOwn || function hasOwn(it, key) {
|
|
2898
|
+
return hasOwnProperty(toObject(it), key);
|
|
2899
|
+
};
|
|
2900
|
+
return hasOwnProperty_1;
|
|
2901
|
+
}
|
|
2902
|
+
|
|
2903
|
+
var uid;
|
|
2904
|
+
var hasRequiredUid;
|
|
2905
|
+
|
|
2906
|
+
function requireUid () {
|
|
2907
|
+
if (hasRequiredUid) return uid;
|
|
2908
|
+
hasRequiredUid = 1;
|
|
2909
|
+
var uncurryThis = requireFunctionUncurryThis();
|
|
2910
|
+
|
|
2911
|
+
var id = 0;
|
|
2912
|
+
var postfix = Math.random();
|
|
2913
|
+
var toString = uncurryThis(1.0.toString);
|
|
2914
|
+
|
|
2915
|
+
uid = function (key) {
|
|
2916
|
+
return 'Symbol(' + (key === undefined ? '' : key) + ')_' + toString(++id + postfix, 36);
|
|
2917
|
+
};
|
|
2918
|
+
return uid;
|
|
2919
|
+
}
|
|
2920
|
+
|
|
2921
|
+
var wellKnownSymbol;
|
|
2922
|
+
var hasRequiredWellKnownSymbol;
|
|
2923
|
+
|
|
2924
|
+
function requireWellKnownSymbol () {
|
|
2925
|
+
if (hasRequiredWellKnownSymbol) return wellKnownSymbol;
|
|
2926
|
+
hasRequiredWellKnownSymbol = 1;
|
|
2927
|
+
var globalThis = requireGlobalThis();
|
|
2928
|
+
var shared = requireShared();
|
|
2929
|
+
var hasOwn = requireHasOwnProperty();
|
|
2930
|
+
var uid = requireUid();
|
|
2931
|
+
var NATIVE_SYMBOL = requireSymbolConstructorDetection();
|
|
2932
|
+
var USE_SYMBOL_AS_UID = requireUseSymbolAsUid();
|
|
2933
|
+
|
|
2934
|
+
var Symbol = globalThis.Symbol;
|
|
2935
|
+
var WellKnownSymbolsStore = shared('wks');
|
|
2936
|
+
var createWellKnownSymbol = USE_SYMBOL_AS_UID ? Symbol['for'] || Symbol : Symbol && Symbol.withoutSetter || uid;
|
|
2937
|
+
|
|
2938
|
+
wellKnownSymbol = function (name) {
|
|
2939
|
+
if (!hasOwn(WellKnownSymbolsStore, name)) {
|
|
2940
|
+
WellKnownSymbolsStore[name] = NATIVE_SYMBOL && hasOwn(Symbol, name)
|
|
2941
|
+
? Symbol[name]
|
|
2942
|
+
: createWellKnownSymbol('Symbol.' + name);
|
|
2943
|
+
} return WellKnownSymbolsStore[name];
|
|
2944
|
+
};
|
|
2945
|
+
return wellKnownSymbol;
|
|
2946
|
+
}
|
|
2947
|
+
|
|
2948
|
+
var toPrimitive;
|
|
2949
|
+
var hasRequiredToPrimitive;
|
|
2950
|
+
|
|
2951
|
+
function requireToPrimitive () {
|
|
2952
|
+
if (hasRequiredToPrimitive) return toPrimitive;
|
|
2953
|
+
hasRequiredToPrimitive = 1;
|
|
2954
|
+
var call = requireFunctionCall();
|
|
2955
|
+
var isObject = requireIsObject();
|
|
2956
|
+
var isSymbol = requireIsSymbol();
|
|
2957
|
+
var getMethod = requireGetMethod();
|
|
2958
|
+
var ordinaryToPrimitive = requireOrdinaryToPrimitive();
|
|
2959
|
+
var wellKnownSymbol = requireWellKnownSymbol();
|
|
2960
|
+
|
|
2961
|
+
var $TypeError = TypeError;
|
|
2962
|
+
var TO_PRIMITIVE = wellKnownSymbol('toPrimitive');
|
|
2963
|
+
|
|
2964
|
+
// `ToPrimitive` abstract operation
|
|
2965
|
+
// https://tc39.es/ecma262/#sec-toprimitive
|
|
2966
|
+
toPrimitive = function (input, pref) {
|
|
2967
|
+
if (!isObject(input) || isSymbol(input)) return input;
|
|
2968
|
+
var exoticToPrim = getMethod(input, TO_PRIMITIVE);
|
|
2969
|
+
var result;
|
|
2970
|
+
if (exoticToPrim) {
|
|
2971
|
+
if (pref === undefined) pref = 'default';
|
|
2972
|
+
result = call(exoticToPrim, input, pref);
|
|
2973
|
+
if (!isObject(result) || isSymbol(result)) return result;
|
|
2974
|
+
throw new $TypeError("Can't convert object to primitive value");
|
|
2975
|
+
}
|
|
2976
|
+
if (pref === undefined) pref = 'number';
|
|
2977
|
+
return ordinaryToPrimitive(input, pref);
|
|
2978
|
+
};
|
|
2979
|
+
return toPrimitive;
|
|
2980
|
+
}
|
|
2981
|
+
|
|
2982
|
+
var toPropertyKey;
|
|
2983
|
+
var hasRequiredToPropertyKey;
|
|
2984
|
+
|
|
2985
|
+
function requireToPropertyKey () {
|
|
2986
|
+
if (hasRequiredToPropertyKey) return toPropertyKey;
|
|
2987
|
+
hasRequiredToPropertyKey = 1;
|
|
2988
|
+
var toPrimitive = requireToPrimitive();
|
|
2989
|
+
var isSymbol = requireIsSymbol();
|
|
2990
|
+
|
|
2991
|
+
// `ToPropertyKey` abstract operation
|
|
2992
|
+
// https://tc39.es/ecma262/#sec-topropertykey
|
|
2993
|
+
toPropertyKey = function (argument) {
|
|
2994
|
+
var key = toPrimitive(argument, 'string');
|
|
2995
|
+
return isSymbol(key) ? key : key + '';
|
|
2996
|
+
};
|
|
2997
|
+
return toPropertyKey;
|
|
2998
|
+
}
|
|
2999
|
+
|
|
3000
|
+
var documentCreateElement;
|
|
3001
|
+
var hasRequiredDocumentCreateElement;
|
|
3002
|
+
|
|
3003
|
+
function requireDocumentCreateElement () {
|
|
3004
|
+
if (hasRequiredDocumentCreateElement) return documentCreateElement;
|
|
3005
|
+
hasRequiredDocumentCreateElement = 1;
|
|
3006
|
+
var globalThis = requireGlobalThis();
|
|
3007
|
+
var isObject = requireIsObject();
|
|
3008
|
+
|
|
3009
|
+
var document = globalThis.document;
|
|
3010
|
+
// typeof document.createElement is 'object' in old IE
|
|
3011
|
+
var EXISTS = isObject(document) && isObject(document.createElement);
|
|
3012
|
+
|
|
3013
|
+
documentCreateElement = function (it) {
|
|
3014
|
+
return EXISTS ? document.createElement(it) : {};
|
|
3015
|
+
};
|
|
3016
|
+
return documentCreateElement;
|
|
3017
|
+
}
|
|
3018
|
+
|
|
3019
|
+
var ie8DomDefine;
|
|
3020
|
+
var hasRequiredIe8DomDefine;
|
|
3021
|
+
|
|
3022
|
+
function requireIe8DomDefine () {
|
|
3023
|
+
if (hasRequiredIe8DomDefine) return ie8DomDefine;
|
|
3024
|
+
hasRequiredIe8DomDefine = 1;
|
|
3025
|
+
var DESCRIPTORS = requireDescriptors();
|
|
3026
|
+
var fails = requireFails();
|
|
3027
|
+
var createElement = requireDocumentCreateElement();
|
|
3028
|
+
|
|
3029
|
+
// Thanks to IE8 for its funny defineProperty
|
|
3030
|
+
ie8DomDefine = !DESCRIPTORS && !fails(function () {
|
|
3031
|
+
// eslint-disable-next-line es/no-object-defineproperty -- required for testing
|
|
3032
|
+
return Object.defineProperty(createElement('div'), 'a', {
|
|
3033
|
+
get: function () { return 7; }
|
|
3034
|
+
}).a !== 7;
|
|
3035
|
+
});
|
|
3036
|
+
return ie8DomDefine;
|
|
3037
|
+
}
|
|
3038
|
+
|
|
3039
|
+
var hasRequiredObjectGetOwnPropertyDescriptor;
|
|
3040
|
+
|
|
3041
|
+
function requireObjectGetOwnPropertyDescriptor () {
|
|
3042
|
+
if (hasRequiredObjectGetOwnPropertyDescriptor) return objectGetOwnPropertyDescriptor;
|
|
3043
|
+
hasRequiredObjectGetOwnPropertyDescriptor = 1;
|
|
3044
|
+
var DESCRIPTORS = requireDescriptors();
|
|
3045
|
+
var call = requireFunctionCall();
|
|
3046
|
+
var propertyIsEnumerableModule = requireObjectPropertyIsEnumerable();
|
|
3047
|
+
var createPropertyDescriptor = requireCreatePropertyDescriptor();
|
|
3048
|
+
var toIndexedObject = requireToIndexedObject();
|
|
3049
|
+
var toPropertyKey = requireToPropertyKey();
|
|
3050
|
+
var hasOwn = requireHasOwnProperty();
|
|
3051
|
+
var IE8_DOM_DEFINE = requireIe8DomDefine();
|
|
3052
|
+
|
|
3053
|
+
// eslint-disable-next-line es/no-object-getownpropertydescriptor -- safe
|
|
3054
|
+
var $getOwnPropertyDescriptor = Object.getOwnPropertyDescriptor;
|
|
3055
|
+
|
|
3056
|
+
// `Object.getOwnPropertyDescriptor` method
|
|
3057
|
+
// https://tc39.es/ecma262/#sec-object.getownpropertydescriptor
|
|
3058
|
+
objectGetOwnPropertyDescriptor.f = DESCRIPTORS ? $getOwnPropertyDescriptor : function getOwnPropertyDescriptor(O, P) {
|
|
3059
|
+
O = toIndexedObject(O);
|
|
3060
|
+
P = toPropertyKey(P);
|
|
3061
|
+
if (IE8_DOM_DEFINE) try {
|
|
3062
|
+
return $getOwnPropertyDescriptor(O, P);
|
|
3063
|
+
} catch (error) { /* empty */ }
|
|
3064
|
+
if (hasOwn(O, P)) return createPropertyDescriptor(!call(propertyIsEnumerableModule.f, O, P), O[P]);
|
|
3065
|
+
};
|
|
3066
|
+
return objectGetOwnPropertyDescriptor;
|
|
2949
3067
|
}
|
|
2950
3068
|
|
|
2951
|
-
var
|
|
2952
|
-
set: set,
|
|
2953
|
-
get: get,
|
|
2954
|
-
has: has,
|
|
2955
|
-
enforce: enforce,
|
|
2956
|
-
getterFor: getterFor
|
|
2957
|
-
};
|
|
2958
|
-
|
|
2959
|
-
var uncurryThis$2 = functionUncurryThis;
|
|
2960
|
-
var fails$2 = fails$9;
|
|
2961
|
-
var isCallable$2 = isCallable$a;
|
|
2962
|
-
var hasOwn$2 = hasOwnProperty_1;
|
|
2963
|
-
var DESCRIPTORS$1 = descriptors;
|
|
2964
|
-
var CONFIGURABLE_FUNCTION_NAME = functionName.CONFIGURABLE;
|
|
2965
|
-
var inspectSource = inspectSource$1;
|
|
2966
|
-
var InternalStateModule = internalState;
|
|
2967
|
-
|
|
2968
|
-
var enforceInternalState = InternalStateModule.enforce;
|
|
2969
|
-
var getInternalState = InternalStateModule.get;
|
|
2970
|
-
var $String = String;
|
|
2971
|
-
// eslint-disable-next-line es/no-object-defineproperty -- safe
|
|
2972
|
-
var defineProperty$1 = Object.defineProperty;
|
|
2973
|
-
var stringSlice = uncurryThis$2(''.slice);
|
|
2974
|
-
var replace = uncurryThis$2(''.replace);
|
|
2975
|
-
var join = uncurryThis$2([].join);
|
|
2976
|
-
|
|
2977
|
-
var CONFIGURABLE_LENGTH = DESCRIPTORS$1 && !fails$2(function () {
|
|
2978
|
-
return defineProperty$1(function () { /* empty */ }, 'length', { value: 8 }).length !== 8;
|
|
2979
|
-
});
|
|
2980
|
-
|
|
2981
|
-
var TEMPLATE = String(String).split('String');
|
|
2982
|
-
|
|
2983
|
-
var makeBuiltIn$1 = makeBuiltIn$2.exports = function (value, name, options) {
|
|
2984
|
-
if (stringSlice($String(name), 0, 7) === 'Symbol(') {
|
|
2985
|
-
name = '[' + replace($String(name), /^Symbol\(([^)]*)\).*$/, '$1') + ']';
|
|
2986
|
-
}
|
|
2987
|
-
if (options && options.getter) name = 'get ' + name;
|
|
2988
|
-
if (options && options.setter) name = 'set ' + name;
|
|
2989
|
-
if (!hasOwn$2(value, 'name') || (CONFIGURABLE_FUNCTION_NAME && value.name !== name)) {
|
|
2990
|
-
if (DESCRIPTORS$1) defineProperty$1(value, 'name', { value: name, configurable: true });
|
|
2991
|
-
else value.name = name;
|
|
2992
|
-
}
|
|
2993
|
-
if (CONFIGURABLE_LENGTH && options && hasOwn$2(options, 'arity') && value.length !== options.arity) {
|
|
2994
|
-
defineProperty$1(value, 'length', { value: options.arity });
|
|
2995
|
-
}
|
|
2996
|
-
try {
|
|
2997
|
-
if (options && hasOwn$2(options, 'constructor') && options.constructor) {
|
|
2998
|
-
if (DESCRIPTORS$1) defineProperty$1(value, 'prototype', { writable: false });
|
|
2999
|
-
// in V8 ~ Chrome 53, prototypes of some methods, like `Array.prototype.values`, are non-writable
|
|
3000
|
-
} else if (value.prototype) value.prototype = undefined;
|
|
3001
|
-
} catch (error) { /* empty */ }
|
|
3002
|
-
var state = enforceInternalState(value);
|
|
3003
|
-
if (!hasOwn$2(state, 'source')) {
|
|
3004
|
-
state.source = join(TEMPLATE, typeof name == 'string' ? name : '');
|
|
3005
|
-
} return value;
|
|
3006
|
-
};
|
|
3069
|
+
var objectDefineProperty = {};
|
|
3007
3070
|
|
|
3008
|
-
|
|
3009
|
-
|
|
3010
|
-
|
|
3011
|
-
|
|
3012
|
-
|
|
3013
|
-
|
|
3014
|
-
var
|
|
3015
|
-
|
|
3016
|
-
|
|
3017
|
-
|
|
3018
|
-
|
|
3019
|
-
|
|
3020
|
-
|
|
3021
|
-
|
|
3022
|
-
|
|
3023
|
-
|
|
3024
|
-
|
|
3025
|
-
|
|
3026
|
-
|
|
3027
|
-
|
|
3028
|
-
|
|
3029
|
-
|
|
3030
|
-
|
|
3031
|
-
|
|
3032
|
-
|
|
3033
|
-
|
|
3034
|
-
|
|
3035
|
-
|
|
3036
|
-
|
|
3037
|
-
|
|
3038
|
-
|
|
3039
|
-
|
|
3040
|
-
|
|
3041
|
-
|
|
3042
|
-
|
|
3071
|
+
var v8PrototypeDefineBug;
|
|
3072
|
+
var hasRequiredV8PrototypeDefineBug;
|
|
3073
|
+
|
|
3074
|
+
function requireV8PrototypeDefineBug () {
|
|
3075
|
+
if (hasRequiredV8PrototypeDefineBug) return v8PrototypeDefineBug;
|
|
3076
|
+
hasRequiredV8PrototypeDefineBug = 1;
|
|
3077
|
+
var DESCRIPTORS = requireDescriptors();
|
|
3078
|
+
var fails = requireFails();
|
|
3079
|
+
|
|
3080
|
+
// V8 ~ Chrome 36-
|
|
3081
|
+
// https://bugs.chromium.org/p/v8/issues/detail?id=3334
|
|
3082
|
+
v8PrototypeDefineBug = DESCRIPTORS && fails(function () {
|
|
3083
|
+
// eslint-disable-next-line es/no-object-defineproperty -- required for testing
|
|
3084
|
+
return Object.defineProperty(function () { /* empty */ }, 'prototype', {
|
|
3085
|
+
value: 42,
|
|
3086
|
+
writable: false
|
|
3087
|
+
}).prototype !== 42;
|
|
3088
|
+
});
|
|
3089
|
+
return v8PrototypeDefineBug;
|
|
3090
|
+
}
|
|
3091
|
+
|
|
3092
|
+
var anObject;
|
|
3093
|
+
var hasRequiredAnObject;
|
|
3094
|
+
|
|
3095
|
+
function requireAnObject () {
|
|
3096
|
+
if (hasRequiredAnObject) return anObject;
|
|
3097
|
+
hasRequiredAnObject = 1;
|
|
3098
|
+
var isObject = requireIsObject();
|
|
3099
|
+
|
|
3100
|
+
var $String = String;
|
|
3101
|
+
var $TypeError = TypeError;
|
|
3102
|
+
|
|
3103
|
+
// `Assert: Type(argument) is Object`
|
|
3104
|
+
anObject = function (argument) {
|
|
3105
|
+
if (isObject(argument)) return argument;
|
|
3106
|
+
throw new $TypeError($String(argument) + ' is not an object');
|
|
3107
|
+
};
|
|
3108
|
+
return anObject;
|
|
3109
|
+
}
|
|
3110
|
+
|
|
3111
|
+
var hasRequiredObjectDefineProperty;
|
|
3112
|
+
|
|
3113
|
+
function requireObjectDefineProperty () {
|
|
3114
|
+
if (hasRequiredObjectDefineProperty) return objectDefineProperty;
|
|
3115
|
+
hasRequiredObjectDefineProperty = 1;
|
|
3116
|
+
var DESCRIPTORS = requireDescriptors();
|
|
3117
|
+
var IE8_DOM_DEFINE = requireIe8DomDefine();
|
|
3118
|
+
var V8_PROTOTYPE_DEFINE_BUG = requireV8PrototypeDefineBug();
|
|
3119
|
+
var anObject = requireAnObject();
|
|
3120
|
+
var toPropertyKey = requireToPropertyKey();
|
|
3121
|
+
|
|
3122
|
+
var $TypeError = TypeError;
|
|
3123
|
+
// eslint-disable-next-line es/no-object-defineproperty -- safe
|
|
3124
|
+
var $defineProperty = Object.defineProperty;
|
|
3125
|
+
// eslint-disable-next-line es/no-object-getownpropertydescriptor -- safe
|
|
3126
|
+
var $getOwnPropertyDescriptor = Object.getOwnPropertyDescriptor;
|
|
3127
|
+
var ENUMERABLE = 'enumerable';
|
|
3128
|
+
var CONFIGURABLE = 'configurable';
|
|
3129
|
+
var WRITABLE = 'writable';
|
|
3130
|
+
|
|
3131
|
+
// `Object.defineProperty` method
|
|
3132
|
+
// https://tc39.es/ecma262/#sec-object.defineproperty
|
|
3133
|
+
objectDefineProperty.f = DESCRIPTORS ? V8_PROTOTYPE_DEFINE_BUG ? function defineProperty(O, P, Attributes) {
|
|
3134
|
+
anObject(O);
|
|
3135
|
+
P = toPropertyKey(P);
|
|
3136
|
+
anObject(Attributes);
|
|
3137
|
+
if (typeof O === 'function' && P === 'prototype' && 'value' in Attributes && WRITABLE in Attributes && !Attributes[WRITABLE]) {
|
|
3138
|
+
var current = $getOwnPropertyDescriptor(O, P);
|
|
3139
|
+
if (current && current[WRITABLE]) {
|
|
3140
|
+
O[P] = Attributes.value;
|
|
3141
|
+
Attributes = {
|
|
3142
|
+
configurable: CONFIGURABLE in Attributes ? Attributes[CONFIGURABLE] : current[CONFIGURABLE],
|
|
3143
|
+
enumerable: ENUMERABLE in Attributes ? Attributes[ENUMERABLE] : current[ENUMERABLE],
|
|
3144
|
+
writable: false
|
|
3145
|
+
};
|
|
3146
|
+
}
|
|
3147
|
+
} return $defineProperty(O, P, Attributes);
|
|
3148
|
+
} : $defineProperty : function defineProperty(O, P, Attributes) {
|
|
3149
|
+
anObject(O);
|
|
3150
|
+
P = toPropertyKey(P);
|
|
3151
|
+
anObject(Attributes);
|
|
3152
|
+
if (IE8_DOM_DEFINE) try {
|
|
3153
|
+
return $defineProperty(O, P, Attributes);
|
|
3154
|
+
} catch (error) { /* empty */ }
|
|
3155
|
+
if ('get' in Attributes || 'set' in Attributes) throw new $TypeError('Accessors not supported');
|
|
3156
|
+
if ('value' in Attributes) O[P] = Attributes.value;
|
|
3157
|
+
return O;
|
|
3158
|
+
};
|
|
3159
|
+
return objectDefineProperty;
|
|
3160
|
+
}
|
|
3161
|
+
|
|
3162
|
+
var createNonEnumerableProperty;
|
|
3163
|
+
var hasRequiredCreateNonEnumerableProperty;
|
|
3164
|
+
|
|
3165
|
+
function requireCreateNonEnumerableProperty () {
|
|
3166
|
+
if (hasRequiredCreateNonEnumerableProperty) return createNonEnumerableProperty;
|
|
3167
|
+
hasRequiredCreateNonEnumerableProperty = 1;
|
|
3168
|
+
var DESCRIPTORS = requireDescriptors();
|
|
3169
|
+
var definePropertyModule = requireObjectDefineProperty();
|
|
3170
|
+
var createPropertyDescriptor = requireCreatePropertyDescriptor();
|
|
3171
|
+
|
|
3172
|
+
createNonEnumerableProperty = DESCRIPTORS ? function (object, key, value) {
|
|
3173
|
+
return definePropertyModule.f(object, key, createPropertyDescriptor(1, value));
|
|
3174
|
+
} : function (object, key, value) {
|
|
3175
|
+
object[key] = value;
|
|
3176
|
+
return object;
|
|
3177
|
+
};
|
|
3178
|
+
return createNonEnumerableProperty;
|
|
3179
|
+
}
|
|
3180
|
+
|
|
3181
|
+
var makeBuiltIn = {exports: {}};
|
|
3182
|
+
|
|
3183
|
+
var functionName;
|
|
3184
|
+
var hasRequiredFunctionName;
|
|
3185
|
+
|
|
3186
|
+
function requireFunctionName () {
|
|
3187
|
+
if (hasRequiredFunctionName) return functionName;
|
|
3188
|
+
hasRequiredFunctionName = 1;
|
|
3189
|
+
var DESCRIPTORS = requireDescriptors();
|
|
3190
|
+
var hasOwn = requireHasOwnProperty();
|
|
3191
|
+
|
|
3192
|
+
var FunctionPrototype = Function.prototype;
|
|
3193
|
+
// eslint-disable-next-line es/no-object-getownpropertydescriptor -- safe
|
|
3194
|
+
var getDescriptor = DESCRIPTORS && Object.getOwnPropertyDescriptor;
|
|
3195
|
+
|
|
3196
|
+
var EXISTS = hasOwn(FunctionPrototype, 'name');
|
|
3197
|
+
// additional protection from minified / mangled / dropped function names
|
|
3198
|
+
var PROPER = EXISTS && (function something() { /* empty */ }).name === 'something';
|
|
3199
|
+
var CONFIGURABLE = EXISTS && (!DESCRIPTORS || (DESCRIPTORS && getDescriptor(FunctionPrototype, 'name').configurable));
|
|
3200
|
+
|
|
3201
|
+
functionName = {
|
|
3202
|
+
EXISTS: EXISTS,
|
|
3203
|
+
PROPER: PROPER,
|
|
3204
|
+
CONFIGURABLE: CONFIGURABLE
|
|
3205
|
+
};
|
|
3206
|
+
return functionName;
|
|
3207
|
+
}
|
|
3208
|
+
|
|
3209
|
+
var inspectSource;
|
|
3210
|
+
var hasRequiredInspectSource;
|
|
3211
|
+
|
|
3212
|
+
function requireInspectSource () {
|
|
3213
|
+
if (hasRequiredInspectSource) return inspectSource;
|
|
3214
|
+
hasRequiredInspectSource = 1;
|
|
3215
|
+
var uncurryThis = requireFunctionUncurryThis();
|
|
3216
|
+
var isCallable = requireIsCallable();
|
|
3217
|
+
var store = requireSharedStore();
|
|
3218
|
+
|
|
3219
|
+
var functionToString = uncurryThis(Function.toString);
|
|
3220
|
+
|
|
3221
|
+
// this helper broken in `core-js@3.4.1-3.4.4`, so we can't use `shared` helper
|
|
3222
|
+
if (!isCallable(store.inspectSource)) {
|
|
3223
|
+
store.inspectSource = function (it) {
|
|
3224
|
+
return functionToString(it);
|
|
3225
|
+
};
|
|
3226
|
+
}
|
|
3227
|
+
|
|
3228
|
+
inspectSource = store.inspectSource;
|
|
3229
|
+
return inspectSource;
|
|
3230
|
+
}
|
|
3231
|
+
|
|
3232
|
+
var weakMapBasicDetection;
|
|
3233
|
+
var hasRequiredWeakMapBasicDetection;
|
|
3234
|
+
|
|
3235
|
+
function requireWeakMapBasicDetection () {
|
|
3236
|
+
if (hasRequiredWeakMapBasicDetection) return weakMapBasicDetection;
|
|
3237
|
+
hasRequiredWeakMapBasicDetection = 1;
|
|
3238
|
+
var globalThis = requireGlobalThis();
|
|
3239
|
+
var isCallable = requireIsCallable();
|
|
3240
|
+
|
|
3241
|
+
var WeakMap = globalThis.WeakMap;
|
|
3242
|
+
|
|
3243
|
+
weakMapBasicDetection = isCallable(WeakMap) && /native code/.test(String(WeakMap));
|
|
3244
|
+
return weakMapBasicDetection;
|
|
3245
|
+
}
|
|
3246
|
+
|
|
3247
|
+
var sharedKey;
|
|
3248
|
+
var hasRequiredSharedKey;
|
|
3249
|
+
|
|
3250
|
+
function requireSharedKey () {
|
|
3251
|
+
if (hasRequiredSharedKey) return sharedKey;
|
|
3252
|
+
hasRequiredSharedKey = 1;
|
|
3253
|
+
var shared = requireShared();
|
|
3254
|
+
var uid = requireUid();
|
|
3255
|
+
|
|
3256
|
+
var keys = shared('keys');
|
|
3257
|
+
|
|
3258
|
+
sharedKey = function (key) {
|
|
3259
|
+
return keys[key] || (keys[key] = uid(key));
|
|
3260
|
+
};
|
|
3261
|
+
return sharedKey;
|
|
3262
|
+
}
|
|
3263
|
+
|
|
3264
|
+
var hiddenKeys;
|
|
3265
|
+
var hasRequiredHiddenKeys;
|
|
3266
|
+
|
|
3267
|
+
function requireHiddenKeys () {
|
|
3268
|
+
if (hasRequiredHiddenKeys) return hiddenKeys;
|
|
3269
|
+
hasRequiredHiddenKeys = 1;
|
|
3270
|
+
hiddenKeys = {};
|
|
3271
|
+
return hiddenKeys;
|
|
3272
|
+
}
|
|
3273
|
+
|
|
3274
|
+
var internalState;
|
|
3275
|
+
var hasRequiredInternalState;
|
|
3276
|
+
|
|
3277
|
+
function requireInternalState () {
|
|
3278
|
+
if (hasRequiredInternalState) return internalState;
|
|
3279
|
+
hasRequiredInternalState = 1;
|
|
3280
|
+
var NATIVE_WEAK_MAP = requireWeakMapBasicDetection();
|
|
3281
|
+
var globalThis = requireGlobalThis();
|
|
3282
|
+
var isObject = requireIsObject();
|
|
3283
|
+
var createNonEnumerableProperty = requireCreateNonEnumerableProperty();
|
|
3284
|
+
var hasOwn = requireHasOwnProperty();
|
|
3285
|
+
var shared = requireSharedStore();
|
|
3286
|
+
var sharedKey = requireSharedKey();
|
|
3287
|
+
var hiddenKeys = requireHiddenKeys();
|
|
3288
|
+
|
|
3289
|
+
var OBJECT_ALREADY_INITIALIZED = 'Object already initialized';
|
|
3290
|
+
var TypeError = globalThis.TypeError;
|
|
3291
|
+
var WeakMap = globalThis.WeakMap;
|
|
3292
|
+
var set, get, has;
|
|
3293
|
+
|
|
3294
|
+
var enforce = function (it) {
|
|
3295
|
+
return has(it) ? get(it) : set(it, {});
|
|
3296
|
+
};
|
|
3297
|
+
|
|
3298
|
+
var getterFor = function (TYPE) {
|
|
3299
|
+
return function (it) {
|
|
3300
|
+
var state;
|
|
3301
|
+
if (!isObject(it) || (state = get(it)).type !== TYPE) {
|
|
3302
|
+
throw new TypeError('Incompatible receiver, ' + TYPE + ' required');
|
|
3303
|
+
} return state;
|
|
3304
|
+
};
|
|
3305
|
+
};
|
|
3306
|
+
|
|
3307
|
+
if (NATIVE_WEAK_MAP || shared.state) {
|
|
3308
|
+
var store = shared.state || (shared.state = new WeakMap());
|
|
3309
|
+
/* eslint-disable no-self-assign -- prototype methods protection */
|
|
3310
|
+
store.get = store.get;
|
|
3311
|
+
store.has = store.has;
|
|
3312
|
+
store.set = store.set;
|
|
3313
|
+
/* eslint-enable no-self-assign -- prototype methods protection */
|
|
3314
|
+
set = function (it, metadata) {
|
|
3315
|
+
if (store.has(it)) throw new TypeError(OBJECT_ALREADY_INITIALIZED);
|
|
3316
|
+
metadata.facade = it;
|
|
3317
|
+
store.set(it, metadata);
|
|
3318
|
+
return metadata;
|
|
3319
|
+
};
|
|
3320
|
+
get = function (it) {
|
|
3321
|
+
return store.get(it) || {};
|
|
3322
|
+
};
|
|
3323
|
+
has = function (it) {
|
|
3324
|
+
return store.has(it);
|
|
3325
|
+
};
|
|
3326
|
+
} else {
|
|
3327
|
+
var STATE = sharedKey('state');
|
|
3328
|
+
hiddenKeys[STATE] = true;
|
|
3329
|
+
set = function (it, metadata) {
|
|
3330
|
+
if (hasOwn(it, STATE)) throw new TypeError(OBJECT_ALREADY_INITIALIZED);
|
|
3331
|
+
metadata.facade = it;
|
|
3332
|
+
createNonEnumerableProperty(it, STATE, metadata);
|
|
3333
|
+
return metadata;
|
|
3334
|
+
};
|
|
3335
|
+
get = function (it) {
|
|
3336
|
+
return hasOwn(it, STATE) ? it[STATE] : {};
|
|
3337
|
+
};
|
|
3338
|
+
has = function (it) {
|
|
3339
|
+
return hasOwn(it, STATE);
|
|
3340
|
+
};
|
|
3341
|
+
}
|
|
3342
|
+
|
|
3343
|
+
internalState = {
|
|
3344
|
+
set: set,
|
|
3345
|
+
get: get,
|
|
3346
|
+
has: has,
|
|
3347
|
+
enforce: enforce,
|
|
3348
|
+
getterFor: getterFor
|
|
3349
|
+
};
|
|
3350
|
+
return internalState;
|
|
3351
|
+
}
|
|
3352
|
+
|
|
3353
|
+
var hasRequiredMakeBuiltIn;
|
|
3354
|
+
|
|
3355
|
+
function requireMakeBuiltIn () {
|
|
3356
|
+
if (hasRequiredMakeBuiltIn) return makeBuiltIn.exports;
|
|
3357
|
+
hasRequiredMakeBuiltIn = 1;
|
|
3358
|
+
var uncurryThis = requireFunctionUncurryThis();
|
|
3359
|
+
var fails = requireFails();
|
|
3360
|
+
var isCallable = requireIsCallable();
|
|
3361
|
+
var hasOwn = requireHasOwnProperty();
|
|
3362
|
+
var DESCRIPTORS = requireDescriptors();
|
|
3363
|
+
var CONFIGURABLE_FUNCTION_NAME = requireFunctionName().CONFIGURABLE;
|
|
3364
|
+
var inspectSource = requireInspectSource();
|
|
3365
|
+
var InternalStateModule = requireInternalState();
|
|
3366
|
+
|
|
3367
|
+
var enforceInternalState = InternalStateModule.enforce;
|
|
3368
|
+
var getInternalState = InternalStateModule.get;
|
|
3369
|
+
var $String = String;
|
|
3370
|
+
// eslint-disable-next-line es/no-object-defineproperty -- safe
|
|
3371
|
+
var defineProperty = Object.defineProperty;
|
|
3372
|
+
var stringSlice = uncurryThis(''.slice);
|
|
3373
|
+
var replace = uncurryThis(''.replace);
|
|
3374
|
+
var join = uncurryThis([].join);
|
|
3375
|
+
|
|
3376
|
+
var CONFIGURABLE_LENGTH = DESCRIPTORS && !fails(function () {
|
|
3377
|
+
return defineProperty(function () { /* empty */ }, 'length', { value: 8 }).length !== 8;
|
|
3378
|
+
});
|
|
3379
|
+
|
|
3380
|
+
var TEMPLATE = String(String).split('String');
|
|
3381
|
+
|
|
3382
|
+
var makeBuiltIn$1 = makeBuiltIn.exports = function (value, name, options) {
|
|
3383
|
+
if (stringSlice($String(name), 0, 7) === 'Symbol(') {
|
|
3384
|
+
name = '[' + replace($String(name), /^Symbol\(([^)]*)\).*$/, '$1') + ']';
|
|
3385
|
+
}
|
|
3386
|
+
if (options && options.getter) name = 'get ' + name;
|
|
3387
|
+
if (options && options.setter) name = 'set ' + name;
|
|
3388
|
+
if (!hasOwn(value, 'name') || (CONFIGURABLE_FUNCTION_NAME && value.name !== name)) {
|
|
3389
|
+
if (DESCRIPTORS) defineProperty(value, 'name', { value: name, configurable: true });
|
|
3390
|
+
else value.name = name;
|
|
3391
|
+
}
|
|
3392
|
+
if (CONFIGURABLE_LENGTH && options && hasOwn(options, 'arity') && value.length !== options.arity) {
|
|
3393
|
+
defineProperty(value, 'length', { value: options.arity });
|
|
3394
|
+
}
|
|
3395
|
+
try {
|
|
3396
|
+
if (options && hasOwn(options, 'constructor') && options.constructor) {
|
|
3397
|
+
if (DESCRIPTORS) defineProperty(value, 'prototype', { writable: false });
|
|
3398
|
+
// in V8 ~ Chrome 53, prototypes of some methods, like `Array.prototype.values`, are non-writable
|
|
3399
|
+
} else if (value.prototype) value.prototype = undefined;
|
|
3400
|
+
} catch (error) { /* empty */ }
|
|
3401
|
+
var state = enforceInternalState(value);
|
|
3402
|
+
if (!hasOwn(state, 'source')) {
|
|
3403
|
+
state.source = join(TEMPLATE, typeof name == 'string' ? name : '');
|
|
3404
|
+
} return value;
|
|
3405
|
+
};
|
|
3406
|
+
|
|
3407
|
+
// add fake Function#toString for correct work wrapped methods / constructors with methods like LoDash isNative
|
|
3408
|
+
// eslint-disable-next-line no-extend-native -- required
|
|
3409
|
+
Function.prototype.toString = makeBuiltIn$1(function toString() {
|
|
3410
|
+
return isCallable(this) && getInternalState(this).source || inspectSource(this);
|
|
3411
|
+
}, 'toString');
|
|
3412
|
+
return makeBuiltIn.exports;
|
|
3413
|
+
}
|
|
3414
|
+
|
|
3415
|
+
var defineBuiltIn;
|
|
3416
|
+
var hasRequiredDefineBuiltIn;
|
|
3417
|
+
|
|
3418
|
+
function requireDefineBuiltIn () {
|
|
3419
|
+
if (hasRequiredDefineBuiltIn) return defineBuiltIn;
|
|
3420
|
+
hasRequiredDefineBuiltIn = 1;
|
|
3421
|
+
var isCallable = requireIsCallable();
|
|
3422
|
+
var definePropertyModule = requireObjectDefineProperty();
|
|
3423
|
+
var makeBuiltIn = requireMakeBuiltIn();
|
|
3424
|
+
var defineGlobalProperty = requireDefineGlobalProperty();
|
|
3425
|
+
|
|
3426
|
+
defineBuiltIn = function (O, key, value, options) {
|
|
3427
|
+
if (!options) options = {};
|
|
3428
|
+
var simple = options.enumerable;
|
|
3429
|
+
var name = options.name !== undefined ? options.name : key;
|
|
3430
|
+
if (isCallable(value)) makeBuiltIn(value, name, options);
|
|
3431
|
+
if (options.global) {
|
|
3432
|
+
if (simple) O[key] = value;
|
|
3433
|
+
else defineGlobalProperty(key, value);
|
|
3434
|
+
} else {
|
|
3435
|
+
try {
|
|
3436
|
+
if (!options.unsafe) delete O[key];
|
|
3437
|
+
else if (O[key]) simple = true;
|
|
3438
|
+
} catch (error) { /* empty */ }
|
|
3439
|
+
if (simple) O[key] = value;
|
|
3440
|
+
else definePropertyModule.f(O, key, {
|
|
3441
|
+
value: value,
|
|
3442
|
+
enumerable: false,
|
|
3443
|
+
configurable: !options.nonConfigurable,
|
|
3444
|
+
writable: !options.nonWritable
|
|
3445
|
+
});
|
|
3446
|
+
} return O;
|
|
3447
|
+
};
|
|
3448
|
+
return defineBuiltIn;
|
|
3449
|
+
}
|
|
3043
3450
|
|
|
3044
3451
|
var objectGetOwnPropertyNames = {};
|
|
3045
3452
|
|
|
3046
|
-
var
|
|
3047
|
-
var
|
|
3048
|
-
|
|
3049
|
-
|
|
3050
|
-
|
|
3051
|
-
|
|
3052
|
-
var
|
|
3053
|
-
|
|
3054
|
-
|
|
3055
|
-
|
|
3056
|
-
|
|
3057
|
-
|
|
3058
|
-
|
|
3059
|
-
|
|
3060
|
-
|
|
3061
|
-
|
|
3062
|
-
|
|
3063
|
-
|
|
3064
|
-
|
|
3065
|
-
|
|
3066
|
-
|
|
3067
|
-
|
|
3068
|
-
|
|
3069
|
-
|
|
3070
|
-
|
|
3071
|
-
|
|
3072
|
-
|
|
3073
|
-
//
|
|
3074
|
-
//
|
|
3075
|
-
|
|
3076
|
-
|
|
3077
|
-
|
|
3078
|
-
|
|
3079
|
-
|
|
3080
|
-
|
|
3081
|
-
|
|
3082
|
-
|
|
3083
|
-
|
|
3084
|
-
|
|
3085
|
-
|
|
3086
|
-
|
|
3087
|
-
|
|
3088
|
-
|
|
3089
|
-
|
|
3090
|
-
|
|
3091
|
-
var
|
|
3092
|
-
|
|
3093
|
-
|
|
3094
|
-
//
|
|
3095
|
-
|
|
3096
|
-
|
|
3097
|
-
|
|
3098
|
-
|
|
3099
|
-
|
|
3100
|
-
|
|
3101
|
-
|
|
3102
|
-
|
|
3103
|
-
|
|
3104
|
-
var
|
|
3105
|
-
|
|
3106
|
-
|
|
3107
|
-
|
|
3108
|
-
|
|
3109
|
-
|
|
3110
|
-
|
|
3111
|
-
|
|
3112
|
-
|
|
3113
|
-
|
|
3114
|
-
|
|
3115
|
-
|
|
3116
|
-
|
|
3117
|
-
|
|
3118
|
-
|
|
3119
|
-
|
|
3120
|
-
|
|
3121
|
-
|
|
3122
|
-
|
|
3123
|
-
|
|
3124
|
-
var
|
|
3125
|
-
|
|
3126
|
-
|
|
3127
|
-
|
|
3128
|
-
|
|
3129
|
-
|
|
3130
|
-
|
|
3131
|
-
|
|
3132
|
-
|
|
3133
|
-
|
|
3134
|
-
|
|
3135
|
-
|
|
3136
|
-
|
|
3137
|
-
|
|
3138
|
-
|
|
3139
|
-
var
|
|
3140
|
-
|
|
3141
|
-
|
|
3142
|
-
|
|
3143
|
-
|
|
3144
|
-
|
|
3145
|
-
|
|
3146
|
-
|
|
3147
|
-
|
|
3148
|
-
|
|
3149
|
-
|
|
3150
|
-
|
|
3151
|
-
|
|
3152
|
-
|
|
3153
|
-
|
|
3154
|
-
|
|
3155
|
-
var
|
|
3156
|
-
|
|
3157
|
-
|
|
3158
|
-
|
|
3159
|
-
|
|
3160
|
-
|
|
3161
|
-
|
|
3162
|
-
|
|
3163
|
-
|
|
3164
|
-
|
|
3165
|
-
|
|
3166
|
-
|
|
3167
|
-
|
|
3168
|
-
|
|
3169
|
-
|
|
3170
|
-
|
|
3171
|
-
//
|
|
3172
|
-
//
|
|
3173
|
-
|
|
3174
|
-
|
|
3175
|
-
|
|
3453
|
+
var mathTrunc;
|
|
3454
|
+
var hasRequiredMathTrunc;
|
|
3455
|
+
|
|
3456
|
+
function requireMathTrunc () {
|
|
3457
|
+
if (hasRequiredMathTrunc) return mathTrunc;
|
|
3458
|
+
hasRequiredMathTrunc = 1;
|
|
3459
|
+
var ceil = Math.ceil;
|
|
3460
|
+
var floor = Math.floor;
|
|
3461
|
+
|
|
3462
|
+
// `Math.trunc` method
|
|
3463
|
+
// https://tc39.es/ecma262/#sec-math.trunc
|
|
3464
|
+
// eslint-disable-next-line es/no-math-trunc -- safe
|
|
3465
|
+
mathTrunc = Math.trunc || function trunc(x) {
|
|
3466
|
+
var n = +x;
|
|
3467
|
+
return (n > 0 ? floor : ceil)(n);
|
|
3468
|
+
};
|
|
3469
|
+
return mathTrunc;
|
|
3470
|
+
}
|
|
3471
|
+
|
|
3472
|
+
var toIntegerOrInfinity;
|
|
3473
|
+
var hasRequiredToIntegerOrInfinity;
|
|
3474
|
+
|
|
3475
|
+
function requireToIntegerOrInfinity () {
|
|
3476
|
+
if (hasRequiredToIntegerOrInfinity) return toIntegerOrInfinity;
|
|
3477
|
+
hasRequiredToIntegerOrInfinity = 1;
|
|
3478
|
+
var trunc = requireMathTrunc();
|
|
3479
|
+
|
|
3480
|
+
// `ToIntegerOrInfinity` abstract operation
|
|
3481
|
+
// https://tc39.es/ecma262/#sec-tointegerorinfinity
|
|
3482
|
+
toIntegerOrInfinity = function (argument) {
|
|
3483
|
+
var number = +argument;
|
|
3484
|
+
// eslint-disable-next-line no-self-compare -- NaN check
|
|
3485
|
+
return number !== number || number === 0 ? 0 : trunc(number);
|
|
3486
|
+
};
|
|
3487
|
+
return toIntegerOrInfinity;
|
|
3488
|
+
}
|
|
3489
|
+
|
|
3490
|
+
var toAbsoluteIndex;
|
|
3491
|
+
var hasRequiredToAbsoluteIndex;
|
|
3492
|
+
|
|
3493
|
+
function requireToAbsoluteIndex () {
|
|
3494
|
+
if (hasRequiredToAbsoluteIndex) return toAbsoluteIndex;
|
|
3495
|
+
hasRequiredToAbsoluteIndex = 1;
|
|
3496
|
+
var toIntegerOrInfinity = requireToIntegerOrInfinity();
|
|
3497
|
+
|
|
3498
|
+
var max = Math.max;
|
|
3499
|
+
var min = Math.min;
|
|
3500
|
+
|
|
3501
|
+
// Helper for a popular repeating case of the spec:
|
|
3502
|
+
// Let integer be ? ToInteger(index).
|
|
3503
|
+
// If integer < 0, let result be max((length + integer), 0); else let result be min(integer, length).
|
|
3504
|
+
toAbsoluteIndex = function (index, length) {
|
|
3505
|
+
var integer = toIntegerOrInfinity(index);
|
|
3506
|
+
return integer < 0 ? max(integer + length, 0) : min(integer, length);
|
|
3507
|
+
};
|
|
3508
|
+
return toAbsoluteIndex;
|
|
3509
|
+
}
|
|
3510
|
+
|
|
3511
|
+
var toLength;
|
|
3512
|
+
var hasRequiredToLength;
|
|
3513
|
+
|
|
3514
|
+
function requireToLength () {
|
|
3515
|
+
if (hasRequiredToLength) return toLength;
|
|
3516
|
+
hasRequiredToLength = 1;
|
|
3517
|
+
var toIntegerOrInfinity = requireToIntegerOrInfinity();
|
|
3518
|
+
|
|
3519
|
+
var min = Math.min;
|
|
3520
|
+
|
|
3521
|
+
// `ToLength` abstract operation
|
|
3522
|
+
// https://tc39.es/ecma262/#sec-tolength
|
|
3523
|
+
toLength = function (argument) {
|
|
3524
|
+
var len = toIntegerOrInfinity(argument);
|
|
3525
|
+
return len > 0 ? min(len, 0x1FFFFFFFFFFFFF) : 0; // 2 ** 53 - 1 == 9007199254740991
|
|
3526
|
+
};
|
|
3527
|
+
return toLength;
|
|
3528
|
+
}
|
|
3529
|
+
|
|
3530
|
+
var lengthOfArrayLike;
|
|
3531
|
+
var hasRequiredLengthOfArrayLike;
|
|
3532
|
+
|
|
3533
|
+
function requireLengthOfArrayLike () {
|
|
3534
|
+
if (hasRequiredLengthOfArrayLike) return lengthOfArrayLike;
|
|
3535
|
+
hasRequiredLengthOfArrayLike = 1;
|
|
3536
|
+
var toLength = requireToLength();
|
|
3537
|
+
|
|
3538
|
+
// `LengthOfArrayLike` abstract operation
|
|
3539
|
+
// https://tc39.es/ecma262/#sec-lengthofarraylike
|
|
3540
|
+
lengthOfArrayLike = function (obj) {
|
|
3541
|
+
return toLength(obj.length);
|
|
3542
|
+
};
|
|
3543
|
+
return lengthOfArrayLike;
|
|
3544
|
+
}
|
|
3545
|
+
|
|
3546
|
+
var arrayIncludes;
|
|
3547
|
+
var hasRequiredArrayIncludes;
|
|
3548
|
+
|
|
3549
|
+
function requireArrayIncludes () {
|
|
3550
|
+
if (hasRequiredArrayIncludes) return arrayIncludes;
|
|
3551
|
+
hasRequiredArrayIncludes = 1;
|
|
3552
|
+
var toIndexedObject = requireToIndexedObject();
|
|
3553
|
+
var toAbsoluteIndex = requireToAbsoluteIndex();
|
|
3554
|
+
var lengthOfArrayLike = requireLengthOfArrayLike();
|
|
3555
|
+
|
|
3556
|
+
// `Array.prototype.{ indexOf, includes }` methods implementation
|
|
3557
|
+
var createMethod = function (IS_INCLUDES) {
|
|
3558
|
+
return function ($this, el, fromIndex) {
|
|
3559
|
+
var O = toIndexedObject($this);
|
|
3560
|
+
var length = lengthOfArrayLike(O);
|
|
3561
|
+
if (length === 0) return !IS_INCLUDES && -1;
|
|
3562
|
+
var index = toAbsoluteIndex(fromIndex, length);
|
|
3563
|
+
var value;
|
|
3564
|
+
// Array#includes uses SameValueZero equality algorithm
|
|
3565
|
+
// eslint-disable-next-line no-self-compare -- NaN check
|
|
3566
|
+
if (IS_INCLUDES && el !== el) while (length > index) {
|
|
3567
|
+
value = O[index++];
|
|
3568
|
+
// eslint-disable-next-line no-self-compare -- NaN check
|
|
3569
|
+
if (value !== value) return true;
|
|
3570
|
+
// Array#indexOf ignores holes, Array#includes - not
|
|
3571
|
+
} else for (;length > index; index++) {
|
|
3572
|
+
if ((IS_INCLUDES || index in O) && O[index] === el) return IS_INCLUDES || index || 0;
|
|
3573
|
+
} return !IS_INCLUDES && -1;
|
|
3574
|
+
};
|
|
3575
|
+
};
|
|
3576
|
+
|
|
3577
|
+
arrayIncludes = {
|
|
3578
|
+
// `Array.prototype.includes` method
|
|
3579
|
+
// https://tc39.es/ecma262/#sec-array.prototype.includes
|
|
3580
|
+
includes: createMethod(true),
|
|
3581
|
+
// `Array.prototype.indexOf` method
|
|
3582
|
+
// https://tc39.es/ecma262/#sec-array.prototype.indexof
|
|
3583
|
+
indexOf: createMethod(false)
|
|
3584
|
+
};
|
|
3585
|
+
return arrayIncludes;
|
|
3586
|
+
}
|
|
3587
|
+
|
|
3588
|
+
var objectKeysInternal;
|
|
3589
|
+
var hasRequiredObjectKeysInternal;
|
|
3590
|
+
|
|
3591
|
+
function requireObjectKeysInternal () {
|
|
3592
|
+
if (hasRequiredObjectKeysInternal) return objectKeysInternal;
|
|
3593
|
+
hasRequiredObjectKeysInternal = 1;
|
|
3594
|
+
var uncurryThis = requireFunctionUncurryThis();
|
|
3595
|
+
var hasOwn = requireHasOwnProperty();
|
|
3596
|
+
var toIndexedObject = requireToIndexedObject();
|
|
3597
|
+
var indexOf = requireArrayIncludes().indexOf;
|
|
3598
|
+
var hiddenKeys = requireHiddenKeys();
|
|
3599
|
+
|
|
3600
|
+
var push = uncurryThis([].push);
|
|
3601
|
+
|
|
3602
|
+
objectKeysInternal = function (object, names) {
|
|
3603
|
+
var O = toIndexedObject(object);
|
|
3604
|
+
var i = 0;
|
|
3605
|
+
var result = [];
|
|
3606
|
+
var key;
|
|
3607
|
+
for (key in O) !hasOwn(hiddenKeys, key) && hasOwn(O, key) && push(result, key);
|
|
3608
|
+
// Don't enum bug & hidden keys
|
|
3609
|
+
while (names.length > i) if (hasOwn(O, key = names[i++])) {
|
|
3610
|
+
~indexOf(result, key) || push(result, key);
|
|
3611
|
+
}
|
|
3612
|
+
return result;
|
|
3613
|
+
};
|
|
3614
|
+
return objectKeysInternal;
|
|
3615
|
+
}
|
|
3616
|
+
|
|
3617
|
+
var enumBugKeys;
|
|
3618
|
+
var hasRequiredEnumBugKeys;
|
|
3619
|
+
|
|
3620
|
+
function requireEnumBugKeys () {
|
|
3621
|
+
if (hasRequiredEnumBugKeys) return enumBugKeys;
|
|
3622
|
+
hasRequiredEnumBugKeys = 1;
|
|
3623
|
+
// IE8- don't enum bug keys
|
|
3624
|
+
enumBugKeys = [
|
|
3625
|
+
'constructor',
|
|
3626
|
+
'hasOwnProperty',
|
|
3627
|
+
'isPrototypeOf',
|
|
3628
|
+
'propertyIsEnumerable',
|
|
3629
|
+
'toLocaleString',
|
|
3630
|
+
'toString',
|
|
3631
|
+
'valueOf'
|
|
3632
|
+
];
|
|
3633
|
+
return enumBugKeys;
|
|
3634
|
+
}
|
|
3635
|
+
|
|
3636
|
+
var hasRequiredObjectGetOwnPropertyNames;
|
|
3637
|
+
|
|
3638
|
+
function requireObjectGetOwnPropertyNames () {
|
|
3639
|
+
if (hasRequiredObjectGetOwnPropertyNames) return objectGetOwnPropertyNames;
|
|
3640
|
+
hasRequiredObjectGetOwnPropertyNames = 1;
|
|
3641
|
+
var internalObjectKeys = requireObjectKeysInternal();
|
|
3642
|
+
var enumBugKeys = requireEnumBugKeys();
|
|
3643
|
+
|
|
3644
|
+
var hiddenKeys = enumBugKeys.concat('length', 'prototype');
|
|
3645
|
+
|
|
3646
|
+
// `Object.getOwnPropertyNames` method
|
|
3647
|
+
// https://tc39.es/ecma262/#sec-object.getownpropertynames
|
|
3648
|
+
// eslint-disable-next-line es/no-object-getownpropertynames -- safe
|
|
3649
|
+
objectGetOwnPropertyNames.f = Object.getOwnPropertyNames || function getOwnPropertyNames(O) {
|
|
3650
|
+
return internalObjectKeys(O, hiddenKeys);
|
|
3651
|
+
};
|
|
3652
|
+
return objectGetOwnPropertyNames;
|
|
3653
|
+
}
|
|
3176
3654
|
|
|
3177
3655
|
var objectGetOwnPropertySymbols = {};
|
|
3178
3656
|
|
|
3179
|
-
|
|
3180
|
-
|
|
3181
|
-
|
|
3182
|
-
|
|
3183
|
-
|
|
3184
|
-
|
|
3185
|
-
|
|
3186
|
-
|
|
3187
|
-
|
|
3188
|
-
|
|
3189
|
-
|
|
3190
|
-
|
|
3191
|
-
|
|
3192
|
-
|
|
3193
|
-
|
|
3194
|
-
|
|
3195
|
-
|
|
3196
|
-
|
|
3197
|
-
var
|
|
3198
|
-
var
|
|
3199
|
-
var
|
|
3200
|
-
|
|
3201
|
-
|
|
3202
|
-
|
|
3203
|
-
|
|
3204
|
-
|
|
3205
|
-
|
|
3206
|
-
|
|
3207
|
-
|
|
3208
|
-
|
|
3209
|
-
|
|
3210
|
-
|
|
3211
|
-
|
|
3212
|
-
|
|
3213
|
-
|
|
3214
|
-
|
|
3215
|
-
|
|
3216
|
-
|
|
3217
|
-
|
|
3218
|
-
|
|
3219
|
-
var
|
|
3220
|
-
|
|
3221
|
-
|
|
3222
|
-
|
|
3223
|
-
|
|
3224
|
-
|
|
3225
|
-
|
|
3226
|
-
|
|
3227
|
-
var
|
|
3228
|
-
|
|
3229
|
-
|
|
3230
|
-
|
|
3231
|
-
|
|
3232
|
-
|
|
3233
|
-
|
|
3234
|
-
|
|
3235
|
-
|
|
3236
|
-
|
|
3237
|
-
var
|
|
3238
|
-
var
|
|
3239
|
-
|
|
3240
|
-
|
|
3241
|
-
|
|
3242
|
-
|
|
3243
|
-
var
|
|
3244
|
-
|
|
3245
|
-
|
|
3246
|
-
|
|
3247
|
-
|
|
3248
|
-
|
|
3249
|
-
|
|
3250
|
-
|
|
3251
|
-
|
|
3252
|
-
|
|
3253
|
-
|
|
3254
|
-
|
|
3255
|
-
|
|
3256
|
-
|
|
3257
|
-
|
|
3258
|
-
|
|
3259
|
-
|
|
3260
|
-
var
|
|
3261
|
-
|
|
3262
|
-
|
|
3263
|
-
|
|
3264
|
-
|
|
3265
|
-
|
|
3266
|
-
|
|
3267
|
-
|
|
3268
|
-
|
|
3269
|
-
|
|
3270
|
-
|
|
3271
|
-
|
|
3272
|
-
|
|
3273
|
-
|
|
3274
|
-
|
|
3275
|
-
|
|
3276
|
-
|
|
3277
|
-
|
|
3278
|
-
|
|
3279
|
-
|
|
3280
|
-
|
|
3281
|
-
|
|
3282
|
-
|
|
3283
|
-
|
|
3284
|
-
|
|
3285
|
-
|
|
3286
|
-
|
|
3287
|
-
|
|
3288
|
-
|
|
3289
|
-
|
|
3290
|
-
|
|
3291
|
-
|
|
3292
|
-
|
|
3293
|
-
|
|
3294
|
-
|
|
3295
|
-
|
|
3296
|
-
|
|
3297
|
-
|
|
3298
|
-
|
|
3299
|
-
|
|
3300
|
-
var
|
|
3301
|
-
|
|
3302
|
-
|
|
3303
|
-
|
|
3304
|
-
|
|
3305
|
-
|
|
3306
|
-
|
|
3307
|
-
|
|
3308
|
-
|
|
3309
|
-
|
|
3310
|
-
|
|
3311
|
-
|
|
3312
|
-
|
|
3313
|
-
|
|
3314
|
-
|
|
3315
|
-
|
|
3316
|
-
|
|
3317
|
-
|
|
3318
|
-
|
|
3319
|
-
|
|
3320
|
-
|
|
3321
|
-
|
|
3322
|
-
|
|
3323
|
-
|
|
3324
|
-
|
|
3325
|
-
|
|
3326
|
-
|
|
3327
|
-
|
|
3328
|
-
|
|
3329
|
-
/* global ActiveXObject -- old IE, WSH */
|
|
3330
|
-
var anObject = anObject$4;
|
|
3331
|
-
var definePropertiesModule = objectDefineProperties;
|
|
3332
|
-
var enumBugKeys = enumBugKeys$3;
|
|
3333
|
-
var hiddenKeys = hiddenKeys$4;
|
|
3334
|
-
var html = html$1;
|
|
3335
|
-
var documentCreateElement = documentCreateElement$1;
|
|
3336
|
-
var sharedKey = sharedKey$2;
|
|
3337
|
-
|
|
3338
|
-
var GT = '>';
|
|
3339
|
-
var LT = '<';
|
|
3340
|
-
var PROTOTYPE = 'prototype';
|
|
3341
|
-
var SCRIPT = 'script';
|
|
3342
|
-
var IE_PROTO = sharedKey('IE_PROTO');
|
|
3343
|
-
|
|
3344
|
-
var EmptyConstructor = function () { /* empty */ };
|
|
3345
|
-
|
|
3346
|
-
var scriptTag = function (content) {
|
|
3347
|
-
return LT + SCRIPT + GT + content + LT + '/' + SCRIPT + GT;
|
|
3348
|
-
};
|
|
3349
|
-
|
|
3350
|
-
// Create object with fake `null` prototype: use ActiveX Object with cleared prototype
|
|
3351
|
-
var NullProtoObjectViaActiveX = function (activeXDocument) {
|
|
3352
|
-
activeXDocument.write(scriptTag(''));
|
|
3353
|
-
activeXDocument.close();
|
|
3354
|
-
var temp = activeXDocument.parentWindow.Object;
|
|
3355
|
-
// eslint-disable-next-line no-useless-assignment -- avoid memory leak
|
|
3356
|
-
activeXDocument = null;
|
|
3357
|
-
return temp;
|
|
3358
|
-
};
|
|
3359
|
-
|
|
3360
|
-
// Create object with fake `null` prototype: use iframe Object with cleared prototype
|
|
3361
|
-
var NullProtoObjectViaIFrame = function () {
|
|
3362
|
-
// Thrash, waste and sodomy: IE GC bug
|
|
3363
|
-
var iframe = documentCreateElement('iframe');
|
|
3364
|
-
var JS = 'java' + SCRIPT + ':';
|
|
3365
|
-
var iframeDocument;
|
|
3366
|
-
iframe.style.display = 'none';
|
|
3367
|
-
html.appendChild(iframe);
|
|
3368
|
-
// https://github.com/zloirock/core-js/issues/475
|
|
3369
|
-
iframe.src = String(JS);
|
|
3370
|
-
iframeDocument = iframe.contentWindow.document;
|
|
3371
|
-
iframeDocument.open();
|
|
3372
|
-
iframeDocument.write(scriptTag('document.F=Object'));
|
|
3373
|
-
iframeDocument.close();
|
|
3374
|
-
return iframeDocument.F;
|
|
3375
|
-
};
|
|
3376
|
-
|
|
3377
|
-
// Check for document.domain and active x support
|
|
3378
|
-
// No need to use active x approach when document.domain is not set
|
|
3379
|
-
// see https://github.com/es-shims/es5-shim/issues/150
|
|
3380
|
-
// variation of https://github.com/kitcambridge/es5-shim/commit/4f738ac066346
|
|
3381
|
-
// avoid IE GC bug
|
|
3382
|
-
var activeXDocument;
|
|
3383
|
-
var NullProtoObject = function () {
|
|
3384
|
-
try {
|
|
3385
|
-
activeXDocument = new ActiveXObject('htmlfile');
|
|
3386
|
-
} catch (error) { /* ignore */ }
|
|
3387
|
-
NullProtoObject = typeof document != 'undefined'
|
|
3388
|
-
? document.domain && activeXDocument
|
|
3389
|
-
? NullProtoObjectViaActiveX(activeXDocument) // old IE
|
|
3390
|
-
: NullProtoObjectViaIFrame()
|
|
3391
|
-
: NullProtoObjectViaActiveX(activeXDocument); // WSH
|
|
3392
|
-
var length = enumBugKeys.length;
|
|
3393
|
-
while (length--) delete NullProtoObject[PROTOTYPE][enumBugKeys[length]];
|
|
3394
|
-
return NullProtoObject();
|
|
3395
|
-
};
|
|
3396
|
-
|
|
3397
|
-
hiddenKeys[IE_PROTO] = true;
|
|
3398
|
-
|
|
3399
|
-
// `Object.create` method
|
|
3400
|
-
// https://tc39.es/ecma262/#sec-object.create
|
|
3401
|
-
// eslint-disable-next-line es/no-object-create -- safe
|
|
3402
|
-
var objectCreate = Object.create || function create(O, Properties) {
|
|
3403
|
-
var result;
|
|
3404
|
-
if (O !== null) {
|
|
3405
|
-
EmptyConstructor[PROTOTYPE] = anObject(O);
|
|
3406
|
-
result = new EmptyConstructor();
|
|
3407
|
-
EmptyConstructor[PROTOTYPE] = null;
|
|
3408
|
-
// add "__proto__" for Object.getPrototypeOf polyfill
|
|
3409
|
-
result[IE_PROTO] = O;
|
|
3410
|
-
} else result = NullProtoObject();
|
|
3411
|
-
return Properties === undefined ? result : definePropertiesModule.f(result, Properties);
|
|
3412
|
-
};
|
|
3413
|
-
|
|
3414
|
-
var wellKnownSymbol = wellKnownSymbol$2;
|
|
3415
|
-
var create = objectCreate;
|
|
3416
|
-
var defineProperty = objectDefineProperty.f;
|
|
3417
|
-
|
|
3418
|
-
var UNSCOPABLES = wellKnownSymbol('unscopables');
|
|
3419
|
-
var ArrayPrototype = Array.prototype;
|
|
3420
|
-
|
|
3421
|
-
// Array.prototype[@@unscopables]
|
|
3422
|
-
// https://tc39.es/ecma262/#sec-array.prototype-@@unscopables
|
|
3423
|
-
if (ArrayPrototype[UNSCOPABLES] === undefined) {
|
|
3424
|
-
defineProperty(ArrayPrototype, UNSCOPABLES, {
|
|
3425
|
-
configurable: true,
|
|
3426
|
-
value: create(null)
|
|
3427
|
-
});
|
|
3657
|
+
var hasRequiredObjectGetOwnPropertySymbols;
|
|
3658
|
+
|
|
3659
|
+
function requireObjectGetOwnPropertySymbols () {
|
|
3660
|
+
if (hasRequiredObjectGetOwnPropertySymbols) return objectGetOwnPropertySymbols;
|
|
3661
|
+
hasRequiredObjectGetOwnPropertySymbols = 1;
|
|
3662
|
+
// eslint-disable-next-line es/no-object-getownpropertysymbols -- safe
|
|
3663
|
+
objectGetOwnPropertySymbols.f = Object.getOwnPropertySymbols;
|
|
3664
|
+
return objectGetOwnPropertySymbols;
|
|
3665
|
+
}
|
|
3666
|
+
|
|
3667
|
+
var ownKeys;
|
|
3668
|
+
var hasRequiredOwnKeys;
|
|
3669
|
+
|
|
3670
|
+
function requireOwnKeys () {
|
|
3671
|
+
if (hasRequiredOwnKeys) return ownKeys;
|
|
3672
|
+
hasRequiredOwnKeys = 1;
|
|
3673
|
+
var getBuiltIn = requireGetBuiltIn();
|
|
3674
|
+
var uncurryThis = requireFunctionUncurryThis();
|
|
3675
|
+
var getOwnPropertyNamesModule = requireObjectGetOwnPropertyNames();
|
|
3676
|
+
var getOwnPropertySymbolsModule = requireObjectGetOwnPropertySymbols();
|
|
3677
|
+
var anObject = requireAnObject();
|
|
3678
|
+
|
|
3679
|
+
var concat = uncurryThis([].concat);
|
|
3680
|
+
|
|
3681
|
+
// all object keys, includes non-enumerable and symbols
|
|
3682
|
+
ownKeys = getBuiltIn('Reflect', 'ownKeys') || function ownKeys(it) {
|
|
3683
|
+
var keys = getOwnPropertyNamesModule.f(anObject(it));
|
|
3684
|
+
var getOwnPropertySymbols = getOwnPropertySymbolsModule.f;
|
|
3685
|
+
return getOwnPropertySymbols ? concat(keys, getOwnPropertySymbols(it)) : keys;
|
|
3686
|
+
};
|
|
3687
|
+
return ownKeys;
|
|
3688
|
+
}
|
|
3689
|
+
|
|
3690
|
+
var copyConstructorProperties;
|
|
3691
|
+
var hasRequiredCopyConstructorProperties;
|
|
3692
|
+
|
|
3693
|
+
function requireCopyConstructorProperties () {
|
|
3694
|
+
if (hasRequiredCopyConstructorProperties) return copyConstructorProperties;
|
|
3695
|
+
hasRequiredCopyConstructorProperties = 1;
|
|
3696
|
+
var hasOwn = requireHasOwnProperty();
|
|
3697
|
+
var ownKeys = requireOwnKeys();
|
|
3698
|
+
var getOwnPropertyDescriptorModule = requireObjectGetOwnPropertyDescriptor();
|
|
3699
|
+
var definePropertyModule = requireObjectDefineProperty();
|
|
3700
|
+
|
|
3701
|
+
copyConstructorProperties = function (target, source, exceptions) {
|
|
3702
|
+
var keys = ownKeys(source);
|
|
3703
|
+
var defineProperty = definePropertyModule.f;
|
|
3704
|
+
var getOwnPropertyDescriptor = getOwnPropertyDescriptorModule.f;
|
|
3705
|
+
for (var i = 0; i < keys.length; i++) {
|
|
3706
|
+
var key = keys[i];
|
|
3707
|
+
if (!hasOwn(target, key) && !(exceptions && hasOwn(exceptions, key))) {
|
|
3708
|
+
defineProperty(target, key, getOwnPropertyDescriptor(source, key));
|
|
3709
|
+
}
|
|
3710
|
+
}
|
|
3711
|
+
};
|
|
3712
|
+
return copyConstructorProperties;
|
|
3713
|
+
}
|
|
3714
|
+
|
|
3715
|
+
var isForced_1;
|
|
3716
|
+
var hasRequiredIsForced;
|
|
3717
|
+
|
|
3718
|
+
function requireIsForced () {
|
|
3719
|
+
if (hasRequiredIsForced) return isForced_1;
|
|
3720
|
+
hasRequiredIsForced = 1;
|
|
3721
|
+
var fails = requireFails();
|
|
3722
|
+
var isCallable = requireIsCallable();
|
|
3723
|
+
|
|
3724
|
+
var replacement = /#|\.prototype\./;
|
|
3725
|
+
|
|
3726
|
+
var isForced = function (feature, detection) {
|
|
3727
|
+
var value = data[normalize(feature)];
|
|
3728
|
+
return value === POLYFILL ? true
|
|
3729
|
+
: value === NATIVE ? false
|
|
3730
|
+
: isCallable(detection) ? fails(detection)
|
|
3731
|
+
: !!detection;
|
|
3732
|
+
};
|
|
3733
|
+
|
|
3734
|
+
var normalize = isForced.normalize = function (string) {
|
|
3735
|
+
return String(string).replace(replacement, '.').toLowerCase();
|
|
3736
|
+
};
|
|
3737
|
+
|
|
3738
|
+
var data = isForced.data = {};
|
|
3739
|
+
var NATIVE = isForced.NATIVE = 'N';
|
|
3740
|
+
var POLYFILL = isForced.POLYFILL = 'P';
|
|
3741
|
+
|
|
3742
|
+
isForced_1 = isForced;
|
|
3743
|
+
return isForced_1;
|
|
3744
|
+
}
|
|
3745
|
+
|
|
3746
|
+
var _export;
|
|
3747
|
+
var hasRequired_export;
|
|
3748
|
+
|
|
3749
|
+
function require_export () {
|
|
3750
|
+
if (hasRequired_export) return _export;
|
|
3751
|
+
hasRequired_export = 1;
|
|
3752
|
+
var globalThis = requireGlobalThis();
|
|
3753
|
+
var getOwnPropertyDescriptor = requireObjectGetOwnPropertyDescriptor().f;
|
|
3754
|
+
var createNonEnumerableProperty = requireCreateNonEnumerableProperty();
|
|
3755
|
+
var defineBuiltIn = requireDefineBuiltIn();
|
|
3756
|
+
var defineGlobalProperty = requireDefineGlobalProperty();
|
|
3757
|
+
var copyConstructorProperties = requireCopyConstructorProperties();
|
|
3758
|
+
var isForced = requireIsForced();
|
|
3759
|
+
|
|
3760
|
+
/*
|
|
3761
|
+
options.target - name of the target object
|
|
3762
|
+
options.global - target is the global object
|
|
3763
|
+
options.stat - export as static methods of target
|
|
3764
|
+
options.proto - export as prototype methods of target
|
|
3765
|
+
options.real - real prototype method for the `pure` version
|
|
3766
|
+
options.forced - export even if the native feature is available
|
|
3767
|
+
options.bind - bind methods to the target, required for the `pure` version
|
|
3768
|
+
options.wrap - wrap constructors to preventing global pollution, required for the `pure` version
|
|
3769
|
+
options.unsafe - use the simple assignment of property instead of delete + defineProperty
|
|
3770
|
+
options.sham - add a flag to not completely full polyfills
|
|
3771
|
+
options.enumerable - export as enumerable property
|
|
3772
|
+
options.dontCallGetSet - prevent calling a getter on target
|
|
3773
|
+
options.name - the .name of the function if it does not match the key
|
|
3774
|
+
*/
|
|
3775
|
+
_export = function (options, source) {
|
|
3776
|
+
var TARGET = options.target;
|
|
3777
|
+
var GLOBAL = options.global;
|
|
3778
|
+
var STATIC = options.stat;
|
|
3779
|
+
var FORCED, target, key, targetProperty, sourceProperty, descriptor;
|
|
3780
|
+
if (GLOBAL) {
|
|
3781
|
+
target = globalThis;
|
|
3782
|
+
} else if (STATIC) {
|
|
3783
|
+
target = globalThis[TARGET] || defineGlobalProperty(TARGET, {});
|
|
3784
|
+
} else {
|
|
3785
|
+
target = globalThis[TARGET] && globalThis[TARGET].prototype;
|
|
3786
|
+
}
|
|
3787
|
+
if (target) for (key in source) {
|
|
3788
|
+
sourceProperty = source[key];
|
|
3789
|
+
if (options.dontCallGetSet) {
|
|
3790
|
+
descriptor = getOwnPropertyDescriptor(target, key);
|
|
3791
|
+
targetProperty = descriptor && descriptor.value;
|
|
3792
|
+
} else targetProperty = target[key];
|
|
3793
|
+
FORCED = isForced(GLOBAL ? key : TARGET + (STATIC ? '.' : '#') + key, options.forced);
|
|
3794
|
+
// contained in target
|
|
3795
|
+
if (!FORCED && targetProperty !== undefined) {
|
|
3796
|
+
if (typeof sourceProperty == typeof targetProperty) continue;
|
|
3797
|
+
copyConstructorProperties(sourceProperty, targetProperty);
|
|
3798
|
+
}
|
|
3799
|
+
// add a flag to not completely full polyfills
|
|
3800
|
+
if (options.sham || (targetProperty && targetProperty.sham)) {
|
|
3801
|
+
createNonEnumerableProperty(sourceProperty, 'sham', true);
|
|
3802
|
+
}
|
|
3803
|
+
defineBuiltIn(target, key, sourceProperty, options);
|
|
3804
|
+
}
|
|
3805
|
+
};
|
|
3806
|
+
return _export;
|
|
3428
3807
|
}
|
|
3429
3808
|
|
|
3430
|
-
|
|
3431
|
-
var addToUnscopables$1 = function (key) {
|
|
3432
|
-
ArrayPrototype[UNSCOPABLES][key] = true;
|
|
3433
|
-
};
|
|
3434
|
-
|
|
3435
|
-
var $$1 = _export;
|
|
3436
|
-
var $includes = arrayIncludes.includes;
|
|
3437
|
-
var fails = fails$9;
|
|
3438
|
-
var addToUnscopables = addToUnscopables$1;
|
|
3439
|
-
|
|
3440
|
-
// FF99+ bug
|
|
3441
|
-
var BROKEN_ON_SPARSE = fails(function () {
|
|
3442
|
-
// eslint-disable-next-line es/no-array-prototype-includes -- detection
|
|
3443
|
-
return !Array(1).includes();
|
|
3444
|
-
});
|
|
3445
|
-
|
|
3446
|
-
// `Array.prototype.includes` method
|
|
3447
|
-
// https://tc39.es/ecma262/#sec-array.prototype.includes
|
|
3448
|
-
$$1({ target: 'Array', proto: true, forced: BROKEN_ON_SPARSE }, {
|
|
3449
|
-
includes: function includes(el /* , fromIndex = 0 */) {
|
|
3450
|
-
return $includes(this, el, arguments.length > 1 ? arguments[1] : undefined);
|
|
3451
|
-
}
|
|
3452
|
-
});
|
|
3809
|
+
var objectDefineProperties = {};
|
|
3453
3810
|
|
|
3454
|
-
|
|
3455
|
-
|
|
3811
|
+
var objectKeys;
|
|
3812
|
+
var hasRequiredObjectKeys;
|
|
3813
|
+
|
|
3814
|
+
function requireObjectKeys () {
|
|
3815
|
+
if (hasRequiredObjectKeys) return objectKeys;
|
|
3816
|
+
hasRequiredObjectKeys = 1;
|
|
3817
|
+
var internalObjectKeys = requireObjectKeysInternal();
|
|
3818
|
+
var enumBugKeys = requireEnumBugKeys();
|
|
3819
|
+
|
|
3820
|
+
// `Object.keys` method
|
|
3821
|
+
// https://tc39.es/ecma262/#sec-object.keys
|
|
3822
|
+
// eslint-disable-next-line es/no-object-keys -- safe
|
|
3823
|
+
objectKeys = Object.keys || function keys(O) {
|
|
3824
|
+
return internalObjectKeys(O, enumBugKeys);
|
|
3825
|
+
};
|
|
3826
|
+
return objectKeys;
|
|
3827
|
+
}
|
|
3828
|
+
|
|
3829
|
+
var hasRequiredObjectDefineProperties;
|
|
3830
|
+
|
|
3831
|
+
function requireObjectDefineProperties () {
|
|
3832
|
+
if (hasRequiredObjectDefineProperties) return objectDefineProperties;
|
|
3833
|
+
hasRequiredObjectDefineProperties = 1;
|
|
3834
|
+
var DESCRIPTORS = requireDescriptors();
|
|
3835
|
+
var V8_PROTOTYPE_DEFINE_BUG = requireV8PrototypeDefineBug();
|
|
3836
|
+
var definePropertyModule = requireObjectDefineProperty();
|
|
3837
|
+
var anObject = requireAnObject();
|
|
3838
|
+
var toIndexedObject = requireToIndexedObject();
|
|
3839
|
+
var objectKeys = requireObjectKeys();
|
|
3840
|
+
|
|
3841
|
+
// `Object.defineProperties` method
|
|
3842
|
+
// https://tc39.es/ecma262/#sec-object.defineproperties
|
|
3843
|
+
// eslint-disable-next-line es/no-object-defineproperties -- safe
|
|
3844
|
+
objectDefineProperties.f = DESCRIPTORS && !V8_PROTOTYPE_DEFINE_BUG ? Object.defineProperties : function defineProperties(O, Properties) {
|
|
3845
|
+
anObject(O);
|
|
3846
|
+
var props = toIndexedObject(Properties);
|
|
3847
|
+
var keys = objectKeys(Properties);
|
|
3848
|
+
var length = keys.length;
|
|
3849
|
+
var index = 0;
|
|
3850
|
+
var key;
|
|
3851
|
+
while (length > index) definePropertyModule.f(O, key = keys[index++], props[key]);
|
|
3852
|
+
return O;
|
|
3853
|
+
};
|
|
3854
|
+
return objectDefineProperties;
|
|
3855
|
+
}
|
|
3856
|
+
|
|
3857
|
+
var html;
|
|
3858
|
+
var hasRequiredHtml;
|
|
3859
|
+
|
|
3860
|
+
function requireHtml () {
|
|
3861
|
+
if (hasRequiredHtml) return html;
|
|
3862
|
+
hasRequiredHtml = 1;
|
|
3863
|
+
var getBuiltIn = requireGetBuiltIn();
|
|
3864
|
+
|
|
3865
|
+
html = getBuiltIn('document', 'documentElement');
|
|
3866
|
+
return html;
|
|
3867
|
+
}
|
|
3868
|
+
|
|
3869
|
+
var objectCreate;
|
|
3870
|
+
var hasRequiredObjectCreate;
|
|
3871
|
+
|
|
3872
|
+
function requireObjectCreate () {
|
|
3873
|
+
if (hasRequiredObjectCreate) return objectCreate;
|
|
3874
|
+
hasRequiredObjectCreate = 1;
|
|
3875
|
+
/* global ActiveXObject -- old IE, WSH */
|
|
3876
|
+
var anObject = requireAnObject();
|
|
3877
|
+
var definePropertiesModule = requireObjectDefineProperties();
|
|
3878
|
+
var enumBugKeys = requireEnumBugKeys();
|
|
3879
|
+
var hiddenKeys = requireHiddenKeys();
|
|
3880
|
+
var html = requireHtml();
|
|
3881
|
+
var documentCreateElement = requireDocumentCreateElement();
|
|
3882
|
+
var sharedKey = requireSharedKey();
|
|
3883
|
+
|
|
3884
|
+
var GT = '>';
|
|
3885
|
+
var LT = '<';
|
|
3886
|
+
var PROTOTYPE = 'prototype';
|
|
3887
|
+
var SCRIPT = 'script';
|
|
3888
|
+
var IE_PROTO = sharedKey('IE_PROTO');
|
|
3889
|
+
|
|
3890
|
+
var EmptyConstructor = function () { /* empty */ };
|
|
3891
|
+
|
|
3892
|
+
var scriptTag = function (content) {
|
|
3893
|
+
return LT + SCRIPT + GT + content + LT + '/' + SCRIPT + GT;
|
|
3894
|
+
};
|
|
3895
|
+
|
|
3896
|
+
// Create object with fake `null` prototype: use ActiveX Object with cleared prototype
|
|
3897
|
+
var NullProtoObjectViaActiveX = function (activeXDocument) {
|
|
3898
|
+
activeXDocument.write(scriptTag(''));
|
|
3899
|
+
activeXDocument.close();
|
|
3900
|
+
var temp = activeXDocument.parentWindow.Object;
|
|
3901
|
+
// eslint-disable-next-line no-useless-assignment -- avoid memory leak
|
|
3902
|
+
activeXDocument = null;
|
|
3903
|
+
return temp;
|
|
3904
|
+
};
|
|
3905
|
+
|
|
3906
|
+
// Create object with fake `null` prototype: use iframe Object with cleared prototype
|
|
3907
|
+
var NullProtoObjectViaIFrame = function () {
|
|
3908
|
+
// Thrash, waste and sodomy: IE GC bug
|
|
3909
|
+
var iframe = documentCreateElement('iframe');
|
|
3910
|
+
var JS = 'java' + SCRIPT + ':';
|
|
3911
|
+
var iframeDocument;
|
|
3912
|
+
iframe.style.display = 'none';
|
|
3913
|
+
html.appendChild(iframe);
|
|
3914
|
+
// https://github.com/zloirock/core-js/issues/475
|
|
3915
|
+
iframe.src = String(JS);
|
|
3916
|
+
iframeDocument = iframe.contentWindow.document;
|
|
3917
|
+
iframeDocument.open();
|
|
3918
|
+
iframeDocument.write(scriptTag('document.F=Object'));
|
|
3919
|
+
iframeDocument.close();
|
|
3920
|
+
return iframeDocument.F;
|
|
3921
|
+
};
|
|
3922
|
+
|
|
3923
|
+
// Check for document.domain and active x support
|
|
3924
|
+
// No need to use active x approach when document.domain is not set
|
|
3925
|
+
// see https://github.com/es-shims/es5-shim/issues/150
|
|
3926
|
+
// variation of https://github.com/kitcambridge/es5-shim/commit/4f738ac066346
|
|
3927
|
+
// avoid IE GC bug
|
|
3928
|
+
var activeXDocument;
|
|
3929
|
+
var NullProtoObject = function () {
|
|
3930
|
+
try {
|
|
3931
|
+
activeXDocument = new ActiveXObject('htmlfile');
|
|
3932
|
+
} catch (error) { /* ignore */ }
|
|
3933
|
+
NullProtoObject = typeof document != 'undefined'
|
|
3934
|
+
? document.domain && activeXDocument
|
|
3935
|
+
? NullProtoObjectViaActiveX(activeXDocument) // old IE
|
|
3936
|
+
: NullProtoObjectViaIFrame()
|
|
3937
|
+
: NullProtoObjectViaActiveX(activeXDocument); // WSH
|
|
3938
|
+
var length = enumBugKeys.length;
|
|
3939
|
+
while (length--) delete NullProtoObject[PROTOTYPE][enumBugKeys[length]];
|
|
3940
|
+
return NullProtoObject();
|
|
3941
|
+
};
|
|
3942
|
+
|
|
3943
|
+
hiddenKeys[IE_PROTO] = true;
|
|
3944
|
+
|
|
3945
|
+
// `Object.create` method
|
|
3946
|
+
// https://tc39.es/ecma262/#sec-object.create
|
|
3947
|
+
// eslint-disable-next-line es/no-object-create -- safe
|
|
3948
|
+
objectCreate = Object.create || function create(O, Properties) {
|
|
3949
|
+
var result;
|
|
3950
|
+
if (O !== null) {
|
|
3951
|
+
EmptyConstructor[PROTOTYPE] = anObject(O);
|
|
3952
|
+
result = new EmptyConstructor();
|
|
3953
|
+
EmptyConstructor[PROTOTYPE] = null;
|
|
3954
|
+
// add "__proto__" for Object.getPrototypeOf polyfill
|
|
3955
|
+
result[IE_PROTO] = O;
|
|
3956
|
+
} else result = NullProtoObject();
|
|
3957
|
+
return Properties === undefined ? result : definePropertiesModule.f(result, Properties);
|
|
3958
|
+
};
|
|
3959
|
+
return objectCreate;
|
|
3960
|
+
}
|
|
3961
|
+
|
|
3962
|
+
var addToUnscopables;
|
|
3963
|
+
var hasRequiredAddToUnscopables;
|
|
3964
|
+
|
|
3965
|
+
function requireAddToUnscopables () {
|
|
3966
|
+
if (hasRequiredAddToUnscopables) return addToUnscopables;
|
|
3967
|
+
hasRequiredAddToUnscopables = 1;
|
|
3968
|
+
var wellKnownSymbol = requireWellKnownSymbol();
|
|
3969
|
+
var create = requireObjectCreate();
|
|
3970
|
+
var defineProperty = requireObjectDefineProperty().f;
|
|
3971
|
+
|
|
3972
|
+
var UNSCOPABLES = wellKnownSymbol('unscopables');
|
|
3973
|
+
var ArrayPrototype = Array.prototype;
|
|
3974
|
+
|
|
3975
|
+
// Array.prototype[@@unscopables]
|
|
3976
|
+
// https://tc39.es/ecma262/#sec-array.prototype-@@unscopables
|
|
3977
|
+
if (ArrayPrototype[UNSCOPABLES] === undefined) {
|
|
3978
|
+
defineProperty(ArrayPrototype, UNSCOPABLES, {
|
|
3979
|
+
configurable: true,
|
|
3980
|
+
value: create(null)
|
|
3981
|
+
});
|
|
3982
|
+
}
|
|
3983
|
+
|
|
3984
|
+
// add a key to Array.prototype[@@unscopables]
|
|
3985
|
+
addToUnscopables = function (key) {
|
|
3986
|
+
ArrayPrototype[UNSCOPABLES][key] = true;
|
|
3987
|
+
};
|
|
3988
|
+
return addToUnscopables;
|
|
3989
|
+
}
|
|
3990
|
+
|
|
3991
|
+
var hasRequiredEs_array_includes;
|
|
3992
|
+
|
|
3993
|
+
function requireEs_array_includes () {
|
|
3994
|
+
if (hasRequiredEs_array_includes) return es_array_includes;
|
|
3995
|
+
hasRequiredEs_array_includes = 1;
|
|
3996
|
+
var $ = require_export();
|
|
3997
|
+
var $includes = requireArrayIncludes().includes;
|
|
3998
|
+
var fails = requireFails();
|
|
3999
|
+
var addToUnscopables = requireAddToUnscopables();
|
|
4000
|
+
|
|
4001
|
+
// FF99+ bug
|
|
4002
|
+
var BROKEN_ON_SPARSE = fails(function () {
|
|
4003
|
+
// eslint-disable-next-line es/no-array-prototype-includes -- detection
|
|
4004
|
+
return !Array(1).includes();
|
|
4005
|
+
});
|
|
4006
|
+
|
|
4007
|
+
// `Array.prototype.includes` method
|
|
4008
|
+
// https://tc39.es/ecma262/#sec-array.prototype.includes
|
|
4009
|
+
$({ target: 'Array', proto: true, forced: BROKEN_ON_SPARSE }, {
|
|
4010
|
+
includes: function includes(el /* , fromIndex = 0 */) {
|
|
4011
|
+
return $includes(this, el, arguments.length > 1 ? arguments[1] : undefined);
|
|
4012
|
+
}
|
|
4013
|
+
});
|
|
4014
|
+
|
|
4015
|
+
// https://tc39.es/ecma262/#sec-array.prototype-@@unscopables
|
|
4016
|
+
addToUnscopables('includes');
|
|
4017
|
+
return es_array_includes;
|
|
4018
|
+
}
|
|
4019
|
+
|
|
4020
|
+
requireEs_array_includes();
|
|
3456
4021
|
|
|
3457
4022
|
function clampProp(e, n, t, o, r) {
|
|
3458
4023
|
return clampEntity(n, getDefinedProp(e, n), t, o, r);
|
|
@@ -10880,11 +11445,11 @@ const Kislev = months.KISLEV;
|
|
|
10880
11445
|
const Shvat = months.SHVAT;
|
|
10881
11446
|
const Adar2 = months.ADAR_II;
|
|
10882
11447
|
const CHAG$1 = flags.CHAG;
|
|
10883
|
-
const LIGHT_CANDLES$
|
|
11448
|
+
const LIGHT_CANDLES$2 = flags.LIGHT_CANDLES;
|
|
10884
11449
|
const YOM_TOV_ENDS$1 = flags.YOM_TOV_ENDS;
|
|
10885
11450
|
const CHUL_ONLY$1 = flags.CHUL_ONLY;
|
|
10886
11451
|
const IL_ONLY$2 = flags.IL_ONLY;
|
|
10887
|
-
const LIGHT_CANDLES_TZEIS$
|
|
11452
|
+
const LIGHT_CANDLES_TZEIS$3 = flags.LIGHT_CANDLES_TZEIS;
|
|
10888
11453
|
const CHANUKAH_CANDLES$2 = flags.CHANUKAH_CANDLES;
|
|
10889
11454
|
const MAJOR_FAST$2 = flags.MAJOR_FAST;
|
|
10890
11455
|
const MINOR_HOLIDAY$2 = flags.MINOR_HOLIDAY;
|
|
@@ -11103,7 +11668,7 @@ const staticHolidays = [
|
|
|
11103
11668
|
flags: CHAG$1 | YOM_TOV_ENDS$1,
|
|
11104
11669
|
emoji: '🍏🍯',
|
|
11105
11670
|
},
|
|
11106
|
-
{ mm: Tishrei, dd: 9, desc: EREV_YOM_KIPPUR, flags: EREV$2 | LIGHT_CANDLES$
|
|
11671
|
+
{ mm: Tishrei, dd: 9, desc: EREV_YOM_KIPPUR, flags: EREV$2 | LIGHT_CANDLES$2 },
|
|
11107
11672
|
{
|
|
11108
11673
|
mm: Tishrei,
|
|
11109
11674
|
dd: 10,
|
|
@@ -11114,14 +11679,14 @@ const staticHolidays = [
|
|
|
11114
11679
|
mm: Tishrei,
|
|
11115
11680
|
dd: 14,
|
|
11116
11681
|
desc: EREV_SUKKOT,
|
|
11117
|
-
flags: CHUL_ONLY$1 | EREV$2 | LIGHT_CANDLES$
|
|
11682
|
+
flags: CHUL_ONLY$1 | EREV$2 | LIGHT_CANDLES$2,
|
|
11118
11683
|
emoji: emojiSukkot,
|
|
11119
11684
|
},
|
|
11120
11685
|
{
|
|
11121
11686
|
mm: Tishrei,
|
|
11122
11687
|
dd: 15,
|
|
11123
11688
|
desc: SUKKOT_I,
|
|
11124
|
-
flags: CHUL_ONLY$1 | CHAG$1 | LIGHT_CANDLES_TZEIS$
|
|
11689
|
+
flags: CHUL_ONLY$1 | CHAG$1 | LIGHT_CANDLES_TZEIS$3,
|
|
11125
11690
|
emoji: emojiSukkot,
|
|
11126
11691
|
},
|
|
11127
11692
|
{
|
|
@@ -11167,7 +11732,7 @@ const staticHolidays = [
|
|
|
11167
11732
|
mm: Tishrei,
|
|
11168
11733
|
dd: 22,
|
|
11169
11734
|
desc: SHMINI_ATZERET,
|
|
11170
|
-
flags: CHUL_ONLY$1 | CHAG$1 | LIGHT_CANDLES_TZEIS$
|
|
11735
|
+
flags: CHUL_ONLY$1 | CHAG$1 | LIGHT_CANDLES_TZEIS$3,
|
|
11171
11736
|
},
|
|
11172
11737
|
{
|
|
11173
11738
|
mm: Tishrei,
|
|
@@ -11179,7 +11744,7 @@ const staticHolidays = [
|
|
|
11179
11744
|
mm: Tishrei,
|
|
11180
11745
|
dd: 14,
|
|
11181
11746
|
desc: EREV_SUKKOT,
|
|
11182
|
-
flags: IL_ONLY$2 | EREV$2 | LIGHT_CANDLES$
|
|
11747
|
+
flags: IL_ONLY$2 | EREV$2 | LIGHT_CANDLES$2,
|
|
11183
11748
|
emoji: emojiSukkot,
|
|
11184
11749
|
},
|
|
11185
11750
|
{
|
|
@@ -11239,7 +11804,7 @@ const staticHolidays = [
|
|
|
11239
11804
|
mm: Tishrei,
|
|
11240
11805
|
dd: 21,
|
|
11241
11806
|
desc: SUKKOT_VII_HOSHANA_RABA,
|
|
11242
|
-
flags: LIGHT_CANDLES$
|
|
11807
|
+
flags: LIGHT_CANDLES$2 | CHOL_HAMOED$1,
|
|
11243
11808
|
chmDay: -1,
|
|
11244
11809
|
emoji: emojiSukkot,
|
|
11245
11810
|
},
|
|
@@ -11271,7 +11836,7 @@ const staticHolidays = [
|
|
|
11271
11836
|
mm: Nisan,
|
|
11272
11837
|
dd: 14,
|
|
11273
11838
|
desc: EREV_PESACH,
|
|
11274
|
-
flags: IL_ONLY$2 | EREV$2 | LIGHT_CANDLES$
|
|
11839
|
+
flags: IL_ONLY$2 | EREV$2 | LIGHT_CANDLES$2,
|
|
11275
11840
|
emoji: '🫓🍷',
|
|
11276
11841
|
},
|
|
11277
11842
|
{
|
|
@@ -11317,7 +11882,7 @@ const staticHolidays = [
|
|
|
11317
11882
|
mm: Nisan,
|
|
11318
11883
|
dd: 20,
|
|
11319
11884
|
desc: PESACH_VI_CHM,
|
|
11320
|
-
flags: IL_ONLY$2 | CHOL_HAMOED$1 | LIGHT_CANDLES$
|
|
11885
|
+
flags: IL_ONLY$2 | CHOL_HAMOED$1 | LIGHT_CANDLES$2,
|
|
11321
11886
|
chmDay: 5,
|
|
11322
11887
|
emoji: emojiPesach,
|
|
11323
11888
|
},
|
|
@@ -11333,14 +11898,14 @@ const staticHolidays = [
|
|
|
11333
11898
|
mm: Nisan,
|
|
11334
11899
|
dd: 14,
|
|
11335
11900
|
desc: EREV_PESACH,
|
|
11336
|
-
flags: CHUL_ONLY$1 | EREV$2 | LIGHT_CANDLES$
|
|
11901
|
+
flags: CHUL_ONLY$1 | EREV$2 | LIGHT_CANDLES$2,
|
|
11337
11902
|
emoji: '🫓🍷',
|
|
11338
11903
|
},
|
|
11339
11904
|
{
|
|
11340
11905
|
mm: Nisan,
|
|
11341
11906
|
dd: 15,
|
|
11342
11907
|
desc: PESACH_I,
|
|
11343
|
-
flags: CHUL_ONLY$1 | CHAG$1 | LIGHT_CANDLES_TZEIS$
|
|
11908
|
+
flags: CHUL_ONLY$1 | CHAG$1 | LIGHT_CANDLES_TZEIS$3,
|
|
11344
11909
|
emoji: '🫓🍷',
|
|
11345
11910
|
},
|
|
11346
11911
|
{
|
|
@@ -11378,7 +11943,7 @@ const staticHolidays = [
|
|
|
11378
11943
|
mm: Nisan,
|
|
11379
11944
|
dd: 20,
|
|
11380
11945
|
desc: PESACH_VI_CHM,
|
|
11381
|
-
flags: CHUL_ONLY$1 | CHOL_HAMOED$1 | LIGHT_CANDLES$
|
|
11946
|
+
flags: CHUL_ONLY$1 | CHOL_HAMOED$1 | LIGHT_CANDLES$2,
|
|
11382
11947
|
chmDay: 4,
|
|
11383
11948
|
emoji: emojiPesach,
|
|
11384
11949
|
},
|
|
@@ -11386,7 +11951,7 @@ const staticHolidays = [
|
|
|
11386
11951
|
mm: Nisan,
|
|
11387
11952
|
dd: 21,
|
|
11388
11953
|
desc: PESACH_VII,
|
|
11389
|
-
flags: CHUL_ONLY$1 | CHAG$1 | LIGHT_CANDLES_TZEIS$
|
|
11954
|
+
flags: CHUL_ONLY$1 | CHAG$1 | LIGHT_CANDLES_TZEIS$3,
|
|
11390
11955
|
emoji: emojiPesach,
|
|
11391
11956
|
},
|
|
11392
11957
|
{
|
|
@@ -11402,7 +11967,7 @@ const staticHolidays = [
|
|
|
11402
11967
|
mm: Sivan,
|
|
11403
11968
|
dd: 5,
|
|
11404
11969
|
desc: EREV_SHAVUOT,
|
|
11405
|
-
flags: EREV$2 | LIGHT_CANDLES$
|
|
11970
|
+
flags: EREV$2 | LIGHT_CANDLES$2,
|
|
11406
11971
|
emoji: '⛰️🌸',
|
|
11407
11972
|
},
|
|
11408
11973
|
{
|
|
@@ -11416,7 +11981,7 @@ const staticHolidays = [
|
|
|
11416
11981
|
mm: Sivan,
|
|
11417
11982
|
dd: 6,
|
|
11418
11983
|
desc: SHAVUOT_I,
|
|
11419
|
-
flags: CHUL_ONLY$1 | CHAG$1 | LIGHT_CANDLES_TZEIS$
|
|
11984
|
+
flags: CHUL_ONLY$1 | CHAG$1 | LIGHT_CANDLES_TZEIS$3,
|
|
11420
11985
|
emoji: '⛰️🌸',
|
|
11421
11986
|
},
|
|
11422
11987
|
{
|
|
@@ -11438,7 +12003,7 @@ const staticHolidays = [
|
|
|
11438
12003
|
mm: Elul,
|
|
11439
12004
|
dd: 29,
|
|
11440
12005
|
desc: EREV_ROSH_HASHANA,
|
|
11441
|
-
flags: EREV$2 | LIGHT_CANDLES$
|
|
12006
|
+
flags: EREV$2 | LIGHT_CANDLES$2,
|
|
11442
12007
|
emoji: '🍏🍯',
|
|
11443
12008
|
},
|
|
11444
12009
|
];
|
|
@@ -11724,21 +12289,20 @@ class DailyLearning {
|
|
|
11724
12289
|
}
|
|
11725
12290
|
}
|
|
11726
12291
|
|
|
11727
|
-
/** DO NOT EDIT THIS AUTO-GENERATED FILE! */
|
|
11728
|
-
const version = '5.5.0';
|
|
11729
|
-
|
|
11730
12292
|
/* eslint-disable max-len */
|
|
12293
|
+
const LIGHT_CANDLES$1 = flags.LIGHT_CANDLES;
|
|
12294
|
+
const LIGHT_CANDLES_TZEIS$2 = flags.LIGHT_CANDLES_TZEIS;
|
|
11731
12295
|
/**
|
|
11732
12296
|
* @private
|
|
11733
12297
|
*/
|
|
11734
12298
|
function makeCandleEvent(ev, hd, options, isFriday, isSaturday) {
|
|
11735
12299
|
let havdalahTitle = false;
|
|
11736
12300
|
let useHavdalahOffset = isSaturday;
|
|
11737
|
-
let mask = ev ? ev.getFlags() :
|
|
12301
|
+
let mask = ev ? ev.getFlags() : LIGHT_CANDLES$1;
|
|
11738
12302
|
if (typeof ev !== 'undefined') {
|
|
11739
12303
|
// if linked event && dow == FRI, use Candle lighting time & title
|
|
11740
12304
|
if (!isFriday) {
|
|
11741
|
-
if (mask & (
|
|
12305
|
+
if (mask & (LIGHT_CANDLES_TZEIS$2 | flags.CHANUKAH_CANDLES)) {
|
|
11742
12306
|
useHavdalahOffset = true;
|
|
11743
12307
|
}
|
|
11744
12308
|
else if (mask & flags.YOM_TOV_ENDS) {
|
|
@@ -11749,7 +12313,7 @@ function makeCandleEvent(ev, hd, options, isFriday, isSaturday) {
|
|
|
11749
12313
|
}
|
|
11750
12314
|
else if (isSaturday) {
|
|
11751
12315
|
havdalahTitle = true;
|
|
11752
|
-
mask =
|
|
12316
|
+
mask = LIGHT_CANDLES_TZEIS$2;
|
|
11753
12317
|
}
|
|
11754
12318
|
// if offset is 0 or undefined, we'll use tzeit time
|
|
11755
12319
|
const offset = useHavdalahOffset
|
|
@@ -11768,6 +12332,7 @@ function makeCandleEvent(ev, hd, options, isFriday, isSaturday) {
|
|
|
11768
12332
|
return new HavdalahEvent(hd, mask, time, location, options.havdalahMins, ev, options);
|
|
11769
12333
|
}
|
|
11770
12334
|
else {
|
|
12335
|
+
mask |= LIGHT_CANDLES$1;
|
|
11771
12336
|
return new CandleLightingEvent(hd, mask, time, location, ev, options);
|
|
11772
12337
|
}
|
|
11773
12338
|
}
|