core-js-bundle 3.25.2 → 3.25.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/index.js +143 -132
- package/minified.js +6 -6
- package/minified.js.map +1 -1
- package/package.json +1 -1
package/index.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* core-js 3.25.
|
|
2
|
+
* core-js 3.25.4
|
|
3
3
|
* © 2014-2022 Denis Pushkarev (zloirock.ru)
|
|
4
|
-
* license: https://github.com/zloirock/core-js/blob/v3.25.
|
|
4
|
+
* license: https://github.com/zloirock/core-js/blob/v3.25.4/LICENSE
|
|
5
5
|
* source: https://github.com/zloirock/core-js
|
|
6
6
|
*/
|
|
7
7
|
!function (undefined) { 'use strict'; /******/ (function(modules) { // webpackBootstrap
|
|
@@ -832,7 +832,7 @@ var check = function (it) {
|
|
|
832
832
|
|
|
833
833
|
// https://github.com/zloirock/core-js/issues/86#issuecomment-115759028
|
|
834
834
|
module.exports =
|
|
835
|
-
// eslint-disable-next-line es
|
|
835
|
+
// eslint-disable-next-line es/no-global-this -- safe
|
|
836
836
|
check(typeof globalThis == 'object' && globalThis) ||
|
|
837
837
|
check(typeof window == 'object' && window) ||
|
|
838
838
|
// eslint-disable-next-line no-restricted-globals -- safe
|
|
@@ -855,7 +855,7 @@ var toPropertyKey = __webpack_require__(18);
|
|
|
855
855
|
var hasOwn = __webpack_require__(39);
|
|
856
856
|
var IE8_DOM_DEFINE = __webpack_require__(42);
|
|
857
857
|
|
|
858
|
-
// eslint-disable-next-line es
|
|
858
|
+
// eslint-disable-next-line es/no-object-getownpropertydescriptor -- safe
|
|
859
859
|
var $getOwnPropertyDescriptor = Object.getOwnPropertyDescriptor;
|
|
860
860
|
|
|
861
861
|
// `Object.getOwnPropertyDescriptor` method
|
|
@@ -878,7 +878,7 @@ var fails = __webpack_require__(7);
|
|
|
878
878
|
|
|
879
879
|
// Detect IE8's incomplete defineProperty implementation
|
|
880
880
|
module.exports = !fails(function () {
|
|
881
|
-
// eslint-disable-next-line es
|
|
881
|
+
// eslint-disable-next-line es/no-object-defineproperty -- required for testing
|
|
882
882
|
return Object.defineProperty({}, 1, { get: function () { return 7; } })[1] != 7;
|
|
883
883
|
});
|
|
884
884
|
|
|
@@ -916,7 +916,7 @@ module.exports = NATIVE_BIND ? call.bind(call) : function () {
|
|
|
916
916
|
var fails = __webpack_require__(7);
|
|
917
917
|
|
|
918
918
|
module.exports = !fails(function () {
|
|
919
|
-
// eslint-disable-next-line es
|
|
919
|
+
// eslint-disable-next-line es/no-function-prototype-bind -- safe
|
|
920
920
|
var test = (function () { /* empty */ }).bind();
|
|
921
921
|
// eslint-disable-next-line no-prototype-builtins -- safe
|
|
922
922
|
return typeof test != 'function' || test.hasOwnProperty('prototype');
|
|
@@ -930,7 +930,7 @@ module.exports = !fails(function () {
|
|
|
930
930
|
"use strict";
|
|
931
931
|
|
|
932
932
|
var $propertyIsEnumerable = {}.propertyIsEnumerable;
|
|
933
|
-
// eslint-disable-next-line es
|
|
933
|
+
// eslint-disable-next-line es/no-object-getownpropertydescriptor -- safe
|
|
934
934
|
var getOwnPropertyDescriptor = Object.getOwnPropertyDescriptor;
|
|
935
935
|
|
|
936
936
|
// Nashorn ~ JDK8 bug
|
|
@@ -998,17 +998,19 @@ module.exports = fails(function () {
|
|
|
998
998
|
|
|
999
999
|
var NATIVE_BIND = __webpack_require__(9);
|
|
1000
1000
|
|
|
1001
|
-
var
|
|
1001
|
+
var $Function = Function;
|
|
1002
|
+
var FunctionPrototype = $Function.prototype;
|
|
1002
1003
|
var bind = FunctionPrototype.bind;
|
|
1003
1004
|
var call = FunctionPrototype.call;
|
|
1004
1005
|
var uncurryThis = NATIVE_BIND && bind.bind(call, call);
|
|
1005
1006
|
|
|
1006
|
-
module.exports =
|
|
1007
|
-
|
|
1008
|
-
|
|
1009
|
-
|
|
1007
|
+
module.exports = function (fn) {
|
|
1008
|
+
// Nashorn bug:
|
|
1009
|
+
// https://github.com/zloirock/core-js/issues/1128
|
|
1010
|
+
// https://github.com/zloirock/core-js/issues/1130
|
|
1011
|
+
return fn instanceof $Function ? NATIVE_BIND ? uncurryThis(fn) : function () {
|
|
1010
1012
|
return call.apply(fn, arguments);
|
|
1011
|
-
};
|
|
1013
|
+
} : undefined;
|
|
1012
1014
|
};
|
|
1013
1015
|
|
|
1014
1016
|
|
|
@@ -1195,7 +1197,7 @@ module.exports = uncurryThis({}.isPrototypeOf);
|
|
|
1195
1197
|
/* 26 */
|
|
1196
1198
|
/***/ (function(module, exports, __webpack_require__) {
|
|
1197
1199
|
|
|
1198
|
-
/* eslint-disable es
|
|
1200
|
+
/* eslint-disable es/no-symbol -- required for testing */
|
|
1199
1201
|
var NATIVE_SYMBOL = __webpack_require__(27);
|
|
1200
1202
|
|
|
1201
1203
|
module.exports = NATIVE_SYMBOL
|
|
@@ -1207,11 +1209,11 @@ module.exports = NATIVE_SYMBOL
|
|
|
1207
1209
|
/* 27 */
|
|
1208
1210
|
/***/ (function(module, exports, __webpack_require__) {
|
|
1209
1211
|
|
|
1210
|
-
/* eslint-disable es
|
|
1212
|
+
/* eslint-disable es/no-symbol -- required for testing */
|
|
1211
1213
|
var V8_VERSION = __webpack_require__(28);
|
|
1212
1214
|
var fails = __webpack_require__(7);
|
|
1213
1215
|
|
|
1214
|
-
// eslint-disable-next-line es
|
|
1216
|
+
// eslint-disable-next-line es/no-object-getownpropertysymbols -- required for testing
|
|
1215
1217
|
module.exports = !!Object.getOwnPropertySymbols && !fails(function () {
|
|
1216
1218
|
var symbol = Symbol();
|
|
1217
1219
|
// Chrome 38 Symbol has incorrect toString conversion
|
|
@@ -1371,10 +1373,10 @@ var store = __webpack_require__(37);
|
|
|
1371
1373
|
(module.exports = function (key, value) {
|
|
1372
1374
|
return store[key] || (store[key] = value !== undefined ? value : {});
|
|
1373
1375
|
})('versions', []).push({
|
|
1374
|
-
version: '3.25.
|
|
1376
|
+
version: '3.25.4',
|
|
1375
1377
|
mode: IS_PURE ? 'pure' : 'global',
|
|
1376
1378
|
copyright: '© 2014-2022 Denis Pushkarev (zloirock.ru)',
|
|
1377
|
-
license: 'https://github.com/zloirock/core-js/blob/v3.25.
|
|
1379
|
+
license: 'https://github.com/zloirock/core-js/blob/v3.25.4/LICENSE',
|
|
1378
1380
|
source: 'https://github.com/zloirock/core-js'
|
|
1379
1381
|
});
|
|
1380
1382
|
|
|
@@ -1405,7 +1407,7 @@ module.exports = store;
|
|
|
1405
1407
|
|
|
1406
1408
|
var global = __webpack_require__(4);
|
|
1407
1409
|
|
|
1408
|
-
// eslint-disable-next-line es
|
|
1410
|
+
// eslint-disable-next-line es/no-object-defineproperty -- safe
|
|
1409
1411
|
var defineProperty = Object.defineProperty;
|
|
1410
1412
|
|
|
1411
1413
|
module.exports = function (key, value) {
|
|
@@ -1428,7 +1430,7 @@ var hasOwnProperty = uncurryThis({}.hasOwnProperty);
|
|
|
1428
1430
|
|
|
1429
1431
|
// `HasOwnProperty` abstract operation
|
|
1430
1432
|
// https://tc39.es/ecma262/#sec-hasownproperty
|
|
1431
|
-
// eslint-disable-next-line es
|
|
1433
|
+
// eslint-disable-next-line es/no-object-hasown -- safe
|
|
1432
1434
|
module.exports = Object.hasOwn || function hasOwn(it, key) {
|
|
1433
1435
|
return hasOwnProperty(toObject(it), key);
|
|
1434
1436
|
};
|
|
@@ -1474,7 +1476,7 @@ var createElement = __webpack_require__(43);
|
|
|
1474
1476
|
|
|
1475
1477
|
// Thanks to IE8 for its funny defineProperty
|
|
1476
1478
|
module.exports = !DESCRIPTORS && !fails(function () {
|
|
1477
|
-
// eslint-disable-next-line es
|
|
1479
|
+
// eslint-disable-next-line es/no-object-defineproperty -- required for testing
|
|
1478
1480
|
return Object.defineProperty(createElement('div'), 'a', {
|
|
1479
1481
|
get: function () { return 7; }
|
|
1480
1482
|
}).a != 7;
|
|
@@ -1524,9 +1526,9 @@ var anObject = __webpack_require__(47);
|
|
|
1524
1526
|
var toPropertyKey = __webpack_require__(18);
|
|
1525
1527
|
|
|
1526
1528
|
var $TypeError = TypeError;
|
|
1527
|
-
// eslint-disable-next-line es
|
|
1529
|
+
// eslint-disable-next-line es/no-object-defineproperty -- safe
|
|
1528
1530
|
var $defineProperty = Object.defineProperty;
|
|
1529
|
-
// eslint-disable-next-line es
|
|
1531
|
+
// eslint-disable-next-line es/no-object-getownpropertydescriptor -- safe
|
|
1530
1532
|
var $getOwnPropertyDescriptor = Object.getOwnPropertyDescriptor;
|
|
1531
1533
|
var ENUMERABLE = 'enumerable';
|
|
1532
1534
|
var CONFIGURABLE = 'configurable';
|
|
@@ -1572,7 +1574,7 @@ var fails = __webpack_require__(7);
|
|
|
1572
1574
|
// V8 ~ Chrome 36-
|
|
1573
1575
|
// https://bugs.chromium.org/p/v8/issues/detail?id=3334
|
|
1574
1576
|
module.exports = DESCRIPTORS && fails(function () {
|
|
1575
|
-
// eslint-disable-next-line es
|
|
1577
|
+
// eslint-disable-next-line es/no-object-defineproperty -- required for testing
|
|
1576
1578
|
return Object.defineProperty(function () { /* empty */ }, 'prototype', {
|
|
1577
1579
|
value: 42,
|
|
1578
1580
|
writable: false
|
|
@@ -1643,7 +1645,7 @@ var InternalStateModule = __webpack_require__(52);
|
|
|
1643
1645
|
|
|
1644
1646
|
var enforceInternalState = InternalStateModule.enforce;
|
|
1645
1647
|
var getInternalState = InternalStateModule.get;
|
|
1646
|
-
// eslint-disable-next-line es
|
|
1648
|
+
// eslint-disable-next-line es/no-object-defineproperty -- safe
|
|
1647
1649
|
var defineProperty = Object.defineProperty;
|
|
1648
1650
|
|
|
1649
1651
|
var CONFIGURABLE_LENGTH = DESCRIPTORS && !fails(function () {
|
|
@@ -1692,7 +1694,7 @@ var DESCRIPTORS = __webpack_require__(6);
|
|
|
1692
1694
|
var hasOwn = __webpack_require__(39);
|
|
1693
1695
|
|
|
1694
1696
|
var FunctionPrototype = Function.prototype;
|
|
1695
|
-
// eslint-disable-next-line es
|
|
1697
|
+
// eslint-disable-next-line es/no-object-getownpropertydescriptor -- safe
|
|
1696
1698
|
var getDescriptor = DESCRIPTORS && Object.getOwnPropertyDescriptor;
|
|
1697
1699
|
|
|
1698
1700
|
var EXISTS = hasOwn(FunctionPrototype, 'name');
|
|
@@ -1888,7 +1890,7 @@ var hiddenKeys = enumBugKeys.concat('length', 'prototype');
|
|
|
1888
1890
|
|
|
1889
1891
|
// `Object.getOwnPropertyNames` method
|
|
1890
1892
|
// https://tc39.es/ecma262/#sec-object.getownpropertynames
|
|
1891
|
-
// eslint-disable-next-line es
|
|
1893
|
+
// eslint-disable-next-line es/no-object-getownpropertynames -- safe
|
|
1892
1894
|
exports.f = Object.getOwnPropertyNames || function getOwnPropertyNames(O) {
|
|
1893
1895
|
return internalObjectKeys(O, hiddenKeys);
|
|
1894
1896
|
};
|
|
@@ -2000,7 +2002,7 @@ var floor = Math.floor;
|
|
|
2000
2002
|
|
|
2001
2003
|
// `Math.trunc` method
|
|
2002
2004
|
// https://tc39.es/ecma262/#sec-math.trunc
|
|
2003
|
-
// eslint-disable-next-line es
|
|
2005
|
+
// eslint-disable-next-line es/no-math-trunc -- safe
|
|
2004
2006
|
module.exports = Math.trunc || function trunc(x) {
|
|
2005
2007
|
var n = +x;
|
|
2006
2008
|
return (n > 0 ? floor : ceil)(n);
|
|
@@ -2055,7 +2057,7 @@ module.exports = [
|
|
|
2055
2057
|
/* 67 */
|
|
2056
2058
|
/***/ (function(module, exports) {
|
|
2057
2059
|
|
|
2058
|
-
// eslint-disable-next-line es
|
|
2060
|
+
// eslint-disable-next-line es/no-object-getownpropertysymbols -- safe
|
|
2059
2061
|
exports.f = Object.getOwnPropertySymbols;
|
|
2060
2062
|
|
|
2061
2063
|
|
|
@@ -2225,7 +2227,7 @@ hiddenKeys[IE_PROTO] = true;
|
|
|
2225
2227
|
|
|
2226
2228
|
// `Object.create` method
|
|
2227
2229
|
// https://tc39.es/ecma262/#sec-object.create
|
|
2228
|
-
// eslint-disable-next-line es
|
|
2230
|
+
// eslint-disable-next-line es/no-object-create -- safe
|
|
2229
2231
|
module.exports = Object.create || function create(O, Properties) {
|
|
2230
2232
|
var result;
|
|
2231
2233
|
if (O !== null) {
|
|
@@ -2252,7 +2254,7 @@ var objectKeys = __webpack_require__(74);
|
|
|
2252
2254
|
|
|
2253
2255
|
// `Object.defineProperties` method
|
|
2254
2256
|
// https://tc39.es/ecma262/#sec-object.defineproperties
|
|
2255
|
-
// eslint-disable-next-line es
|
|
2257
|
+
// eslint-disable-next-line es/no-object-defineproperties -- safe
|
|
2256
2258
|
exports.f = DESCRIPTORS && !V8_PROTOTYPE_DEFINE_BUG ? Object.defineProperties : function defineProperties(O, Properties) {
|
|
2257
2259
|
anObject(O);
|
|
2258
2260
|
var props = toIndexedObject(Properties);
|
|
@@ -2274,7 +2276,7 @@ var enumBugKeys = __webpack_require__(66);
|
|
|
2274
2276
|
|
|
2275
2277
|
// `Object.keys` method
|
|
2276
2278
|
// https://tc39.es/ecma262/#sec-object.keys
|
|
2277
|
-
// eslint-disable-next-line es
|
|
2279
|
+
// eslint-disable-next-line es/no-object-keys -- safe
|
|
2278
2280
|
module.exports = Object.keys || function keys(O) {
|
|
2279
2281
|
return internalObjectKeys(O, enumBugKeys);
|
|
2280
2282
|
};
|
|
@@ -2293,7 +2295,7 @@ module.exports = getBuiltIn('document', 'documentElement');
|
|
|
2293
2295
|
/* 76 */
|
|
2294
2296
|
/***/ (function(module, exports, __webpack_require__) {
|
|
2295
2297
|
|
|
2296
|
-
/* eslint-disable es
|
|
2298
|
+
/* eslint-disable es/no-object-getownpropertynames -- safe */
|
|
2297
2299
|
var classof = __webpack_require__(15);
|
|
2298
2300
|
var toIndexedObject = __webpack_require__(12);
|
|
2299
2301
|
var $getOwnPropertyNames = __webpack_require__(58).f;
|
|
@@ -2583,7 +2585,7 @@ var classof = __webpack_require__(15);
|
|
|
2583
2585
|
|
|
2584
2586
|
// `IsArray` abstract operation
|
|
2585
2587
|
// https://tc39.es/ecma262/#sec-isarray
|
|
2586
|
-
// eslint-disable-next-line es
|
|
2588
|
+
// eslint-disable-next-line es/no-array-isarray -- safe
|
|
2587
2589
|
module.exports = Array.isArray || function isArray(argument) {
|
|
2588
2590
|
return classof(argument) == 'Array';
|
|
2589
2591
|
};
|
|
@@ -2681,7 +2683,7 @@ $({ target: 'Symbol', stat: true, forced: !NATIVE_SYMBOL_REGISTRY }, {
|
|
|
2681
2683
|
|
|
2682
2684
|
var NATIVE_SYMBOL = __webpack_require__(27);
|
|
2683
2685
|
|
|
2684
|
-
/* eslint-disable es
|
|
2686
|
+
/* eslint-disable es/no-symbol -- safe */
|
|
2685
2687
|
module.exports = NATIVE_SYMBOL && !!Symbol['for'] && !!Symbol.keyFor;
|
|
2686
2688
|
|
|
2687
2689
|
|
|
@@ -2796,7 +2798,7 @@ var FunctionPrototype = Function.prototype;
|
|
|
2796
2798
|
var apply = FunctionPrototype.apply;
|
|
2797
2799
|
var call = FunctionPrototype.call;
|
|
2798
2800
|
|
|
2799
|
-
// eslint-disable-next-line es
|
|
2801
|
+
// eslint-disable-next-line es/no-reflect -- safe
|
|
2800
2802
|
module.exports = typeof Reflect == 'object' && Reflect.apply || (NATIVE_BIND ? call.bind(apply) : function () {
|
|
2801
2803
|
return call.apply(apply, arguments);
|
|
2802
2804
|
});
|
|
@@ -3202,13 +3204,13 @@ var aPossiblePrototype = __webpack_require__(114);
|
|
|
3202
3204
|
// `Object.setPrototypeOf` method
|
|
3203
3205
|
// https://tc39.es/ecma262/#sec-object.setprototypeof
|
|
3204
3206
|
// Works with __proto__ only. Old v8 can't work with null proto objects.
|
|
3205
|
-
// eslint-disable-next-line es
|
|
3207
|
+
// eslint-disable-next-line es/no-object-setprototypeof -- safe
|
|
3206
3208
|
module.exports = Object.setPrototypeOf || ('__proto__' in {} ? function () {
|
|
3207
3209
|
var CORRECT_SETTER = false;
|
|
3208
3210
|
var test = {};
|
|
3209
3211
|
var setter;
|
|
3210
3212
|
try {
|
|
3211
|
-
// eslint-disable-next-line es
|
|
3213
|
+
// eslint-disable-next-line es/no-object-getownpropertydescriptor -- safe
|
|
3212
3214
|
setter = uncurryThis(Object.getOwnPropertyDescriptor(Object.prototype, '__proto__').set);
|
|
3213
3215
|
setter(test, []);
|
|
3214
3216
|
CORRECT_SETTER = test instanceof Array;
|
|
@@ -3334,7 +3336,7 @@ var createPropertyDescriptor = __webpack_require__(11);
|
|
|
3334
3336
|
module.exports = !fails(function () {
|
|
3335
3337
|
var error = Error('a');
|
|
3336
3338
|
if (!('stack' in error)) return true;
|
|
3337
|
-
// eslint-disable-next-line es
|
|
3339
|
+
// eslint-disable-next-line es/no-object-defineproperty -- safe
|
|
3338
3340
|
Object.defineProperty(error, 'stack', createPropertyDescriptor(1, 7));
|
|
3339
3341
|
return error.stack !== 7;
|
|
3340
3342
|
});
|
|
@@ -3373,7 +3375,7 @@ var nativeErrorToString = Error.prototype.toString;
|
|
|
3373
3375
|
var INCORRECT_TO_STRING = fails(function () {
|
|
3374
3376
|
if (DESCRIPTORS) {
|
|
3375
3377
|
// Chrome 32- incorrectly call accessor
|
|
3376
|
-
// eslint-disable-next-line es
|
|
3378
|
+
// eslint-disable-next-line es/no-object-defineproperty -- safe
|
|
3377
3379
|
var object = create(Object.defineProperty({}, 'name', { get: function () {
|
|
3378
3380
|
return this === object;
|
|
3379
3381
|
} }));
|
|
@@ -3477,7 +3479,7 @@ var ObjectPrototype = $Object.prototype;
|
|
|
3477
3479
|
|
|
3478
3480
|
// `Object.getPrototypeOf` method
|
|
3479
3481
|
// https://tc39.es/ecma262/#sec-object.getprototypeof
|
|
3480
|
-
// eslint-disable-next-line es
|
|
3482
|
+
// eslint-disable-next-line es/no-object-getprototypeof -- safe
|
|
3481
3483
|
module.exports = CORRECT_PROTOTYPE_GETTER ? $Object.getPrototypeOf : function (O) {
|
|
3482
3484
|
var object = toObject(O);
|
|
3483
3485
|
if (hasOwn(object, IE_PROTO)) return object[IE_PROTO];
|
|
@@ -3497,7 +3499,7 @@ var fails = __webpack_require__(7);
|
|
|
3497
3499
|
module.exports = !fails(function () {
|
|
3498
3500
|
function F() { /* empty */ }
|
|
3499
3501
|
F.prototype.constructor = null;
|
|
3500
|
-
// eslint-disable-next-line es
|
|
3502
|
+
// eslint-disable-next-line es/no-object-getprototypeof -- required for testing
|
|
3501
3503
|
return Object.getPrototypeOf(new F()) !== F.prototype;
|
|
3502
3504
|
});
|
|
3503
3505
|
|
|
@@ -3885,7 +3887,7 @@ var min = Math.min;
|
|
|
3885
3887
|
|
|
3886
3888
|
// `Array.prototype.copyWithin` method implementation
|
|
3887
3889
|
// https://tc39.es/ecma262/#sec-array.prototype.copywithin
|
|
3888
|
-
// eslint-disable-next-line es
|
|
3890
|
+
// eslint-disable-next-line es/no-array-prototype-copywithin -- safe
|
|
3889
3891
|
module.exports = [].copyWithin || function copyWithin(target /* = 0 */, start /* = 0, end = @length */) {
|
|
3890
3892
|
var O = toObject(this);
|
|
3891
3893
|
var len = lengthOfArrayLike(O);
|
|
@@ -4270,7 +4272,7 @@ var forEach = __webpack_require__(156);
|
|
|
4270
4272
|
|
|
4271
4273
|
// `Array.prototype.forEach` method
|
|
4272
4274
|
// https://tc39.es/ecma262/#sec-array.prototype.foreach
|
|
4273
|
-
// eslint-disable-next-line es
|
|
4275
|
+
// eslint-disable-next-line es/no-array-prototype-foreach -- safe
|
|
4274
4276
|
$({ target: 'Array', proto: true, forced: [].forEach != forEach }, {
|
|
4275
4277
|
forEach: forEach
|
|
4276
4278
|
});
|
|
@@ -4291,7 +4293,7 @@ var STRICT_METHOD = arrayMethodIsStrict('forEach');
|
|
|
4291
4293
|
// https://tc39.es/ecma262/#sec-array.prototype.foreach
|
|
4292
4294
|
module.exports = !STRICT_METHOD ? function forEach(callbackfn /* , thisArg */) {
|
|
4293
4295
|
return $forEach(this, callbackfn, arguments.length > 1 ? arguments[1] : undefined);
|
|
4294
|
-
// eslint-disable-next-line es
|
|
4296
|
+
// eslint-disable-next-line es/no-array-prototype-foreach -- safe
|
|
4295
4297
|
} : [].forEach;
|
|
4296
4298
|
|
|
4297
4299
|
|
|
@@ -4304,7 +4306,7 @@ var from = __webpack_require__(158);
|
|
|
4304
4306
|
var checkCorrectnessOfIteration = __webpack_require__(160);
|
|
4305
4307
|
|
|
4306
4308
|
var INCORRECT_ITERATION = !checkCorrectnessOfIteration(function (iterable) {
|
|
4307
|
-
// eslint-disable-next-line es
|
|
4309
|
+
// eslint-disable-next-line es/no-array-from -- required for testing
|
|
4308
4310
|
Array.from(iterable);
|
|
4309
4311
|
});
|
|
4310
4312
|
|
|
@@ -4407,7 +4409,7 @@ try {
|
|
|
4407
4409
|
iteratorWithReturn[ITERATOR] = function () {
|
|
4408
4410
|
return this;
|
|
4409
4411
|
};
|
|
4410
|
-
// eslint-disable-next-line es
|
|
4412
|
+
// eslint-disable-next-line es/no-array-from, no-throw-literal -- required for testing
|
|
4411
4413
|
Array.from(iteratorWithReturn, function () { throw 2; });
|
|
4412
4414
|
} catch (error) { /* empty */ }
|
|
4413
4415
|
|
|
@@ -4463,7 +4465,7 @@ addToUnscopables('includes');
|
|
|
4463
4465
|
|
|
4464
4466
|
"use strict";
|
|
4465
4467
|
|
|
4466
|
-
/* eslint-disable es
|
|
4468
|
+
/* eslint-disable es/no-array-prototype-indexof -- required for testing */
|
|
4467
4469
|
var $ = __webpack_require__(3);
|
|
4468
4470
|
var uncurryThis = __webpack_require__(14);
|
|
4469
4471
|
var $indexOf = __webpack_require__(60).indexOf;
|
|
@@ -4721,7 +4723,7 @@ var BUGGY_SAFARI_ITERATORS = false;
|
|
|
4721
4723
|
// https://tc39.es/ecma262/#sec-%iteratorprototype%-object
|
|
4722
4724
|
var IteratorPrototype, PrototypeOfArrayIteratorPrototype, arrayIterator;
|
|
4723
4725
|
|
|
4724
|
-
/* eslint-disable es
|
|
4726
|
+
/* eslint-disable es/no-array-prototype-keys -- safe */
|
|
4725
4727
|
if ([].keys) {
|
|
4726
4728
|
arrayIterator = [].keys();
|
|
4727
4729
|
// Safari 8 has buggy iterators w/o `next`
|
|
@@ -4801,7 +4803,7 @@ var lastIndexOf = __webpack_require__(171);
|
|
|
4801
4803
|
|
|
4802
4804
|
// `Array.prototype.lastIndexOf` method
|
|
4803
4805
|
// https://tc39.es/ecma262/#sec-array.prototype.lastindexof
|
|
4804
|
-
// eslint-disable-next-line es
|
|
4806
|
+
// eslint-disable-next-line es/no-array-prototype-lastindexof -- required for testing
|
|
4805
4807
|
$({ target: 'Array', proto: true, forced: lastIndexOf !== [].lastIndexOf }, {
|
|
4806
4808
|
lastIndexOf: lastIndexOf
|
|
4807
4809
|
});
|
|
@@ -4813,7 +4815,7 @@ $({ target: 'Array', proto: true, forced: lastIndexOf !== [].lastIndexOf }, {
|
|
|
4813
4815
|
|
|
4814
4816
|
"use strict";
|
|
4815
4817
|
|
|
4816
|
-
/* eslint-disable es
|
|
4818
|
+
/* eslint-disable es/no-array-prototype-lastindexof -- safe */
|
|
4817
4819
|
var apply = __webpack_require__(94);
|
|
4818
4820
|
var toIndexedObject = __webpack_require__(12);
|
|
4819
4821
|
var toIntegerOrInfinity = __webpack_require__(62);
|
|
@@ -4878,7 +4880,7 @@ var $Array = Array;
|
|
|
4878
4880
|
|
|
4879
4881
|
var ISNT_GENERIC = fails(function () {
|
|
4880
4882
|
function F() { /* empty */ }
|
|
4881
|
-
// eslint-disable-next-line es
|
|
4883
|
+
// eslint-disable-next-line es/no-array-of -- safe
|
|
4882
4884
|
return !($Array.of.call(F) instanceof F);
|
|
4883
4885
|
});
|
|
4884
4886
|
|
|
@@ -4918,7 +4920,7 @@ var INCORRECT_TO_LENGTH = fails(function () {
|
|
|
4918
4920
|
// https://bugs.chromium.org/p/v8/issues/detail?id=12681
|
|
4919
4921
|
var SILENT_ON_NON_WRITABLE_LENGTH = !function () {
|
|
4920
4922
|
try {
|
|
4921
|
-
// eslint-disable-next-line es
|
|
4923
|
+
// eslint-disable-next-line es/no-object-defineproperty -- safe
|
|
4922
4924
|
Object.defineProperty([], 'length', { writable: false }).push();
|
|
4923
4925
|
} catch (error) {
|
|
4924
4926
|
return error instanceof TypeError;
|
|
@@ -4954,7 +4956,7 @@ var DESCRIPTORS = __webpack_require__(6);
|
|
|
4954
4956
|
var isArray = __webpack_require__(88);
|
|
4955
4957
|
|
|
4956
4958
|
var $TypeError = TypeError;
|
|
4957
|
-
// eslint-disable-next-line es
|
|
4959
|
+
// eslint-disable-next-line es/no-object-getownpropertydescriptor -- safe
|
|
4958
4960
|
var getOwnPropertyDescriptor = Object.getOwnPropertyDescriptor;
|
|
4959
4961
|
|
|
4960
4962
|
// Safari < 13 does not throw an error in this case
|
|
@@ -4962,7 +4964,7 @@ var SILENT_ON_NON_WRITABLE_LENGTH_SET = DESCRIPTORS && !function () {
|
|
|
4962
4964
|
// makes no sense without proper strict mode support
|
|
4963
4965
|
if (this !== undefined) return true;
|
|
4964
4966
|
try {
|
|
4965
|
-
// eslint-disable-next-line es
|
|
4967
|
+
// eslint-disable-next-line es/no-object-defineproperty -- safe
|
|
4966
4968
|
Object.defineProperty([], 'length', { writable: false }).length = 1;
|
|
4967
4969
|
} catch (error) {
|
|
4968
4970
|
return error instanceof TypeError;
|
|
@@ -5540,7 +5542,7 @@ var INCORRECT_RESULT = [].unshift(0) !== 1;
|
|
|
5540
5542
|
// V8 ~ Chrome < 71 and Safari <= 15.4, FF < 23 throws InternalError
|
|
5541
5543
|
var SILENT_ON_NON_WRITABLE_LENGTH = !function () {
|
|
5542
5544
|
try {
|
|
5543
|
-
// eslint-disable-next-line es
|
|
5545
|
+
// eslint-disable-next-line es/no-object-defineproperty -- safe
|
|
5544
5546
|
Object.defineProperty([], 'length', { writable: false }).unshift();
|
|
5545
5547
|
} catch (error) {
|
|
5546
5548
|
return error instanceof TypeError;
|
|
@@ -5853,7 +5855,7 @@ module.exports = {
|
|
|
5853
5855
|
/* 196 */
|
|
5854
5856
|
/***/ (function(module, exports) {
|
|
5855
5857
|
|
|
5856
|
-
// eslint-disable-next-line es
|
|
5858
|
+
// eslint-disable-next-line es/no-typed-arrays -- safe
|
|
5857
5859
|
module.exports = typeof ArrayBuffer != 'undefined' && typeof DataView != 'undefined';
|
|
5858
5860
|
|
|
5859
5861
|
|
|
@@ -7069,7 +7071,7 @@ var isObject = __webpack_require__(20);
|
|
|
7069
7071
|
var classof = __webpack_require__(15);
|
|
7070
7072
|
var ARRAY_BUFFER_NON_EXTENSIBLE = __webpack_require__(232);
|
|
7071
7073
|
|
|
7072
|
-
// eslint-disable-next-line es
|
|
7074
|
+
// eslint-disable-next-line es/no-object-isextensible -- safe
|
|
7073
7075
|
var $isExtensible = Object.isExtensible;
|
|
7074
7076
|
var FAILS_ON_PRIMITIVES = fails(function () { $isExtensible(1); });
|
|
7075
7077
|
|
|
@@ -7092,7 +7094,7 @@ var fails = __webpack_require__(7);
|
|
|
7092
7094
|
module.exports = fails(function () {
|
|
7093
7095
|
if (typeof ArrayBuffer == 'function') {
|
|
7094
7096
|
var buffer = new ArrayBuffer(8);
|
|
7095
|
-
// eslint-disable-next-line es
|
|
7097
|
+
// eslint-disable-next-line es/no-object-isextensible, es/no-object-defineproperty -- safe
|
|
7096
7098
|
if (Object.isExtensible(buffer)) Object.defineProperty(buffer, 'a', { value: 8 });
|
|
7097
7099
|
}
|
|
7098
7100
|
});
|
|
@@ -7105,7 +7107,7 @@ module.exports = fails(function () {
|
|
|
7105
7107
|
var fails = __webpack_require__(7);
|
|
7106
7108
|
|
|
7107
7109
|
module.exports = !fails(function () {
|
|
7108
|
-
// eslint-disable-next-line es
|
|
7110
|
+
// eslint-disable-next-line es/no-object-isextensible, es/no-object-preventextensions -- required for testing
|
|
7109
7111
|
return Object.isExtensible(Object.preventExtensions({}));
|
|
7110
7112
|
});
|
|
7111
7113
|
|
|
@@ -7330,7 +7332,7 @@ module.exports = {
|
|
|
7330
7332
|
var $ = __webpack_require__(3);
|
|
7331
7333
|
var log1p = __webpack_require__(236);
|
|
7332
7334
|
|
|
7333
|
-
// eslint-disable-next-line es
|
|
7335
|
+
// eslint-disable-next-line es/no-math-acosh -- required for testing
|
|
7334
7336
|
var $acosh = Math.acosh;
|
|
7335
7337
|
var log = Math.log;
|
|
7336
7338
|
var sqrt = Math.sqrt;
|
|
@@ -7362,7 +7364,7 @@ var log = Math.log;
|
|
|
7362
7364
|
|
|
7363
7365
|
// `Math.log1p` method implementation
|
|
7364
7366
|
// https://tc39.es/ecma262/#sec-math.log1p
|
|
7365
|
-
// eslint-disable-next-line es
|
|
7367
|
+
// eslint-disable-next-line es/no-math-log1p -- safe
|
|
7366
7368
|
module.exports = Math.log1p || function log1p(x) {
|
|
7367
7369
|
var n = +x;
|
|
7368
7370
|
return n > -1e-8 && n < 1e-8 ? n - n * n / 2 : log(1 + n);
|
|
@@ -7375,7 +7377,7 @@ module.exports = Math.log1p || function log1p(x) {
|
|
|
7375
7377
|
|
|
7376
7378
|
var $ = __webpack_require__(3);
|
|
7377
7379
|
|
|
7378
|
-
// eslint-disable-next-line es
|
|
7380
|
+
// eslint-disable-next-line es/no-math-asinh -- required for testing
|
|
7379
7381
|
var $asinh = Math.asinh;
|
|
7380
7382
|
var log = Math.log;
|
|
7381
7383
|
var sqrt = Math.sqrt;
|
|
@@ -7399,7 +7401,7 @@ $({ target: 'Math', stat: true, forced: !($asinh && 1 / $asinh(0) > 0) }, {
|
|
|
7399
7401
|
|
|
7400
7402
|
var $ = __webpack_require__(3);
|
|
7401
7403
|
|
|
7402
|
-
// eslint-disable-next-line es
|
|
7404
|
+
// eslint-disable-next-line es/no-math-atanh -- required for testing
|
|
7403
7405
|
var $atanh = Math.atanh;
|
|
7404
7406
|
var log = Math.log;
|
|
7405
7407
|
|
|
@@ -7440,7 +7442,7 @@ $({ target: 'Math', stat: true }, {
|
|
|
7440
7442
|
|
|
7441
7443
|
// `Math.sign` method implementation
|
|
7442
7444
|
// https://tc39.es/ecma262/#sec-math.sign
|
|
7443
|
-
// eslint-disable-next-line es
|
|
7445
|
+
// eslint-disable-next-line es/no-math-sign -- safe
|
|
7444
7446
|
module.exports = Math.sign || function sign(x) {
|
|
7445
7447
|
var n = +x;
|
|
7446
7448
|
// eslint-disable-next-line no-self-compare -- NaN check
|
|
@@ -7475,7 +7477,7 @@ $({ target: 'Math', stat: true }, {
|
|
|
7475
7477
|
var $ = __webpack_require__(3);
|
|
7476
7478
|
var expm1 = __webpack_require__(243);
|
|
7477
7479
|
|
|
7478
|
-
// eslint-disable-next-line es
|
|
7480
|
+
// eslint-disable-next-line es/no-math-cosh -- required for testing
|
|
7479
7481
|
var $cosh = Math.cosh;
|
|
7480
7482
|
var abs = Math.abs;
|
|
7481
7483
|
var E = Math.E;
|
|
@@ -7494,7 +7496,7 @@ $({ target: 'Math', stat: true, forced: !$cosh || $cosh(710) === Infinity }, {
|
|
|
7494
7496
|
/* 243 */
|
|
7495
7497
|
/***/ (function(module, exports) {
|
|
7496
7498
|
|
|
7497
|
-
// eslint-disable-next-line es
|
|
7499
|
+
// eslint-disable-next-line es/no-math-expm1 -- safe
|
|
7498
7500
|
var $expm1 = Math.expm1;
|
|
7499
7501
|
var exp = Math.exp;
|
|
7500
7502
|
|
|
@@ -7520,7 +7522,7 @@ var expm1 = __webpack_require__(243);
|
|
|
7520
7522
|
|
|
7521
7523
|
// `Math.expm1` method
|
|
7522
7524
|
// https://tc39.es/ecma262/#sec-math.expm1
|
|
7523
|
-
// eslint-disable-next-line es
|
|
7525
|
+
// eslint-disable-next-line es/no-math-expm1 -- required for testing
|
|
7524
7526
|
$({ target: 'Math', stat: true, forced: expm1 != Math.expm1 }, { expm1: expm1 });
|
|
7525
7527
|
|
|
7526
7528
|
|
|
@@ -7555,7 +7557,7 @@ var roundTiesToEven = function (n) {
|
|
|
7555
7557
|
|
|
7556
7558
|
// `Math.fround` method implementation
|
|
7557
7559
|
// https://tc39.es/ecma262/#sec-math.fround
|
|
7558
|
-
// eslint-disable-next-line es
|
|
7560
|
+
// eslint-disable-next-line es/no-math-fround -- safe
|
|
7559
7561
|
module.exports = Math.fround || function fround(x) {
|
|
7560
7562
|
var n = +x;
|
|
7561
7563
|
var $abs = abs(n);
|
|
@@ -7576,7 +7578,7 @@ module.exports = Math.fround || function fround(x) {
|
|
|
7576
7578
|
|
|
7577
7579
|
var $ = __webpack_require__(3);
|
|
7578
7580
|
|
|
7579
|
-
// eslint-disable-next-line es
|
|
7581
|
+
// eslint-disable-next-line es/no-math-hypot -- required for testing
|
|
7580
7582
|
var $hypot = Math.hypot;
|
|
7581
7583
|
var abs = Math.abs;
|
|
7582
7584
|
var sqrt = Math.sqrt;
|
|
@@ -7618,7 +7620,7 @@ $({ target: 'Math', stat: true, arity: 2, forced: BUGGY }, {
|
|
|
7618
7620
|
var $ = __webpack_require__(3);
|
|
7619
7621
|
var fails = __webpack_require__(7);
|
|
7620
7622
|
|
|
7621
|
-
// eslint-disable-next-line es
|
|
7623
|
+
// eslint-disable-next-line es/no-math-imul -- required for testing
|
|
7622
7624
|
var $imul = Math.imul;
|
|
7623
7625
|
|
|
7624
7626
|
var FORCED = fails(function () {
|
|
@@ -7661,7 +7663,7 @@ $({ target: 'Math', stat: true }, {
|
|
|
7661
7663
|
var log = Math.log;
|
|
7662
7664
|
var LOG10E = Math.LOG10E;
|
|
7663
7665
|
|
|
7664
|
-
// eslint-disable-next-line es
|
|
7666
|
+
// eslint-disable-next-line es/no-math-log10 -- safe
|
|
7665
7667
|
module.exports = Math.log10 || function log10(x) {
|
|
7666
7668
|
return log(x) * LOG10E;
|
|
7667
7669
|
};
|
|
@@ -7724,7 +7726,7 @@ var exp = Math.exp;
|
|
|
7724
7726
|
var E = Math.E;
|
|
7725
7727
|
|
|
7726
7728
|
var FORCED = fails(function () {
|
|
7727
|
-
// eslint-disable-next-line es
|
|
7729
|
+
// eslint-disable-next-line es/no-math-sinh -- required for testing
|
|
7728
7730
|
return Math.sinh(-2e-17) != -2e-17;
|
|
7729
7731
|
});
|
|
7730
7732
|
|
|
@@ -7972,7 +7974,7 @@ var globalIsFinite = global.isFinite;
|
|
|
7972
7974
|
|
|
7973
7975
|
// `Number.isFinite` method
|
|
7974
7976
|
// https://tc39.es/ecma262/#sec-number.isfinite
|
|
7975
|
-
// eslint-disable-next-line es
|
|
7977
|
+
// eslint-disable-next-line es/no-number-isfinite -- safe
|
|
7976
7978
|
module.exports = Number.isFinite || function isFinite(it) {
|
|
7977
7979
|
return typeof it == 'number' && globalIsFinite(it);
|
|
7978
7980
|
};
|
|
@@ -8002,7 +8004,7 @@ var floor = Math.floor;
|
|
|
8002
8004
|
|
|
8003
8005
|
// `IsIntegralNumber` abstract operation
|
|
8004
8006
|
// https://tc39.es/ecma262/#sec-isintegralnumber
|
|
8005
|
-
// eslint-disable-next-line es
|
|
8007
|
+
// eslint-disable-next-line es/no-number-isinteger -- safe
|
|
8006
8008
|
module.exports = Number.isInteger || function isInteger(it) {
|
|
8007
8009
|
return !isObject(it) && isFinite(it) && floor(it) === it;
|
|
8008
8010
|
};
|
|
@@ -8077,7 +8079,7 @@ var parseFloat = __webpack_require__(272);
|
|
|
8077
8079
|
|
|
8078
8080
|
// `Number.parseFloat` method
|
|
8079
8081
|
// https://tc39.es/ecma262/#sec-number.parseFloat
|
|
8080
|
-
// eslint-disable-next-line es
|
|
8082
|
+
// eslint-disable-next-line es/no-number-parsefloat -- required for testing
|
|
8081
8083
|
$({ target: 'Number', stat: true, forced: Number.parseFloat != parseFloat }, {
|
|
8082
8084
|
parseFloat: parseFloat
|
|
8083
8085
|
});
|
|
@@ -8120,7 +8122,7 @@ var parseInt = __webpack_require__(274);
|
|
|
8120
8122
|
|
|
8121
8123
|
// `Number.parseInt` method
|
|
8122
8124
|
// https://tc39.es/ecma262/#sec-number.parseint
|
|
8123
|
-
// eslint-disable-next-line es
|
|
8125
|
+
// eslint-disable-next-line es/no-number-parseint -- required for testing
|
|
8124
8126
|
$({ target: 'Number', stat: true, forced: Number.parseInt != parseInt }, {
|
|
8125
8127
|
parseInt: parseInt
|
|
8126
8128
|
});
|
|
@@ -8439,7 +8441,7 @@ var assign = __webpack_require__(279);
|
|
|
8439
8441
|
|
|
8440
8442
|
// `Object.assign` method
|
|
8441
8443
|
// https://tc39.es/ecma262/#sec-object.assign
|
|
8442
|
-
// eslint-disable-next-line es
|
|
8444
|
+
// eslint-disable-next-line es/no-object-assign -- required for testing
|
|
8443
8445
|
$({ target: 'Object', stat: true, arity: 2, forced: Object.assign !== assign }, {
|
|
8444
8446
|
assign: assign
|
|
8445
8447
|
});
|
|
@@ -8461,9 +8463,9 @@ var propertyIsEnumerableModule = __webpack_require__(10);
|
|
|
8461
8463
|
var toObject = __webpack_require__(40);
|
|
8462
8464
|
var IndexedObject = __webpack_require__(13);
|
|
8463
8465
|
|
|
8464
|
-
// eslint-disable-next-line es
|
|
8466
|
+
// eslint-disable-next-line es/no-object-assign -- safe
|
|
8465
8467
|
var $assign = Object.assign;
|
|
8466
|
-
// eslint-disable-next-line es
|
|
8468
|
+
// eslint-disable-next-line es/no-object-defineproperty -- required for testing
|
|
8467
8469
|
var defineProperty = Object.defineProperty;
|
|
8468
8470
|
var concat = uncurryThis([].concat);
|
|
8469
8471
|
|
|
@@ -8483,7 +8485,7 @@ module.exports = !$assign || fails(function () {
|
|
|
8483
8485
|
// should work with symbols and should have deterministic property order (V8 bug)
|
|
8484
8486
|
var A = {};
|
|
8485
8487
|
var B = {};
|
|
8486
|
-
// eslint-disable-next-line es
|
|
8488
|
+
// eslint-disable-next-line es/no-symbol -- safe
|
|
8487
8489
|
var symbol = Symbol();
|
|
8488
8490
|
var alphabet = 'abcdefghijklmnopqrst';
|
|
8489
8491
|
A[symbol] = 7;
|
|
@@ -8567,7 +8569,7 @@ module.exports = IS_PURE || !fails(function () {
|
|
|
8567
8569
|
if (WEBKIT && WEBKIT < 535) return;
|
|
8568
8570
|
var key = Math.random();
|
|
8569
8571
|
// In FF throws only define methods
|
|
8570
|
-
// eslint-disable-next-line no-undef, no-useless-call, es
|
|
8572
|
+
// eslint-disable-next-line no-undef, no-useless-call, es/no-legacy-object-prototype-accessor-methods -- required for testing
|
|
8571
8573
|
__defineSetter__.call(null, key, function () { /* empty */ });
|
|
8572
8574
|
delete global[key];
|
|
8573
8575
|
});
|
|
@@ -8583,7 +8585,7 @@ var defineProperties = __webpack_require__(73).f;
|
|
|
8583
8585
|
|
|
8584
8586
|
// `Object.defineProperties` method
|
|
8585
8587
|
// https://tc39.es/ecma262/#sec-object.defineproperties
|
|
8586
|
-
// eslint-disable-next-line es
|
|
8588
|
+
// eslint-disable-next-line es/no-object-defineproperties -- safe
|
|
8587
8589
|
$({ target: 'Object', stat: true, forced: Object.defineProperties !== defineProperties, sham: !DESCRIPTORS }, {
|
|
8588
8590
|
defineProperties: defineProperties
|
|
8589
8591
|
});
|
|
@@ -8599,7 +8601,7 @@ var defineProperty = __webpack_require__(45).f;
|
|
|
8599
8601
|
|
|
8600
8602
|
// `Object.defineProperty` method
|
|
8601
8603
|
// https://tc39.es/ecma262/#sec-object.defineproperty
|
|
8602
|
-
// eslint-disable-next-line es
|
|
8604
|
+
// eslint-disable-next-line es/no-object-defineproperty -- safe
|
|
8603
8605
|
$({ target: 'Object', stat: true, forced: Object.defineProperty !== defineProperty, sham: !DESCRIPTORS }, {
|
|
8604
8606
|
defineProperty: defineProperty
|
|
8605
8607
|
});
|
|
@@ -8697,7 +8699,7 @@ var fails = __webpack_require__(7);
|
|
|
8697
8699
|
var isObject = __webpack_require__(20);
|
|
8698
8700
|
var onFreeze = __webpack_require__(230).onFreeze;
|
|
8699
8701
|
|
|
8700
|
-
// eslint-disable-next-line es
|
|
8702
|
+
// eslint-disable-next-line es/no-object-freeze -- safe
|
|
8701
8703
|
var $freeze = Object.freeze;
|
|
8702
8704
|
var FAILS_ON_PRIMITIVES = fails(function () { $freeze(1); });
|
|
8703
8705
|
|
|
@@ -8791,7 +8793,7 @@ var $ = __webpack_require__(3);
|
|
|
8791
8793
|
var fails = __webpack_require__(7);
|
|
8792
8794
|
var getOwnPropertyNames = __webpack_require__(76).f;
|
|
8793
8795
|
|
|
8794
|
-
// eslint-disable-next-line es
|
|
8796
|
+
// eslint-disable-next-line es/no-object-getownpropertynames -- required for testing
|
|
8795
8797
|
var FAILS_ON_PRIMITIVES = fails(function () { return !Object.getOwnPropertyNames(1); });
|
|
8796
8798
|
|
|
8797
8799
|
// `Object.getOwnPropertyNames` method
|
|
@@ -8857,7 +8859,7 @@ $({ target: 'Object', stat: true }, {
|
|
|
8857
8859
|
|
|
8858
8860
|
// `SameValue` abstract operation
|
|
8859
8861
|
// https://tc39.es/ecma262/#sec-samevalue
|
|
8860
|
-
// eslint-disable-next-line es
|
|
8862
|
+
// eslint-disable-next-line es/no-object-is -- safe
|
|
8861
8863
|
module.exports = Object.is || function is(x, y) {
|
|
8862
8864
|
// eslint-disable-next-line no-self-compare -- NaN check
|
|
8863
8865
|
return x === y ? x !== 0 || 1 / x === 1 / y : x != x && y != y;
|
|
@@ -8873,7 +8875,7 @@ var $isExtensible = __webpack_require__(231);
|
|
|
8873
8875
|
|
|
8874
8876
|
// `Object.isExtensible` method
|
|
8875
8877
|
// https://tc39.es/ecma262/#sec-object.isextensible
|
|
8876
|
-
// eslint-disable-next-line es
|
|
8878
|
+
// eslint-disable-next-line es/no-object-isextensible -- safe
|
|
8877
8879
|
$({ target: 'Object', stat: true, forced: Object.isExtensible !== $isExtensible }, {
|
|
8878
8880
|
isExtensible: $isExtensible
|
|
8879
8881
|
});
|
|
@@ -8889,7 +8891,7 @@ var isObject = __webpack_require__(20);
|
|
|
8889
8891
|
var classof = __webpack_require__(15);
|
|
8890
8892
|
var ARRAY_BUFFER_NON_EXTENSIBLE = __webpack_require__(232);
|
|
8891
8893
|
|
|
8892
|
-
// eslint-disable-next-line es
|
|
8894
|
+
// eslint-disable-next-line es/no-object-isfrozen -- safe
|
|
8893
8895
|
var $isFrozen = Object.isFrozen;
|
|
8894
8896
|
var FAILS_ON_PRIMITIVES = fails(function () { $isFrozen(1); });
|
|
8895
8897
|
|
|
@@ -8914,7 +8916,7 @@ var isObject = __webpack_require__(20);
|
|
|
8914
8916
|
var classof = __webpack_require__(15);
|
|
8915
8917
|
var ARRAY_BUFFER_NON_EXTENSIBLE = __webpack_require__(232);
|
|
8916
8918
|
|
|
8917
|
-
// eslint-disable-next-line es
|
|
8919
|
+
// eslint-disable-next-line es/no-object-issealed -- safe
|
|
8918
8920
|
var $isSealed = Object.isSealed;
|
|
8919
8921
|
var FAILS_ON_PRIMITIVES = fails(function () { $isSealed(1); });
|
|
8920
8922
|
|
|
@@ -9019,7 +9021,7 @@ var onFreeze = __webpack_require__(230).onFreeze;
|
|
|
9019
9021
|
var FREEZING = __webpack_require__(233);
|
|
9020
9022
|
var fails = __webpack_require__(7);
|
|
9021
9023
|
|
|
9022
|
-
// eslint-disable-next-line es
|
|
9024
|
+
// eslint-disable-next-line es/no-object-preventextensions -- safe
|
|
9023
9025
|
var $preventExtensions = Object.preventExtensions;
|
|
9024
9026
|
var FAILS_ON_PRIMITIVES = fails(function () { $preventExtensions(1); });
|
|
9025
9027
|
|
|
@@ -9044,9 +9046,9 @@ var isObject = __webpack_require__(20);
|
|
|
9044
9046
|
var toObject = __webpack_require__(40);
|
|
9045
9047
|
var requireObjectCoercible = __webpack_require__(16);
|
|
9046
9048
|
|
|
9047
|
-
// eslint-disable-next-line es
|
|
9049
|
+
// eslint-disable-next-line es/no-object-getprototypeof -- safe
|
|
9048
9050
|
var getPrototypeOf = Object.getPrototypeOf;
|
|
9049
|
-
// eslint-disable-next-line es
|
|
9051
|
+
// eslint-disable-next-line es/no-object-setprototypeof -- safe
|
|
9050
9052
|
var setPrototypeOf = Object.setPrototypeOf;
|
|
9051
9053
|
var ObjectPrototype = Object.prototype;
|
|
9052
9054
|
var PROTO = '__proto__';
|
|
@@ -9092,7 +9094,7 @@ var onFreeze = __webpack_require__(230).onFreeze;
|
|
|
9092
9094
|
var FREEZING = __webpack_require__(233);
|
|
9093
9095
|
var fails = __webpack_require__(7);
|
|
9094
9096
|
|
|
9095
|
-
// eslint-disable-next-line es
|
|
9097
|
+
// eslint-disable-next-line es/no-object-seal -- safe
|
|
9096
9098
|
var $seal = Object.seal;
|
|
9097
9099
|
var FAILS_ON_PRIMITIVES = fails(function () { $seal(1); });
|
|
9098
9100
|
|
|
@@ -9529,11 +9531,11 @@ var String = global.String;
|
|
|
9529
9531
|
var counter = 0;
|
|
9530
9532
|
var queue = {};
|
|
9531
9533
|
var ONREADYSTATECHANGE = 'onreadystatechange';
|
|
9532
|
-
var location, defer, channel, port;
|
|
9534
|
+
var $location, defer, channel, port;
|
|
9533
9535
|
|
|
9534
9536
|
try {
|
|
9535
9537
|
// Deno throws a ReferenceError on `location` access without `--location` flag
|
|
9536
|
-
location = global.location;
|
|
9538
|
+
$location = global.location;
|
|
9537
9539
|
} catch (error) { /* empty */ }
|
|
9538
9540
|
|
|
9539
9541
|
var run = function (id) {
|
|
@@ -9556,7 +9558,7 @@ var listener = function (event) {
|
|
|
9556
9558
|
|
|
9557
9559
|
var post = function (id) {
|
|
9558
9560
|
// old engines have not location.origin
|
|
9559
|
-
global.postMessage(String(id), location.protocol + '//' + location.host);
|
|
9561
|
+
global.postMessage(String(id), $location.protocol + '//' + $location.host);
|
|
9560
9562
|
};
|
|
9561
9563
|
|
|
9562
9564
|
// Node.js 0.9+ & IE10+ has setImmediate, otherwise:
|
|
@@ -9597,7 +9599,7 @@ if (!set || !clear) {
|
|
|
9597
9599
|
global.addEventListener &&
|
|
9598
9600
|
isCallable(global.postMessage) &&
|
|
9599
9601
|
!global.importScripts &&
|
|
9600
|
-
location && location.protocol !== 'file:' &&
|
|
9602
|
+
$location && $location.protocol !== 'file:' &&
|
|
9601
9603
|
!fails(post)
|
|
9602
9604
|
) {
|
|
9603
9605
|
defer = post;
|
|
@@ -10277,7 +10279,7 @@ var fails = __webpack_require__(7);
|
|
|
10277
10279
|
|
|
10278
10280
|
// MS Edge argumentsList argument is optional
|
|
10279
10281
|
var OPTIONAL_ARGUMENTS_LIST = !fails(function () {
|
|
10280
|
-
// eslint-disable-next-line es
|
|
10282
|
+
// eslint-disable-next-line es/no-reflect -- required for testing
|
|
10281
10283
|
Reflect.apply(function () { /* empty */ });
|
|
10282
10284
|
});
|
|
10283
10285
|
|
|
@@ -10365,7 +10367,7 @@ var fails = __webpack_require__(7);
|
|
|
10365
10367
|
|
|
10366
10368
|
// MS Edge has broken Reflect.defineProperty - throwing instead of returning false
|
|
10367
10369
|
var ERROR_INSTEAD_OF_FALSE = fails(function () {
|
|
10368
|
-
// eslint-disable-next-line es
|
|
10370
|
+
// eslint-disable-next-line es/no-reflect -- required for testing
|
|
10369
10371
|
Reflect.defineProperty(definePropertyModule.f({}, 1, { value: 1 }), 1, { value: 2 });
|
|
10370
10372
|
});
|
|
10371
10373
|
|
|
@@ -10599,7 +10601,7 @@ function set(target, propertyKey, V /* , receiver */) {
|
|
|
10599
10601
|
var MS_EDGE_BUG = fails(function () {
|
|
10600
10602
|
var Constructor = function () { /* empty */ };
|
|
10601
10603
|
var object = definePropertyModule.f(new Constructor(), 'a', { configurable: true });
|
|
10602
|
-
// eslint-disable-next-line es
|
|
10604
|
+
// eslint-disable-next-line es/no-reflect -- required for testing
|
|
10603
10605
|
return Reflect.set(Constructor.prototype, 'a', 1, object) !== false;
|
|
10604
10606
|
});
|
|
10605
10607
|
|
|
@@ -11173,7 +11175,7 @@ var FORCED = DESCRIPTORS && fails(function () {
|
|
|
11173
11175
|
var expected = INDICES_SUPPORT ? 'dgimsy' : 'gimsy';
|
|
11174
11176
|
|
|
11175
11177
|
var addGetter = function (key, chr) {
|
|
11176
|
-
// eslint-disable-next-line es
|
|
11178
|
+
// eslint-disable-next-line es/no-object-defineproperty -- safe
|
|
11177
11179
|
Object.defineProperty(O, key, { get: function () {
|
|
11178
11180
|
calls += chr;
|
|
11179
11181
|
return true;
|
|
@@ -11192,7 +11194,7 @@ var FORCED = DESCRIPTORS && fails(function () {
|
|
|
11192
11194
|
|
|
11193
11195
|
for (var key in pairs) addGetter(key, pairs[key]);
|
|
11194
11196
|
|
|
11195
|
-
// eslint-disable-next-line es
|
|
11197
|
+
// eslint-disable-next-line es/no-object-getownpropertydescriptor -- safe
|
|
11196
11198
|
var result = Object.getOwnPropertyDescriptor(RegExpPrototype, 'flags').get.call(O);
|
|
11197
11199
|
|
|
11198
11200
|
return result !== expected || calls !== expected;
|
|
@@ -11352,7 +11354,7 @@ var fails = __webpack_require__(7);
|
|
|
11352
11354
|
var charAt = uncurryThis(''.charAt);
|
|
11353
11355
|
|
|
11354
11356
|
var FORCED = fails(function () {
|
|
11355
|
-
// eslint-disable-next-line es
|
|
11357
|
+
// eslint-disable-next-line es/no-array-string-prototype-at -- safe
|
|
11356
11358
|
return '𠮷'.at(-2) !== '\uD842';
|
|
11357
11359
|
});
|
|
11358
11360
|
|
|
@@ -11445,7 +11447,7 @@ var requireObjectCoercible = __webpack_require__(16);
|
|
|
11445
11447
|
var correctIsRegExpLogic = __webpack_require__(375);
|
|
11446
11448
|
var IS_PURE = __webpack_require__(36);
|
|
11447
11449
|
|
|
11448
|
-
// eslint-disable-next-line es
|
|
11450
|
+
// eslint-disable-next-line es/no-string-prototype-endswith -- safe
|
|
11449
11451
|
var nativeEndsWith = uncurryThis(''.endsWith);
|
|
11450
11452
|
var slice = uncurryThis(''.slice);
|
|
11451
11453
|
var min = Math.min;
|
|
@@ -11520,7 +11522,7 @@ var toAbsoluteIndex = __webpack_require__(61);
|
|
|
11520
11522
|
|
|
11521
11523
|
var $RangeError = RangeError;
|
|
11522
11524
|
var fromCharCode = String.fromCharCode;
|
|
11523
|
-
// eslint-disable-next-line es
|
|
11525
|
+
// eslint-disable-next-line es/no-string-fromcodepoint -- required for testing
|
|
11524
11526
|
var $fromCodePoint = String.fromCodePoint;
|
|
11525
11527
|
var join = uncurryThis([].join);
|
|
11526
11528
|
|
|
@@ -11796,7 +11798,7 @@ module.exports = function (R, S) {
|
|
|
11796
11798
|
|
|
11797
11799
|
"use strict";
|
|
11798
11800
|
|
|
11799
|
-
/* eslint-disable es
|
|
11801
|
+
/* eslint-disable es/no-string-prototype-matchall -- safe */
|
|
11800
11802
|
var $ = __webpack_require__(3);
|
|
11801
11803
|
var call = __webpack_require__(8);
|
|
11802
11804
|
var uncurryThis = __webpack_require__(14);
|
|
@@ -12490,7 +12492,7 @@ var requireObjectCoercible = __webpack_require__(16);
|
|
|
12490
12492
|
var correctIsRegExpLogic = __webpack_require__(375);
|
|
12491
12493
|
var IS_PURE = __webpack_require__(36);
|
|
12492
12494
|
|
|
12493
|
-
// eslint-disable-next-line es
|
|
12495
|
+
// eslint-disable-next-line es/no-string-prototype-startswith -- safe
|
|
12494
12496
|
var nativeStartsWith = uncurryThis(''.startsWith);
|
|
12495
12497
|
var stringSlice = uncurryThis(''.slice);
|
|
12496
12498
|
var min = Math.min;
|
|
@@ -12533,7 +12535,7 @@ var stringSlice = uncurryThis(''.slice);
|
|
|
12533
12535
|
var max = Math.max;
|
|
12534
12536
|
var min = Math.min;
|
|
12535
12537
|
|
|
12536
|
-
// eslint-disable-next-line unicorn/prefer-string-slice, es
|
|
12538
|
+
// eslint-disable-next-line unicorn/prefer-string-slice, es/no-string-prototype-substr -- required for testing
|
|
12537
12539
|
var FORCED = !''.substr || 'ab'.substr(-1) !== 'b';
|
|
12538
12540
|
|
|
12539
12541
|
// `String.prototype.substr` method
|
|
@@ -12605,7 +12607,7 @@ var trimEnd = __webpack_require__(400);
|
|
|
12605
12607
|
|
|
12606
12608
|
// `String.prototype.trimEnd` method
|
|
12607
12609
|
// https://tc39.es/ecma262/#sec-string.prototype.trimend
|
|
12608
|
-
// eslint-disable-next-line es
|
|
12610
|
+
// eslint-disable-next-line es/no-string-prototype-trimstart-trimend -- safe
|
|
12609
12611
|
$({ target: 'String', proto: true, name: 'trimEnd', forced: ''.trimEnd !== trimEnd }, {
|
|
12610
12612
|
trimEnd: trimEnd
|
|
12611
12613
|
});
|
|
@@ -12620,7 +12622,7 @@ var trimEnd = __webpack_require__(400);
|
|
|
12620
12622
|
|
|
12621
12623
|
// `String.prototype.trimRight` method
|
|
12622
12624
|
// https://tc39.es/ecma262/#sec-string.prototype.trimend
|
|
12623
|
-
// eslint-disable-next-line es
|
|
12625
|
+
// eslint-disable-next-line es/no-string-prototype-trimleft-trimright -- safe
|
|
12624
12626
|
$({ target: 'String', proto: true, name: 'trimEnd', forced: ''.trimRight !== trimEnd }, {
|
|
12625
12627
|
trimRight: trimEnd
|
|
12626
12628
|
});
|
|
@@ -12640,7 +12642,7 @@ var forcedStringTrimMethod = __webpack_require__(397);
|
|
|
12640
12642
|
// https://tc39.es/ecma262/#String.prototype.trimright
|
|
12641
12643
|
module.exports = forcedStringTrimMethod('trimEnd') ? function trimEnd() {
|
|
12642
12644
|
return $trimEnd(this);
|
|
12643
|
-
// eslint-disable-next-line es
|
|
12645
|
+
// eslint-disable-next-line es/no-string-prototype-trimstart-trimend -- safe
|
|
12644
12646
|
} : ''.trimEnd;
|
|
12645
12647
|
|
|
12646
12648
|
|
|
@@ -12655,7 +12657,7 @@ var trimStart = __webpack_require__(403);
|
|
|
12655
12657
|
|
|
12656
12658
|
// `String.prototype.trimStart` method
|
|
12657
12659
|
// https://tc39.es/ecma262/#sec-string.prototype.trimstart
|
|
12658
|
-
// eslint-disable-next-line es
|
|
12660
|
+
// eslint-disable-next-line es/no-string-prototype-trimstart-trimend -- safe
|
|
12659
12661
|
$({ target: 'String', proto: true, name: 'trimStart', forced: ''.trimStart !== trimStart }, {
|
|
12660
12662
|
trimStart: trimStart
|
|
12661
12663
|
});
|
|
@@ -12670,7 +12672,7 @@ var trimStart = __webpack_require__(403);
|
|
|
12670
12672
|
|
|
12671
12673
|
// `String.prototype.trimLeft` method
|
|
12672
12674
|
// https://tc39.es/ecma262/#sec-string.prototype.trimleft
|
|
12673
|
-
// eslint-disable-next-line es
|
|
12675
|
+
// eslint-disable-next-line es/no-string-prototype-trimleft-trimright -- safe
|
|
12674
12676
|
$({ target: 'String', proto: true, name: 'trimStart', forced: ''.trimLeft !== trimStart }, {
|
|
12675
12677
|
trimLeft: trimStart
|
|
12676
12678
|
});
|
|
@@ -12690,7 +12692,7 @@ var forcedStringTrimMethod = __webpack_require__(397);
|
|
|
12690
12692
|
// https://tc39.es/ecma262/#String.prototype.trimleft
|
|
12691
12693
|
module.exports = forcedStringTrimMethod('trimStart') ? function trimStart() {
|
|
12692
12694
|
return $trimStart(this);
|
|
12693
|
-
// eslint-disable-next-line es
|
|
12695
|
+
// eslint-disable-next-line es/no-string-prototype-trimstart-trimend -- safe
|
|
12694
12696
|
} : ''.trimStart;
|
|
12695
12697
|
|
|
12696
12698
|
|
|
@@ -13374,7 +13376,7 @@ var $TypeError = TypeError;
|
|
|
13374
13376
|
module.exports = function (argument) {
|
|
13375
13377
|
var prim = toPrimitive(argument, 'number');
|
|
13376
13378
|
if (typeof prim == 'number') throw $TypeError("Can't convert number to bigint");
|
|
13377
|
-
// eslint-disable-next-line es
|
|
13379
|
+
// eslint-disable-next-line es/no-bigint -- safe
|
|
13378
13380
|
return BigInt(prim);
|
|
13379
13381
|
};
|
|
13380
13382
|
|
|
@@ -13584,7 +13586,7 @@ var slice = uncurryThis(''.slice);
|
|
|
13584
13586
|
// V8 ~ Chrome < 59, Safari < 14.1, FF < 55, Edge <=18
|
|
13585
13587
|
var CONVERSION_BUG = fails(function () {
|
|
13586
13588
|
var count = 0;
|
|
13587
|
-
// eslint-disable-next-line es
|
|
13589
|
+
// eslint-disable-next-line es/no-typed-arrays -- safe
|
|
13588
13590
|
new Int8Array(2).fill({ valueOf: function () { return count++; } });
|
|
13589
13591
|
return count !== 1;
|
|
13590
13592
|
});
|
|
@@ -14041,7 +14043,7 @@ var aTypedArray = ArrayBufferViewCore.aTypedArray;
|
|
|
14041
14043
|
var exportTypedArrayMethod = ArrayBufferViewCore.exportTypedArrayMethod;
|
|
14042
14044
|
|
|
14043
14045
|
var WORKS_WITH_OBJECTS_AND_GEERIC_ON_TYPED_ARRAYS = !fails(function () {
|
|
14044
|
-
// eslint-disable-next-line es
|
|
14046
|
+
// eslint-disable-next-line es/no-typed-arrays -- required for testing
|
|
14045
14047
|
var array = new Uint8ClampedArray(2);
|
|
14046
14048
|
call($set, array, { length: 1, 0: 3 }, 1);
|
|
14047
14049
|
return array[1] !== 3;
|
|
@@ -14085,7 +14087,7 @@ var aTypedArray = ArrayBufferViewCore.aTypedArray;
|
|
|
14085
14087
|
var exportTypedArrayMethod = ArrayBufferViewCore.exportTypedArrayMethod;
|
|
14086
14088
|
|
|
14087
14089
|
var FORCED = fails(function () {
|
|
14088
|
-
// eslint-disable-next-line es
|
|
14090
|
+
// eslint-disable-next-line es/no-typed-arrays -- required for testing
|
|
14089
14091
|
new Int8Array(1).slice();
|
|
14090
14092
|
});
|
|
14091
14093
|
|
|
@@ -15051,11 +15053,12 @@ var $ = __webpack_require__(3);
|
|
|
15051
15053
|
var arrayMethodIsStrict = __webpack_require__(143);
|
|
15052
15054
|
var addToUnscopables = __webpack_require__(135);
|
|
15053
15055
|
var $groupToMap = __webpack_require__(487);
|
|
15056
|
+
var IS_PURE = __webpack_require__(36);
|
|
15054
15057
|
|
|
15055
15058
|
// `Array.prototype.groupByToMap` method
|
|
15056
15059
|
// https://github.com/tc39/proposal-array-grouping
|
|
15057
15060
|
// https://bugs.webkit.org/show_bug.cgi?id=236541
|
|
15058
|
-
$({ target: 'Array', proto: true, name: 'groupToMap', forced: !arrayMethodIsStrict('groupByToMap') }, {
|
|
15061
|
+
$({ target: 'Array', proto: true, name: 'groupToMap', forced: IS_PURE || !arrayMethodIsStrict('groupByToMap') }, {
|
|
15059
15062
|
groupByToMap: $groupToMap
|
|
15060
15063
|
});
|
|
15061
15064
|
|
|
@@ -15108,10 +15111,11 @@ module.exports = function groupToMap(callbackfn /* , thisArg */) {
|
|
|
15108
15111
|
var $ = __webpack_require__(3);
|
|
15109
15112
|
var addToUnscopables = __webpack_require__(135);
|
|
15110
15113
|
var $groupToMap = __webpack_require__(487);
|
|
15114
|
+
var IS_PURE = __webpack_require__(36);
|
|
15111
15115
|
|
|
15112
15116
|
// `Array.prototype.groupToMap` method
|
|
15113
15117
|
// https://github.com/tc39/proposal-array-grouping
|
|
15114
|
-
$({ target: 'Array', proto: true }, {
|
|
15118
|
+
$({ target: 'Array', proto: true, forced: IS_PURE }, {
|
|
15115
15119
|
groupToMap: $groupToMap
|
|
15116
15120
|
});
|
|
15117
15121
|
|
|
@@ -15125,7 +15129,7 @@ addToUnscopables('groupToMap');
|
|
|
15125
15129
|
var $ = __webpack_require__(3);
|
|
15126
15130
|
var isArray = __webpack_require__(88);
|
|
15127
15131
|
|
|
15128
|
-
// eslint-disable-next-line es
|
|
15132
|
+
// eslint-disable-next-line es/no-object-isfrozen -- safe
|
|
15129
15133
|
var isFrozen = Object.isFrozen;
|
|
15130
15134
|
|
|
15131
15135
|
var isFrozenStringArray = function (array, allowUndefined) {
|
|
@@ -16217,7 +16221,7 @@ $({ target: 'AsyncIterator', proto: true, real: true, forced: true }, {
|
|
|
16217
16221
|
|
|
16218
16222
|
"use strict";
|
|
16219
16223
|
|
|
16220
|
-
/* eslint-disable es
|
|
16224
|
+
/* eslint-disable es/no-bigint -- safe */
|
|
16221
16225
|
var $ = __webpack_require__(3);
|
|
16222
16226
|
var NumericRangeIterator = __webpack_require__(520);
|
|
16223
16227
|
|
|
@@ -16456,7 +16460,7 @@ var inspectSource = __webpack_require__(51);
|
|
|
16456
16460
|
var hasOwn = __webpack_require__(39);
|
|
16457
16461
|
var DESCRIPTORS = __webpack_require__(6);
|
|
16458
16462
|
|
|
16459
|
-
// eslint-disable-next-line es
|
|
16463
|
+
// eslint-disable-next-line es/no-object-getownpropertydescriptor -- safe
|
|
16460
16464
|
var getOwnPropertyDescriptor = Object.getOwnPropertyDescriptor;
|
|
16461
16465
|
var classRegExp = /^\s*class\b/;
|
|
16462
16466
|
var exec = uncurryThis(classRegExp.exec);
|
|
@@ -17222,7 +17226,7 @@ $({ target: 'Map', proto: true, real: true, forced: true }, {
|
|
|
17222
17226
|
var call = __webpack_require__(8);
|
|
17223
17227
|
|
|
17224
17228
|
module.exports = function (it) {
|
|
17225
|
-
// eslint-disable-next-line es
|
|
17229
|
+
// eslint-disable-next-line es/no-map -- safe
|
|
17226
17230
|
return call(Map.prototype.entries, it);
|
|
17227
17231
|
};
|
|
17228
17232
|
|
|
@@ -18948,7 +18952,7 @@ $({ target: 'Set', proto: true, real: true, forced: true }, {
|
|
|
18948
18952
|
var call = __webpack_require__(8);
|
|
18949
18953
|
|
|
18950
18954
|
module.exports = function (it) {
|
|
18951
|
-
// eslint-disable-next-line es
|
|
18955
|
+
// eslint-disable-next-line es/no-set -- safe
|
|
18952
18956
|
return call(Set.prototype.values, it);
|
|
18953
18957
|
};
|
|
18954
18958
|
|
|
@@ -19697,7 +19701,7 @@ var min = Math.min;
|
|
|
19697
19701
|
|
|
19698
19702
|
// some early implementations, like WebKit, does not follow the final semantic
|
|
19699
19703
|
var PROPER_ORDER = !fails(function () {
|
|
19700
|
-
// eslint-disable-next-line es
|
|
19704
|
+
// eslint-disable-next-line es/no-typed-arrays -- required for testing
|
|
19701
19705
|
var array = new Int8Array([1]);
|
|
19702
19706
|
|
|
19703
19707
|
var spliced = array.toSpliced(1, 0, {
|
|
@@ -19789,7 +19793,7 @@ var exportTypedArrayMethod = ArrayBufferViewCore.exportTypedArrayMethod;
|
|
|
19789
19793
|
|
|
19790
19794
|
var PROPER_ORDER = !!function () {
|
|
19791
19795
|
try {
|
|
19792
|
-
// eslint-disable-next-line no-throw-literal, es
|
|
19796
|
+
// eslint-disable-next-line no-throw-literal, es/no-typed-arrays -- required for testing
|
|
19793
19797
|
new Int8Array(1)['with'](2, { valueOf: function () { throw 8; } });
|
|
19794
19798
|
} catch (error) {
|
|
19795
19799
|
// some early implementations, like WebKit, does not follow the final semantic
|
|
@@ -20233,7 +20237,7 @@ var NativeDOMException = getBuiltIn(DOM_EXCEPTION) || (function () {
|
|
|
20233
20237
|
try {
|
|
20234
20238
|
// NodeJS < 15.0 does not expose `MessageChannel` to global
|
|
20235
20239
|
var MessageChannel = getBuiltIn('MessageChannel') || tryNodeRequire('worker_threads').MessageChannel;
|
|
20236
|
-
// eslint-disable-next-line es
|
|
20240
|
+
// eslint-disable-next-line es/no-weak-map, unicorn/require-post-message-target-origin -- safe
|
|
20237
20241
|
new MessageChannel().port1.postMessage(new WeakMap());
|
|
20238
20242
|
} catch (error) {
|
|
20239
20243
|
if (error.name == DATA_CLONE_ERR && error.code == 25) return error.constructor;
|
|
@@ -20436,7 +20440,7 @@ var DOMExceptionPrototype = $DOMException.prototype = NativeDOMException.prototy
|
|
|
20436
20440
|
var ERROR_HAS_STACK = 'stack' in Error(DOM_EXCEPTION);
|
|
20437
20441
|
var DOM_EXCEPTION_HAS_STACK = 'stack' in new NativeDOMException(1, 2);
|
|
20438
20442
|
|
|
20439
|
-
// eslint-disable-next-line es
|
|
20443
|
+
// eslint-disable-next-line es/no-object-getownpropertydescriptor -- safe
|
|
20440
20444
|
var descriptor = NativeDOMException && DESCRIPTORS && Object.getOwnPropertyDescriptor(global, DOM_EXCEPTION);
|
|
20441
20445
|
|
|
20442
20446
|
// Bun ~ 0.1.1 DOMException have incorrect descriptor and we can't redefine it
|
|
@@ -20922,9 +20926,13 @@ var structuredCloneInternal = function (value, map) {
|
|
|
20922
20926
|
} catch (error) {
|
|
20923
20927
|
throwUnpolyfillable(type);
|
|
20924
20928
|
} break;
|
|
20929
|
+
case 'CropTarget':
|
|
20925
20930
|
case 'CryptoKey':
|
|
20926
|
-
case '
|
|
20931
|
+
case 'FileSystemDirectoryHandle':
|
|
20932
|
+
case 'FileSystemFileHandle':
|
|
20933
|
+
case 'FileSystemHandle':
|
|
20927
20934
|
case 'GPUCompilationInfo':
|
|
20935
|
+
case 'GPUCompilationMessage':
|
|
20928
20936
|
case 'ImageBitmap':
|
|
20929
20937
|
case 'RTCCertificate':
|
|
20930
20938
|
case 'WebAssembly.Module':
|
|
@@ -21023,6 +21031,7 @@ var tryToTransfer = function (rawTransfer, map) {
|
|
|
21023
21031
|
} catch (error) { /* empty */ }
|
|
21024
21032
|
break;
|
|
21025
21033
|
case 'ArrayBuffer':
|
|
21034
|
+
case 'MediaSourceHandle':
|
|
21026
21035
|
case 'MessagePort':
|
|
21027
21036
|
case 'OffscreenCanvas':
|
|
21028
21037
|
case 'ReadableStream':
|
|
@@ -21036,6 +21045,8 @@ var tryToTransfer = function (rawTransfer, map) {
|
|
|
21036
21045
|
}
|
|
21037
21046
|
};
|
|
21038
21047
|
|
|
21048
|
+
// `structuredClone` method
|
|
21049
|
+
// https://html.spec.whatwg.org/multipage/structured-data.html#dom-structuredclone
|
|
21039
21050
|
$({ global: true, enumerable: true, sham: !PROPER_TRANSFER, forced: FORCED_REPLACEMENT }, {
|
|
21040
21051
|
structuredClone: function structuredClone(value /* , { transfer } */) {
|
|
21041
21052
|
var options = validateArgumentsLength(arguments.length, 1) > 1 && !isNullOrUndefined(arguments[1]) ? anObject(arguments[1]) : undefined;
|
|
@@ -22454,7 +22465,7 @@ var URL_SEARCH_PARAMS_ITERATOR = URL_SEARCH_PARAMS + 'Iterator';
|
|
|
22454
22465
|
var setInternalState = InternalStateModule.set;
|
|
22455
22466
|
var getInternalParamsState = InternalStateModule.getterFor(URL_SEARCH_PARAMS);
|
|
22456
22467
|
var getInternalIteratorState = InternalStateModule.getterFor(URL_SEARCH_PARAMS_ITERATOR);
|
|
22457
|
-
// eslint-disable-next-line es
|
|
22468
|
+
// eslint-disable-next-line es/no-object-getownpropertydescriptor -- safe
|
|
22458
22469
|
var getOwnPropertyDescriptor = Object.getOwnPropertyDescriptor;
|
|
22459
22470
|
|
|
22460
22471
|
// Avoid NodeJS experimental warning
|