core-js-bundle 3.25.2 → 3.25.3
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 +127 -125
- package/minified.js +5 -5
- 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.3
|
|
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.3/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
|
|
@@ -1195,7 +1195,7 @@ module.exports = uncurryThis({}.isPrototypeOf);
|
|
|
1195
1195
|
/* 26 */
|
|
1196
1196
|
/***/ (function(module, exports, __webpack_require__) {
|
|
1197
1197
|
|
|
1198
|
-
/* eslint-disable es
|
|
1198
|
+
/* eslint-disable es/no-symbol -- required for testing */
|
|
1199
1199
|
var NATIVE_SYMBOL = __webpack_require__(27);
|
|
1200
1200
|
|
|
1201
1201
|
module.exports = NATIVE_SYMBOL
|
|
@@ -1207,11 +1207,11 @@ module.exports = NATIVE_SYMBOL
|
|
|
1207
1207
|
/* 27 */
|
|
1208
1208
|
/***/ (function(module, exports, __webpack_require__) {
|
|
1209
1209
|
|
|
1210
|
-
/* eslint-disable es
|
|
1210
|
+
/* eslint-disable es/no-symbol -- required for testing */
|
|
1211
1211
|
var V8_VERSION = __webpack_require__(28);
|
|
1212
1212
|
var fails = __webpack_require__(7);
|
|
1213
1213
|
|
|
1214
|
-
// eslint-disable-next-line es
|
|
1214
|
+
// eslint-disable-next-line es/no-object-getownpropertysymbols -- required for testing
|
|
1215
1215
|
module.exports = !!Object.getOwnPropertySymbols && !fails(function () {
|
|
1216
1216
|
var symbol = Symbol();
|
|
1217
1217
|
// Chrome 38 Symbol has incorrect toString conversion
|
|
@@ -1371,10 +1371,10 @@ var store = __webpack_require__(37);
|
|
|
1371
1371
|
(module.exports = function (key, value) {
|
|
1372
1372
|
return store[key] || (store[key] = value !== undefined ? value : {});
|
|
1373
1373
|
})('versions', []).push({
|
|
1374
|
-
version: '3.25.
|
|
1374
|
+
version: '3.25.3',
|
|
1375
1375
|
mode: IS_PURE ? 'pure' : 'global',
|
|
1376
1376
|
copyright: '© 2014-2022 Denis Pushkarev (zloirock.ru)',
|
|
1377
|
-
license: 'https://github.com/zloirock/core-js/blob/v3.25.
|
|
1377
|
+
license: 'https://github.com/zloirock/core-js/blob/v3.25.3/LICENSE',
|
|
1378
1378
|
source: 'https://github.com/zloirock/core-js'
|
|
1379
1379
|
});
|
|
1380
1380
|
|
|
@@ -1405,7 +1405,7 @@ module.exports = store;
|
|
|
1405
1405
|
|
|
1406
1406
|
var global = __webpack_require__(4);
|
|
1407
1407
|
|
|
1408
|
-
// eslint-disable-next-line es
|
|
1408
|
+
// eslint-disable-next-line es/no-object-defineproperty -- safe
|
|
1409
1409
|
var defineProperty = Object.defineProperty;
|
|
1410
1410
|
|
|
1411
1411
|
module.exports = function (key, value) {
|
|
@@ -1428,7 +1428,7 @@ var hasOwnProperty = uncurryThis({}.hasOwnProperty);
|
|
|
1428
1428
|
|
|
1429
1429
|
// `HasOwnProperty` abstract operation
|
|
1430
1430
|
// https://tc39.es/ecma262/#sec-hasownproperty
|
|
1431
|
-
// eslint-disable-next-line es
|
|
1431
|
+
// eslint-disable-next-line es/no-object-hasown -- safe
|
|
1432
1432
|
module.exports = Object.hasOwn || function hasOwn(it, key) {
|
|
1433
1433
|
return hasOwnProperty(toObject(it), key);
|
|
1434
1434
|
};
|
|
@@ -1474,7 +1474,7 @@ var createElement = __webpack_require__(43);
|
|
|
1474
1474
|
|
|
1475
1475
|
// Thanks to IE8 for its funny defineProperty
|
|
1476
1476
|
module.exports = !DESCRIPTORS && !fails(function () {
|
|
1477
|
-
// eslint-disable-next-line es
|
|
1477
|
+
// eslint-disable-next-line es/no-object-defineproperty -- required for testing
|
|
1478
1478
|
return Object.defineProperty(createElement('div'), 'a', {
|
|
1479
1479
|
get: function () { return 7; }
|
|
1480
1480
|
}).a != 7;
|
|
@@ -1524,9 +1524,9 @@ var anObject = __webpack_require__(47);
|
|
|
1524
1524
|
var toPropertyKey = __webpack_require__(18);
|
|
1525
1525
|
|
|
1526
1526
|
var $TypeError = TypeError;
|
|
1527
|
-
// eslint-disable-next-line es
|
|
1527
|
+
// eslint-disable-next-line es/no-object-defineproperty -- safe
|
|
1528
1528
|
var $defineProperty = Object.defineProperty;
|
|
1529
|
-
// eslint-disable-next-line es
|
|
1529
|
+
// eslint-disable-next-line es/no-object-getownpropertydescriptor -- safe
|
|
1530
1530
|
var $getOwnPropertyDescriptor = Object.getOwnPropertyDescriptor;
|
|
1531
1531
|
var ENUMERABLE = 'enumerable';
|
|
1532
1532
|
var CONFIGURABLE = 'configurable';
|
|
@@ -1572,7 +1572,7 @@ var fails = __webpack_require__(7);
|
|
|
1572
1572
|
// V8 ~ Chrome 36-
|
|
1573
1573
|
// https://bugs.chromium.org/p/v8/issues/detail?id=3334
|
|
1574
1574
|
module.exports = DESCRIPTORS && fails(function () {
|
|
1575
|
-
// eslint-disable-next-line es
|
|
1575
|
+
// eslint-disable-next-line es/no-object-defineproperty -- required for testing
|
|
1576
1576
|
return Object.defineProperty(function () { /* empty */ }, 'prototype', {
|
|
1577
1577
|
value: 42,
|
|
1578
1578
|
writable: false
|
|
@@ -1643,7 +1643,7 @@ var InternalStateModule = __webpack_require__(52);
|
|
|
1643
1643
|
|
|
1644
1644
|
var enforceInternalState = InternalStateModule.enforce;
|
|
1645
1645
|
var getInternalState = InternalStateModule.get;
|
|
1646
|
-
// eslint-disable-next-line es
|
|
1646
|
+
// eslint-disable-next-line es/no-object-defineproperty -- safe
|
|
1647
1647
|
var defineProperty = Object.defineProperty;
|
|
1648
1648
|
|
|
1649
1649
|
var CONFIGURABLE_LENGTH = DESCRIPTORS && !fails(function () {
|
|
@@ -1692,7 +1692,7 @@ var DESCRIPTORS = __webpack_require__(6);
|
|
|
1692
1692
|
var hasOwn = __webpack_require__(39);
|
|
1693
1693
|
|
|
1694
1694
|
var FunctionPrototype = Function.prototype;
|
|
1695
|
-
// eslint-disable-next-line es
|
|
1695
|
+
// eslint-disable-next-line es/no-object-getownpropertydescriptor -- safe
|
|
1696
1696
|
var getDescriptor = DESCRIPTORS && Object.getOwnPropertyDescriptor;
|
|
1697
1697
|
|
|
1698
1698
|
var EXISTS = hasOwn(FunctionPrototype, 'name');
|
|
@@ -1888,7 +1888,7 @@ var hiddenKeys = enumBugKeys.concat('length', 'prototype');
|
|
|
1888
1888
|
|
|
1889
1889
|
// `Object.getOwnPropertyNames` method
|
|
1890
1890
|
// https://tc39.es/ecma262/#sec-object.getownpropertynames
|
|
1891
|
-
// eslint-disable-next-line es
|
|
1891
|
+
// eslint-disable-next-line es/no-object-getownpropertynames -- safe
|
|
1892
1892
|
exports.f = Object.getOwnPropertyNames || function getOwnPropertyNames(O) {
|
|
1893
1893
|
return internalObjectKeys(O, hiddenKeys);
|
|
1894
1894
|
};
|
|
@@ -2000,7 +2000,7 @@ var floor = Math.floor;
|
|
|
2000
2000
|
|
|
2001
2001
|
// `Math.trunc` method
|
|
2002
2002
|
// https://tc39.es/ecma262/#sec-math.trunc
|
|
2003
|
-
// eslint-disable-next-line es
|
|
2003
|
+
// eslint-disable-next-line es/no-math-trunc -- safe
|
|
2004
2004
|
module.exports = Math.trunc || function trunc(x) {
|
|
2005
2005
|
var n = +x;
|
|
2006
2006
|
return (n > 0 ? floor : ceil)(n);
|
|
@@ -2055,7 +2055,7 @@ module.exports = [
|
|
|
2055
2055
|
/* 67 */
|
|
2056
2056
|
/***/ (function(module, exports) {
|
|
2057
2057
|
|
|
2058
|
-
// eslint-disable-next-line es
|
|
2058
|
+
// eslint-disable-next-line es/no-object-getownpropertysymbols -- safe
|
|
2059
2059
|
exports.f = Object.getOwnPropertySymbols;
|
|
2060
2060
|
|
|
2061
2061
|
|
|
@@ -2225,7 +2225,7 @@ hiddenKeys[IE_PROTO] = true;
|
|
|
2225
2225
|
|
|
2226
2226
|
// `Object.create` method
|
|
2227
2227
|
// https://tc39.es/ecma262/#sec-object.create
|
|
2228
|
-
// eslint-disable-next-line es
|
|
2228
|
+
// eslint-disable-next-line es/no-object-create -- safe
|
|
2229
2229
|
module.exports = Object.create || function create(O, Properties) {
|
|
2230
2230
|
var result;
|
|
2231
2231
|
if (O !== null) {
|
|
@@ -2252,7 +2252,7 @@ var objectKeys = __webpack_require__(74);
|
|
|
2252
2252
|
|
|
2253
2253
|
// `Object.defineProperties` method
|
|
2254
2254
|
// https://tc39.es/ecma262/#sec-object.defineproperties
|
|
2255
|
-
// eslint-disable-next-line es
|
|
2255
|
+
// eslint-disable-next-line es/no-object-defineproperties -- safe
|
|
2256
2256
|
exports.f = DESCRIPTORS && !V8_PROTOTYPE_DEFINE_BUG ? Object.defineProperties : function defineProperties(O, Properties) {
|
|
2257
2257
|
anObject(O);
|
|
2258
2258
|
var props = toIndexedObject(Properties);
|
|
@@ -2274,7 +2274,7 @@ var enumBugKeys = __webpack_require__(66);
|
|
|
2274
2274
|
|
|
2275
2275
|
// `Object.keys` method
|
|
2276
2276
|
// https://tc39.es/ecma262/#sec-object.keys
|
|
2277
|
-
// eslint-disable-next-line es
|
|
2277
|
+
// eslint-disable-next-line es/no-object-keys -- safe
|
|
2278
2278
|
module.exports = Object.keys || function keys(O) {
|
|
2279
2279
|
return internalObjectKeys(O, enumBugKeys);
|
|
2280
2280
|
};
|
|
@@ -2293,7 +2293,7 @@ module.exports = getBuiltIn('document', 'documentElement');
|
|
|
2293
2293
|
/* 76 */
|
|
2294
2294
|
/***/ (function(module, exports, __webpack_require__) {
|
|
2295
2295
|
|
|
2296
|
-
/* eslint-disable es
|
|
2296
|
+
/* eslint-disable es/no-object-getownpropertynames -- safe */
|
|
2297
2297
|
var classof = __webpack_require__(15);
|
|
2298
2298
|
var toIndexedObject = __webpack_require__(12);
|
|
2299
2299
|
var $getOwnPropertyNames = __webpack_require__(58).f;
|
|
@@ -2583,7 +2583,7 @@ var classof = __webpack_require__(15);
|
|
|
2583
2583
|
|
|
2584
2584
|
// `IsArray` abstract operation
|
|
2585
2585
|
// https://tc39.es/ecma262/#sec-isarray
|
|
2586
|
-
// eslint-disable-next-line es
|
|
2586
|
+
// eslint-disable-next-line es/no-array-isarray -- safe
|
|
2587
2587
|
module.exports = Array.isArray || function isArray(argument) {
|
|
2588
2588
|
return classof(argument) == 'Array';
|
|
2589
2589
|
};
|
|
@@ -2681,7 +2681,7 @@ $({ target: 'Symbol', stat: true, forced: !NATIVE_SYMBOL_REGISTRY }, {
|
|
|
2681
2681
|
|
|
2682
2682
|
var NATIVE_SYMBOL = __webpack_require__(27);
|
|
2683
2683
|
|
|
2684
|
-
/* eslint-disable es
|
|
2684
|
+
/* eslint-disable es/no-symbol -- safe */
|
|
2685
2685
|
module.exports = NATIVE_SYMBOL && !!Symbol['for'] && !!Symbol.keyFor;
|
|
2686
2686
|
|
|
2687
2687
|
|
|
@@ -2796,7 +2796,7 @@ var FunctionPrototype = Function.prototype;
|
|
|
2796
2796
|
var apply = FunctionPrototype.apply;
|
|
2797
2797
|
var call = FunctionPrototype.call;
|
|
2798
2798
|
|
|
2799
|
-
// eslint-disable-next-line es
|
|
2799
|
+
// eslint-disable-next-line es/no-reflect -- safe
|
|
2800
2800
|
module.exports = typeof Reflect == 'object' && Reflect.apply || (NATIVE_BIND ? call.bind(apply) : function () {
|
|
2801
2801
|
return call.apply(apply, arguments);
|
|
2802
2802
|
});
|
|
@@ -3202,13 +3202,13 @@ var aPossiblePrototype = __webpack_require__(114);
|
|
|
3202
3202
|
// `Object.setPrototypeOf` method
|
|
3203
3203
|
// https://tc39.es/ecma262/#sec-object.setprototypeof
|
|
3204
3204
|
// Works with __proto__ only. Old v8 can't work with null proto objects.
|
|
3205
|
-
// eslint-disable-next-line es
|
|
3205
|
+
// eslint-disable-next-line es/no-object-setprototypeof -- safe
|
|
3206
3206
|
module.exports = Object.setPrototypeOf || ('__proto__' in {} ? function () {
|
|
3207
3207
|
var CORRECT_SETTER = false;
|
|
3208
3208
|
var test = {};
|
|
3209
3209
|
var setter;
|
|
3210
3210
|
try {
|
|
3211
|
-
// eslint-disable-next-line es
|
|
3211
|
+
// eslint-disable-next-line es/no-object-getownpropertydescriptor -- safe
|
|
3212
3212
|
setter = uncurryThis(Object.getOwnPropertyDescriptor(Object.prototype, '__proto__').set);
|
|
3213
3213
|
setter(test, []);
|
|
3214
3214
|
CORRECT_SETTER = test instanceof Array;
|
|
@@ -3334,7 +3334,7 @@ var createPropertyDescriptor = __webpack_require__(11);
|
|
|
3334
3334
|
module.exports = !fails(function () {
|
|
3335
3335
|
var error = Error('a');
|
|
3336
3336
|
if (!('stack' in error)) return true;
|
|
3337
|
-
// eslint-disable-next-line es
|
|
3337
|
+
// eslint-disable-next-line es/no-object-defineproperty -- safe
|
|
3338
3338
|
Object.defineProperty(error, 'stack', createPropertyDescriptor(1, 7));
|
|
3339
3339
|
return error.stack !== 7;
|
|
3340
3340
|
});
|
|
@@ -3373,7 +3373,7 @@ var nativeErrorToString = Error.prototype.toString;
|
|
|
3373
3373
|
var INCORRECT_TO_STRING = fails(function () {
|
|
3374
3374
|
if (DESCRIPTORS) {
|
|
3375
3375
|
// Chrome 32- incorrectly call accessor
|
|
3376
|
-
// eslint-disable-next-line es
|
|
3376
|
+
// eslint-disable-next-line es/no-object-defineproperty -- safe
|
|
3377
3377
|
var object = create(Object.defineProperty({}, 'name', { get: function () {
|
|
3378
3378
|
return this === object;
|
|
3379
3379
|
} }));
|
|
@@ -3477,7 +3477,7 @@ var ObjectPrototype = $Object.prototype;
|
|
|
3477
3477
|
|
|
3478
3478
|
// `Object.getPrototypeOf` method
|
|
3479
3479
|
// https://tc39.es/ecma262/#sec-object.getprototypeof
|
|
3480
|
-
// eslint-disable-next-line es
|
|
3480
|
+
// eslint-disable-next-line es/no-object-getprototypeof -- safe
|
|
3481
3481
|
module.exports = CORRECT_PROTOTYPE_GETTER ? $Object.getPrototypeOf : function (O) {
|
|
3482
3482
|
var object = toObject(O);
|
|
3483
3483
|
if (hasOwn(object, IE_PROTO)) return object[IE_PROTO];
|
|
@@ -3497,7 +3497,7 @@ var fails = __webpack_require__(7);
|
|
|
3497
3497
|
module.exports = !fails(function () {
|
|
3498
3498
|
function F() { /* empty */ }
|
|
3499
3499
|
F.prototype.constructor = null;
|
|
3500
|
-
// eslint-disable-next-line es
|
|
3500
|
+
// eslint-disable-next-line es/no-object-getprototypeof -- required for testing
|
|
3501
3501
|
return Object.getPrototypeOf(new F()) !== F.prototype;
|
|
3502
3502
|
});
|
|
3503
3503
|
|
|
@@ -3885,7 +3885,7 @@ var min = Math.min;
|
|
|
3885
3885
|
|
|
3886
3886
|
// `Array.prototype.copyWithin` method implementation
|
|
3887
3887
|
// https://tc39.es/ecma262/#sec-array.prototype.copywithin
|
|
3888
|
-
// eslint-disable-next-line es
|
|
3888
|
+
// eslint-disable-next-line es/no-array-prototype-copywithin -- safe
|
|
3889
3889
|
module.exports = [].copyWithin || function copyWithin(target /* = 0 */, start /* = 0, end = @length */) {
|
|
3890
3890
|
var O = toObject(this);
|
|
3891
3891
|
var len = lengthOfArrayLike(O);
|
|
@@ -4270,7 +4270,7 @@ var forEach = __webpack_require__(156);
|
|
|
4270
4270
|
|
|
4271
4271
|
// `Array.prototype.forEach` method
|
|
4272
4272
|
// https://tc39.es/ecma262/#sec-array.prototype.foreach
|
|
4273
|
-
// eslint-disable-next-line es
|
|
4273
|
+
// eslint-disable-next-line es/no-array-prototype-foreach -- safe
|
|
4274
4274
|
$({ target: 'Array', proto: true, forced: [].forEach != forEach }, {
|
|
4275
4275
|
forEach: forEach
|
|
4276
4276
|
});
|
|
@@ -4291,7 +4291,7 @@ var STRICT_METHOD = arrayMethodIsStrict('forEach');
|
|
|
4291
4291
|
// https://tc39.es/ecma262/#sec-array.prototype.foreach
|
|
4292
4292
|
module.exports = !STRICT_METHOD ? function forEach(callbackfn /* , thisArg */) {
|
|
4293
4293
|
return $forEach(this, callbackfn, arguments.length > 1 ? arguments[1] : undefined);
|
|
4294
|
-
// eslint-disable-next-line es
|
|
4294
|
+
// eslint-disable-next-line es/no-array-prototype-foreach -- safe
|
|
4295
4295
|
} : [].forEach;
|
|
4296
4296
|
|
|
4297
4297
|
|
|
@@ -4304,7 +4304,7 @@ var from = __webpack_require__(158);
|
|
|
4304
4304
|
var checkCorrectnessOfIteration = __webpack_require__(160);
|
|
4305
4305
|
|
|
4306
4306
|
var INCORRECT_ITERATION = !checkCorrectnessOfIteration(function (iterable) {
|
|
4307
|
-
// eslint-disable-next-line es
|
|
4307
|
+
// eslint-disable-next-line es/no-array-from -- required for testing
|
|
4308
4308
|
Array.from(iterable);
|
|
4309
4309
|
});
|
|
4310
4310
|
|
|
@@ -4407,7 +4407,7 @@ try {
|
|
|
4407
4407
|
iteratorWithReturn[ITERATOR] = function () {
|
|
4408
4408
|
return this;
|
|
4409
4409
|
};
|
|
4410
|
-
// eslint-disable-next-line es
|
|
4410
|
+
// eslint-disable-next-line es/no-array-from, no-throw-literal -- required for testing
|
|
4411
4411
|
Array.from(iteratorWithReturn, function () { throw 2; });
|
|
4412
4412
|
} catch (error) { /* empty */ }
|
|
4413
4413
|
|
|
@@ -4463,7 +4463,7 @@ addToUnscopables('includes');
|
|
|
4463
4463
|
|
|
4464
4464
|
"use strict";
|
|
4465
4465
|
|
|
4466
|
-
/* eslint-disable es
|
|
4466
|
+
/* eslint-disable es/no-array-prototype-indexof -- required for testing */
|
|
4467
4467
|
var $ = __webpack_require__(3);
|
|
4468
4468
|
var uncurryThis = __webpack_require__(14);
|
|
4469
4469
|
var $indexOf = __webpack_require__(60).indexOf;
|
|
@@ -4721,7 +4721,7 @@ var BUGGY_SAFARI_ITERATORS = false;
|
|
|
4721
4721
|
// https://tc39.es/ecma262/#sec-%iteratorprototype%-object
|
|
4722
4722
|
var IteratorPrototype, PrototypeOfArrayIteratorPrototype, arrayIterator;
|
|
4723
4723
|
|
|
4724
|
-
/* eslint-disable es
|
|
4724
|
+
/* eslint-disable es/no-array-prototype-keys -- safe */
|
|
4725
4725
|
if ([].keys) {
|
|
4726
4726
|
arrayIterator = [].keys();
|
|
4727
4727
|
// Safari 8 has buggy iterators w/o `next`
|
|
@@ -4801,7 +4801,7 @@ var lastIndexOf = __webpack_require__(171);
|
|
|
4801
4801
|
|
|
4802
4802
|
// `Array.prototype.lastIndexOf` method
|
|
4803
4803
|
// https://tc39.es/ecma262/#sec-array.prototype.lastindexof
|
|
4804
|
-
// eslint-disable-next-line es
|
|
4804
|
+
// eslint-disable-next-line es/no-array-prototype-lastindexof -- required for testing
|
|
4805
4805
|
$({ target: 'Array', proto: true, forced: lastIndexOf !== [].lastIndexOf }, {
|
|
4806
4806
|
lastIndexOf: lastIndexOf
|
|
4807
4807
|
});
|
|
@@ -4813,7 +4813,7 @@ $({ target: 'Array', proto: true, forced: lastIndexOf !== [].lastIndexOf }, {
|
|
|
4813
4813
|
|
|
4814
4814
|
"use strict";
|
|
4815
4815
|
|
|
4816
|
-
/* eslint-disable es
|
|
4816
|
+
/* eslint-disable es/no-array-prototype-lastindexof -- safe */
|
|
4817
4817
|
var apply = __webpack_require__(94);
|
|
4818
4818
|
var toIndexedObject = __webpack_require__(12);
|
|
4819
4819
|
var toIntegerOrInfinity = __webpack_require__(62);
|
|
@@ -4878,7 +4878,7 @@ var $Array = Array;
|
|
|
4878
4878
|
|
|
4879
4879
|
var ISNT_GENERIC = fails(function () {
|
|
4880
4880
|
function F() { /* empty */ }
|
|
4881
|
-
// eslint-disable-next-line es
|
|
4881
|
+
// eslint-disable-next-line es/no-array-of -- safe
|
|
4882
4882
|
return !($Array.of.call(F) instanceof F);
|
|
4883
4883
|
});
|
|
4884
4884
|
|
|
@@ -4918,7 +4918,7 @@ var INCORRECT_TO_LENGTH = fails(function () {
|
|
|
4918
4918
|
// https://bugs.chromium.org/p/v8/issues/detail?id=12681
|
|
4919
4919
|
var SILENT_ON_NON_WRITABLE_LENGTH = !function () {
|
|
4920
4920
|
try {
|
|
4921
|
-
// eslint-disable-next-line es
|
|
4921
|
+
// eslint-disable-next-line es/no-object-defineproperty -- safe
|
|
4922
4922
|
Object.defineProperty([], 'length', { writable: false }).push();
|
|
4923
4923
|
} catch (error) {
|
|
4924
4924
|
return error instanceof TypeError;
|
|
@@ -4954,7 +4954,7 @@ var DESCRIPTORS = __webpack_require__(6);
|
|
|
4954
4954
|
var isArray = __webpack_require__(88);
|
|
4955
4955
|
|
|
4956
4956
|
var $TypeError = TypeError;
|
|
4957
|
-
// eslint-disable-next-line es
|
|
4957
|
+
// eslint-disable-next-line es/no-object-getownpropertydescriptor -- safe
|
|
4958
4958
|
var getOwnPropertyDescriptor = Object.getOwnPropertyDescriptor;
|
|
4959
4959
|
|
|
4960
4960
|
// Safari < 13 does not throw an error in this case
|
|
@@ -4962,7 +4962,7 @@ var SILENT_ON_NON_WRITABLE_LENGTH_SET = DESCRIPTORS && !function () {
|
|
|
4962
4962
|
// makes no sense without proper strict mode support
|
|
4963
4963
|
if (this !== undefined) return true;
|
|
4964
4964
|
try {
|
|
4965
|
-
// eslint-disable-next-line es
|
|
4965
|
+
// eslint-disable-next-line es/no-object-defineproperty -- safe
|
|
4966
4966
|
Object.defineProperty([], 'length', { writable: false }).length = 1;
|
|
4967
4967
|
} catch (error) {
|
|
4968
4968
|
return error instanceof TypeError;
|
|
@@ -5540,7 +5540,7 @@ var INCORRECT_RESULT = [].unshift(0) !== 1;
|
|
|
5540
5540
|
// V8 ~ Chrome < 71 and Safari <= 15.4, FF < 23 throws InternalError
|
|
5541
5541
|
var SILENT_ON_NON_WRITABLE_LENGTH = !function () {
|
|
5542
5542
|
try {
|
|
5543
|
-
// eslint-disable-next-line es
|
|
5543
|
+
// eslint-disable-next-line es/no-object-defineproperty -- safe
|
|
5544
5544
|
Object.defineProperty([], 'length', { writable: false }).unshift();
|
|
5545
5545
|
} catch (error) {
|
|
5546
5546
|
return error instanceof TypeError;
|
|
@@ -5853,7 +5853,7 @@ module.exports = {
|
|
|
5853
5853
|
/* 196 */
|
|
5854
5854
|
/***/ (function(module, exports) {
|
|
5855
5855
|
|
|
5856
|
-
// eslint-disable-next-line es
|
|
5856
|
+
// eslint-disable-next-line es/no-typed-arrays -- safe
|
|
5857
5857
|
module.exports = typeof ArrayBuffer != 'undefined' && typeof DataView != 'undefined';
|
|
5858
5858
|
|
|
5859
5859
|
|
|
@@ -7069,7 +7069,7 @@ var isObject = __webpack_require__(20);
|
|
|
7069
7069
|
var classof = __webpack_require__(15);
|
|
7070
7070
|
var ARRAY_BUFFER_NON_EXTENSIBLE = __webpack_require__(232);
|
|
7071
7071
|
|
|
7072
|
-
// eslint-disable-next-line es
|
|
7072
|
+
// eslint-disable-next-line es/no-object-isextensible -- safe
|
|
7073
7073
|
var $isExtensible = Object.isExtensible;
|
|
7074
7074
|
var FAILS_ON_PRIMITIVES = fails(function () { $isExtensible(1); });
|
|
7075
7075
|
|
|
@@ -7092,7 +7092,7 @@ var fails = __webpack_require__(7);
|
|
|
7092
7092
|
module.exports = fails(function () {
|
|
7093
7093
|
if (typeof ArrayBuffer == 'function') {
|
|
7094
7094
|
var buffer = new ArrayBuffer(8);
|
|
7095
|
-
// eslint-disable-next-line es
|
|
7095
|
+
// eslint-disable-next-line es/no-object-isextensible, es/no-object-defineproperty -- safe
|
|
7096
7096
|
if (Object.isExtensible(buffer)) Object.defineProperty(buffer, 'a', { value: 8 });
|
|
7097
7097
|
}
|
|
7098
7098
|
});
|
|
@@ -7105,7 +7105,7 @@ module.exports = fails(function () {
|
|
|
7105
7105
|
var fails = __webpack_require__(7);
|
|
7106
7106
|
|
|
7107
7107
|
module.exports = !fails(function () {
|
|
7108
|
-
// eslint-disable-next-line es
|
|
7108
|
+
// eslint-disable-next-line es/no-object-isextensible, es/no-object-preventextensions -- required for testing
|
|
7109
7109
|
return Object.isExtensible(Object.preventExtensions({}));
|
|
7110
7110
|
});
|
|
7111
7111
|
|
|
@@ -7330,7 +7330,7 @@ module.exports = {
|
|
|
7330
7330
|
var $ = __webpack_require__(3);
|
|
7331
7331
|
var log1p = __webpack_require__(236);
|
|
7332
7332
|
|
|
7333
|
-
// eslint-disable-next-line es
|
|
7333
|
+
// eslint-disable-next-line es/no-math-acosh -- required for testing
|
|
7334
7334
|
var $acosh = Math.acosh;
|
|
7335
7335
|
var log = Math.log;
|
|
7336
7336
|
var sqrt = Math.sqrt;
|
|
@@ -7362,7 +7362,7 @@ var log = Math.log;
|
|
|
7362
7362
|
|
|
7363
7363
|
// `Math.log1p` method implementation
|
|
7364
7364
|
// https://tc39.es/ecma262/#sec-math.log1p
|
|
7365
|
-
// eslint-disable-next-line es
|
|
7365
|
+
// eslint-disable-next-line es/no-math-log1p -- safe
|
|
7366
7366
|
module.exports = Math.log1p || function log1p(x) {
|
|
7367
7367
|
var n = +x;
|
|
7368
7368
|
return n > -1e-8 && n < 1e-8 ? n - n * n / 2 : log(1 + n);
|
|
@@ -7375,7 +7375,7 @@ module.exports = Math.log1p || function log1p(x) {
|
|
|
7375
7375
|
|
|
7376
7376
|
var $ = __webpack_require__(3);
|
|
7377
7377
|
|
|
7378
|
-
// eslint-disable-next-line es
|
|
7378
|
+
// eslint-disable-next-line es/no-math-asinh -- required for testing
|
|
7379
7379
|
var $asinh = Math.asinh;
|
|
7380
7380
|
var log = Math.log;
|
|
7381
7381
|
var sqrt = Math.sqrt;
|
|
@@ -7399,7 +7399,7 @@ $({ target: 'Math', stat: true, forced: !($asinh && 1 / $asinh(0) > 0) }, {
|
|
|
7399
7399
|
|
|
7400
7400
|
var $ = __webpack_require__(3);
|
|
7401
7401
|
|
|
7402
|
-
// eslint-disable-next-line es
|
|
7402
|
+
// eslint-disable-next-line es/no-math-atanh -- required for testing
|
|
7403
7403
|
var $atanh = Math.atanh;
|
|
7404
7404
|
var log = Math.log;
|
|
7405
7405
|
|
|
@@ -7440,7 +7440,7 @@ $({ target: 'Math', stat: true }, {
|
|
|
7440
7440
|
|
|
7441
7441
|
// `Math.sign` method implementation
|
|
7442
7442
|
// https://tc39.es/ecma262/#sec-math.sign
|
|
7443
|
-
// eslint-disable-next-line es
|
|
7443
|
+
// eslint-disable-next-line es/no-math-sign -- safe
|
|
7444
7444
|
module.exports = Math.sign || function sign(x) {
|
|
7445
7445
|
var n = +x;
|
|
7446
7446
|
// eslint-disable-next-line no-self-compare -- NaN check
|
|
@@ -7475,7 +7475,7 @@ $({ target: 'Math', stat: true }, {
|
|
|
7475
7475
|
var $ = __webpack_require__(3);
|
|
7476
7476
|
var expm1 = __webpack_require__(243);
|
|
7477
7477
|
|
|
7478
|
-
// eslint-disable-next-line es
|
|
7478
|
+
// eslint-disable-next-line es/no-math-cosh -- required for testing
|
|
7479
7479
|
var $cosh = Math.cosh;
|
|
7480
7480
|
var abs = Math.abs;
|
|
7481
7481
|
var E = Math.E;
|
|
@@ -7494,7 +7494,7 @@ $({ target: 'Math', stat: true, forced: !$cosh || $cosh(710) === Infinity }, {
|
|
|
7494
7494
|
/* 243 */
|
|
7495
7495
|
/***/ (function(module, exports) {
|
|
7496
7496
|
|
|
7497
|
-
// eslint-disable-next-line es
|
|
7497
|
+
// eslint-disable-next-line es/no-math-expm1 -- safe
|
|
7498
7498
|
var $expm1 = Math.expm1;
|
|
7499
7499
|
var exp = Math.exp;
|
|
7500
7500
|
|
|
@@ -7520,7 +7520,7 @@ var expm1 = __webpack_require__(243);
|
|
|
7520
7520
|
|
|
7521
7521
|
// `Math.expm1` method
|
|
7522
7522
|
// https://tc39.es/ecma262/#sec-math.expm1
|
|
7523
|
-
// eslint-disable-next-line es
|
|
7523
|
+
// eslint-disable-next-line es/no-math-expm1 -- required for testing
|
|
7524
7524
|
$({ target: 'Math', stat: true, forced: expm1 != Math.expm1 }, { expm1: expm1 });
|
|
7525
7525
|
|
|
7526
7526
|
|
|
@@ -7555,7 +7555,7 @@ var roundTiesToEven = function (n) {
|
|
|
7555
7555
|
|
|
7556
7556
|
// `Math.fround` method implementation
|
|
7557
7557
|
// https://tc39.es/ecma262/#sec-math.fround
|
|
7558
|
-
// eslint-disable-next-line es
|
|
7558
|
+
// eslint-disable-next-line es/no-math-fround -- safe
|
|
7559
7559
|
module.exports = Math.fround || function fround(x) {
|
|
7560
7560
|
var n = +x;
|
|
7561
7561
|
var $abs = abs(n);
|
|
@@ -7576,7 +7576,7 @@ module.exports = Math.fround || function fround(x) {
|
|
|
7576
7576
|
|
|
7577
7577
|
var $ = __webpack_require__(3);
|
|
7578
7578
|
|
|
7579
|
-
// eslint-disable-next-line es
|
|
7579
|
+
// eslint-disable-next-line es/no-math-hypot -- required for testing
|
|
7580
7580
|
var $hypot = Math.hypot;
|
|
7581
7581
|
var abs = Math.abs;
|
|
7582
7582
|
var sqrt = Math.sqrt;
|
|
@@ -7618,7 +7618,7 @@ $({ target: 'Math', stat: true, arity: 2, forced: BUGGY }, {
|
|
|
7618
7618
|
var $ = __webpack_require__(3);
|
|
7619
7619
|
var fails = __webpack_require__(7);
|
|
7620
7620
|
|
|
7621
|
-
// eslint-disable-next-line es
|
|
7621
|
+
// eslint-disable-next-line es/no-math-imul -- required for testing
|
|
7622
7622
|
var $imul = Math.imul;
|
|
7623
7623
|
|
|
7624
7624
|
var FORCED = fails(function () {
|
|
@@ -7661,7 +7661,7 @@ $({ target: 'Math', stat: true }, {
|
|
|
7661
7661
|
var log = Math.log;
|
|
7662
7662
|
var LOG10E = Math.LOG10E;
|
|
7663
7663
|
|
|
7664
|
-
// eslint-disable-next-line es
|
|
7664
|
+
// eslint-disable-next-line es/no-math-log10 -- safe
|
|
7665
7665
|
module.exports = Math.log10 || function log10(x) {
|
|
7666
7666
|
return log(x) * LOG10E;
|
|
7667
7667
|
};
|
|
@@ -7724,7 +7724,7 @@ var exp = Math.exp;
|
|
|
7724
7724
|
var E = Math.E;
|
|
7725
7725
|
|
|
7726
7726
|
var FORCED = fails(function () {
|
|
7727
|
-
// eslint-disable-next-line es
|
|
7727
|
+
// eslint-disable-next-line es/no-math-sinh -- required for testing
|
|
7728
7728
|
return Math.sinh(-2e-17) != -2e-17;
|
|
7729
7729
|
});
|
|
7730
7730
|
|
|
@@ -7972,7 +7972,7 @@ var globalIsFinite = global.isFinite;
|
|
|
7972
7972
|
|
|
7973
7973
|
// `Number.isFinite` method
|
|
7974
7974
|
// https://tc39.es/ecma262/#sec-number.isfinite
|
|
7975
|
-
// eslint-disable-next-line es
|
|
7975
|
+
// eslint-disable-next-line es/no-number-isfinite -- safe
|
|
7976
7976
|
module.exports = Number.isFinite || function isFinite(it) {
|
|
7977
7977
|
return typeof it == 'number' && globalIsFinite(it);
|
|
7978
7978
|
};
|
|
@@ -8002,7 +8002,7 @@ var floor = Math.floor;
|
|
|
8002
8002
|
|
|
8003
8003
|
// `IsIntegralNumber` abstract operation
|
|
8004
8004
|
// https://tc39.es/ecma262/#sec-isintegralnumber
|
|
8005
|
-
// eslint-disable-next-line es
|
|
8005
|
+
// eslint-disable-next-line es/no-number-isinteger -- safe
|
|
8006
8006
|
module.exports = Number.isInteger || function isInteger(it) {
|
|
8007
8007
|
return !isObject(it) && isFinite(it) && floor(it) === it;
|
|
8008
8008
|
};
|
|
@@ -8077,7 +8077,7 @@ var parseFloat = __webpack_require__(272);
|
|
|
8077
8077
|
|
|
8078
8078
|
// `Number.parseFloat` method
|
|
8079
8079
|
// https://tc39.es/ecma262/#sec-number.parseFloat
|
|
8080
|
-
// eslint-disable-next-line es
|
|
8080
|
+
// eslint-disable-next-line es/no-number-parsefloat -- required for testing
|
|
8081
8081
|
$({ target: 'Number', stat: true, forced: Number.parseFloat != parseFloat }, {
|
|
8082
8082
|
parseFloat: parseFloat
|
|
8083
8083
|
});
|
|
@@ -8120,7 +8120,7 @@ var parseInt = __webpack_require__(274);
|
|
|
8120
8120
|
|
|
8121
8121
|
// `Number.parseInt` method
|
|
8122
8122
|
// https://tc39.es/ecma262/#sec-number.parseint
|
|
8123
|
-
// eslint-disable-next-line es
|
|
8123
|
+
// eslint-disable-next-line es/no-number-parseint -- required for testing
|
|
8124
8124
|
$({ target: 'Number', stat: true, forced: Number.parseInt != parseInt }, {
|
|
8125
8125
|
parseInt: parseInt
|
|
8126
8126
|
});
|
|
@@ -8439,7 +8439,7 @@ var assign = __webpack_require__(279);
|
|
|
8439
8439
|
|
|
8440
8440
|
// `Object.assign` method
|
|
8441
8441
|
// https://tc39.es/ecma262/#sec-object.assign
|
|
8442
|
-
// eslint-disable-next-line es
|
|
8442
|
+
// eslint-disable-next-line es/no-object-assign -- required for testing
|
|
8443
8443
|
$({ target: 'Object', stat: true, arity: 2, forced: Object.assign !== assign }, {
|
|
8444
8444
|
assign: assign
|
|
8445
8445
|
});
|
|
@@ -8461,9 +8461,9 @@ var propertyIsEnumerableModule = __webpack_require__(10);
|
|
|
8461
8461
|
var toObject = __webpack_require__(40);
|
|
8462
8462
|
var IndexedObject = __webpack_require__(13);
|
|
8463
8463
|
|
|
8464
|
-
// eslint-disable-next-line es
|
|
8464
|
+
// eslint-disable-next-line es/no-object-assign -- safe
|
|
8465
8465
|
var $assign = Object.assign;
|
|
8466
|
-
// eslint-disable-next-line es
|
|
8466
|
+
// eslint-disable-next-line es/no-object-defineproperty -- required for testing
|
|
8467
8467
|
var defineProperty = Object.defineProperty;
|
|
8468
8468
|
var concat = uncurryThis([].concat);
|
|
8469
8469
|
|
|
@@ -8483,7 +8483,7 @@ module.exports = !$assign || fails(function () {
|
|
|
8483
8483
|
// should work with symbols and should have deterministic property order (V8 bug)
|
|
8484
8484
|
var A = {};
|
|
8485
8485
|
var B = {};
|
|
8486
|
-
// eslint-disable-next-line es
|
|
8486
|
+
// eslint-disable-next-line es/no-symbol -- safe
|
|
8487
8487
|
var symbol = Symbol();
|
|
8488
8488
|
var alphabet = 'abcdefghijklmnopqrst';
|
|
8489
8489
|
A[symbol] = 7;
|
|
@@ -8567,7 +8567,7 @@ module.exports = IS_PURE || !fails(function () {
|
|
|
8567
8567
|
if (WEBKIT && WEBKIT < 535) return;
|
|
8568
8568
|
var key = Math.random();
|
|
8569
8569
|
// In FF throws only define methods
|
|
8570
|
-
// eslint-disable-next-line no-undef, no-useless-call, es
|
|
8570
|
+
// eslint-disable-next-line no-undef, no-useless-call, es/no-legacy-object-prototype-accessor-methods -- required for testing
|
|
8571
8571
|
__defineSetter__.call(null, key, function () { /* empty */ });
|
|
8572
8572
|
delete global[key];
|
|
8573
8573
|
});
|
|
@@ -8583,7 +8583,7 @@ var defineProperties = __webpack_require__(73).f;
|
|
|
8583
8583
|
|
|
8584
8584
|
// `Object.defineProperties` method
|
|
8585
8585
|
// https://tc39.es/ecma262/#sec-object.defineproperties
|
|
8586
|
-
// eslint-disable-next-line es
|
|
8586
|
+
// eslint-disable-next-line es/no-object-defineproperties -- safe
|
|
8587
8587
|
$({ target: 'Object', stat: true, forced: Object.defineProperties !== defineProperties, sham: !DESCRIPTORS }, {
|
|
8588
8588
|
defineProperties: defineProperties
|
|
8589
8589
|
});
|
|
@@ -8599,7 +8599,7 @@ var defineProperty = __webpack_require__(45).f;
|
|
|
8599
8599
|
|
|
8600
8600
|
// `Object.defineProperty` method
|
|
8601
8601
|
// https://tc39.es/ecma262/#sec-object.defineproperty
|
|
8602
|
-
// eslint-disable-next-line es
|
|
8602
|
+
// eslint-disable-next-line es/no-object-defineproperty -- safe
|
|
8603
8603
|
$({ target: 'Object', stat: true, forced: Object.defineProperty !== defineProperty, sham: !DESCRIPTORS }, {
|
|
8604
8604
|
defineProperty: defineProperty
|
|
8605
8605
|
});
|
|
@@ -8697,7 +8697,7 @@ var fails = __webpack_require__(7);
|
|
|
8697
8697
|
var isObject = __webpack_require__(20);
|
|
8698
8698
|
var onFreeze = __webpack_require__(230).onFreeze;
|
|
8699
8699
|
|
|
8700
|
-
// eslint-disable-next-line es
|
|
8700
|
+
// eslint-disable-next-line es/no-object-freeze -- safe
|
|
8701
8701
|
var $freeze = Object.freeze;
|
|
8702
8702
|
var FAILS_ON_PRIMITIVES = fails(function () { $freeze(1); });
|
|
8703
8703
|
|
|
@@ -8791,7 +8791,7 @@ var $ = __webpack_require__(3);
|
|
|
8791
8791
|
var fails = __webpack_require__(7);
|
|
8792
8792
|
var getOwnPropertyNames = __webpack_require__(76).f;
|
|
8793
8793
|
|
|
8794
|
-
// eslint-disable-next-line es
|
|
8794
|
+
// eslint-disable-next-line es/no-object-getownpropertynames -- required for testing
|
|
8795
8795
|
var FAILS_ON_PRIMITIVES = fails(function () { return !Object.getOwnPropertyNames(1); });
|
|
8796
8796
|
|
|
8797
8797
|
// `Object.getOwnPropertyNames` method
|
|
@@ -8857,7 +8857,7 @@ $({ target: 'Object', stat: true }, {
|
|
|
8857
8857
|
|
|
8858
8858
|
// `SameValue` abstract operation
|
|
8859
8859
|
// https://tc39.es/ecma262/#sec-samevalue
|
|
8860
|
-
// eslint-disable-next-line es
|
|
8860
|
+
// eslint-disable-next-line es/no-object-is -- safe
|
|
8861
8861
|
module.exports = Object.is || function is(x, y) {
|
|
8862
8862
|
// eslint-disable-next-line no-self-compare -- NaN check
|
|
8863
8863
|
return x === y ? x !== 0 || 1 / x === 1 / y : x != x && y != y;
|
|
@@ -8873,7 +8873,7 @@ var $isExtensible = __webpack_require__(231);
|
|
|
8873
8873
|
|
|
8874
8874
|
// `Object.isExtensible` method
|
|
8875
8875
|
// https://tc39.es/ecma262/#sec-object.isextensible
|
|
8876
|
-
// eslint-disable-next-line es
|
|
8876
|
+
// eslint-disable-next-line es/no-object-isextensible -- safe
|
|
8877
8877
|
$({ target: 'Object', stat: true, forced: Object.isExtensible !== $isExtensible }, {
|
|
8878
8878
|
isExtensible: $isExtensible
|
|
8879
8879
|
});
|
|
@@ -8889,7 +8889,7 @@ var isObject = __webpack_require__(20);
|
|
|
8889
8889
|
var classof = __webpack_require__(15);
|
|
8890
8890
|
var ARRAY_BUFFER_NON_EXTENSIBLE = __webpack_require__(232);
|
|
8891
8891
|
|
|
8892
|
-
// eslint-disable-next-line es
|
|
8892
|
+
// eslint-disable-next-line es/no-object-isfrozen -- safe
|
|
8893
8893
|
var $isFrozen = Object.isFrozen;
|
|
8894
8894
|
var FAILS_ON_PRIMITIVES = fails(function () { $isFrozen(1); });
|
|
8895
8895
|
|
|
@@ -8914,7 +8914,7 @@ var isObject = __webpack_require__(20);
|
|
|
8914
8914
|
var classof = __webpack_require__(15);
|
|
8915
8915
|
var ARRAY_BUFFER_NON_EXTENSIBLE = __webpack_require__(232);
|
|
8916
8916
|
|
|
8917
|
-
// eslint-disable-next-line es
|
|
8917
|
+
// eslint-disable-next-line es/no-object-issealed -- safe
|
|
8918
8918
|
var $isSealed = Object.isSealed;
|
|
8919
8919
|
var FAILS_ON_PRIMITIVES = fails(function () { $isSealed(1); });
|
|
8920
8920
|
|
|
@@ -9019,7 +9019,7 @@ var onFreeze = __webpack_require__(230).onFreeze;
|
|
|
9019
9019
|
var FREEZING = __webpack_require__(233);
|
|
9020
9020
|
var fails = __webpack_require__(7);
|
|
9021
9021
|
|
|
9022
|
-
// eslint-disable-next-line es
|
|
9022
|
+
// eslint-disable-next-line es/no-object-preventextensions -- safe
|
|
9023
9023
|
var $preventExtensions = Object.preventExtensions;
|
|
9024
9024
|
var FAILS_ON_PRIMITIVES = fails(function () { $preventExtensions(1); });
|
|
9025
9025
|
|
|
@@ -9044,9 +9044,9 @@ var isObject = __webpack_require__(20);
|
|
|
9044
9044
|
var toObject = __webpack_require__(40);
|
|
9045
9045
|
var requireObjectCoercible = __webpack_require__(16);
|
|
9046
9046
|
|
|
9047
|
-
// eslint-disable-next-line es
|
|
9047
|
+
// eslint-disable-next-line es/no-object-getprototypeof -- safe
|
|
9048
9048
|
var getPrototypeOf = Object.getPrototypeOf;
|
|
9049
|
-
// eslint-disable-next-line es
|
|
9049
|
+
// eslint-disable-next-line es/no-object-setprototypeof -- safe
|
|
9050
9050
|
var setPrototypeOf = Object.setPrototypeOf;
|
|
9051
9051
|
var ObjectPrototype = Object.prototype;
|
|
9052
9052
|
var PROTO = '__proto__';
|
|
@@ -9092,7 +9092,7 @@ var onFreeze = __webpack_require__(230).onFreeze;
|
|
|
9092
9092
|
var FREEZING = __webpack_require__(233);
|
|
9093
9093
|
var fails = __webpack_require__(7);
|
|
9094
9094
|
|
|
9095
|
-
// eslint-disable-next-line es
|
|
9095
|
+
// eslint-disable-next-line es/no-object-seal -- safe
|
|
9096
9096
|
var $seal = Object.seal;
|
|
9097
9097
|
var FAILS_ON_PRIMITIVES = fails(function () { $seal(1); });
|
|
9098
9098
|
|
|
@@ -9529,11 +9529,11 @@ var String = global.String;
|
|
|
9529
9529
|
var counter = 0;
|
|
9530
9530
|
var queue = {};
|
|
9531
9531
|
var ONREADYSTATECHANGE = 'onreadystatechange';
|
|
9532
|
-
var location, defer, channel, port;
|
|
9532
|
+
var $location, defer, channel, port;
|
|
9533
9533
|
|
|
9534
9534
|
try {
|
|
9535
9535
|
// Deno throws a ReferenceError on `location` access without `--location` flag
|
|
9536
|
-
location = global.location;
|
|
9536
|
+
$location = global.location;
|
|
9537
9537
|
} catch (error) { /* empty */ }
|
|
9538
9538
|
|
|
9539
9539
|
var run = function (id) {
|
|
@@ -9556,7 +9556,7 @@ var listener = function (event) {
|
|
|
9556
9556
|
|
|
9557
9557
|
var post = function (id) {
|
|
9558
9558
|
// old engines have not location.origin
|
|
9559
|
-
global.postMessage(String(id), location.protocol + '//' + location.host);
|
|
9559
|
+
global.postMessage(String(id), $location.protocol + '//' + $location.host);
|
|
9560
9560
|
};
|
|
9561
9561
|
|
|
9562
9562
|
// Node.js 0.9+ & IE10+ has setImmediate, otherwise:
|
|
@@ -9597,7 +9597,7 @@ if (!set || !clear) {
|
|
|
9597
9597
|
global.addEventListener &&
|
|
9598
9598
|
isCallable(global.postMessage) &&
|
|
9599
9599
|
!global.importScripts &&
|
|
9600
|
-
location && location.protocol !== 'file:' &&
|
|
9600
|
+
$location && $location.protocol !== 'file:' &&
|
|
9601
9601
|
!fails(post)
|
|
9602
9602
|
) {
|
|
9603
9603
|
defer = post;
|
|
@@ -10277,7 +10277,7 @@ var fails = __webpack_require__(7);
|
|
|
10277
10277
|
|
|
10278
10278
|
// MS Edge argumentsList argument is optional
|
|
10279
10279
|
var OPTIONAL_ARGUMENTS_LIST = !fails(function () {
|
|
10280
|
-
// eslint-disable-next-line es
|
|
10280
|
+
// eslint-disable-next-line es/no-reflect -- required for testing
|
|
10281
10281
|
Reflect.apply(function () { /* empty */ });
|
|
10282
10282
|
});
|
|
10283
10283
|
|
|
@@ -10365,7 +10365,7 @@ var fails = __webpack_require__(7);
|
|
|
10365
10365
|
|
|
10366
10366
|
// MS Edge has broken Reflect.defineProperty - throwing instead of returning false
|
|
10367
10367
|
var ERROR_INSTEAD_OF_FALSE = fails(function () {
|
|
10368
|
-
// eslint-disable-next-line es
|
|
10368
|
+
// eslint-disable-next-line es/no-reflect -- required for testing
|
|
10369
10369
|
Reflect.defineProperty(definePropertyModule.f({}, 1, { value: 1 }), 1, { value: 2 });
|
|
10370
10370
|
});
|
|
10371
10371
|
|
|
@@ -10599,7 +10599,7 @@ function set(target, propertyKey, V /* , receiver */) {
|
|
|
10599
10599
|
var MS_EDGE_BUG = fails(function () {
|
|
10600
10600
|
var Constructor = function () { /* empty */ };
|
|
10601
10601
|
var object = definePropertyModule.f(new Constructor(), 'a', { configurable: true });
|
|
10602
|
-
// eslint-disable-next-line es
|
|
10602
|
+
// eslint-disable-next-line es/no-reflect -- required for testing
|
|
10603
10603
|
return Reflect.set(Constructor.prototype, 'a', 1, object) !== false;
|
|
10604
10604
|
});
|
|
10605
10605
|
|
|
@@ -11173,7 +11173,7 @@ var FORCED = DESCRIPTORS && fails(function () {
|
|
|
11173
11173
|
var expected = INDICES_SUPPORT ? 'dgimsy' : 'gimsy';
|
|
11174
11174
|
|
|
11175
11175
|
var addGetter = function (key, chr) {
|
|
11176
|
-
// eslint-disable-next-line es
|
|
11176
|
+
// eslint-disable-next-line es/no-object-defineproperty -- safe
|
|
11177
11177
|
Object.defineProperty(O, key, { get: function () {
|
|
11178
11178
|
calls += chr;
|
|
11179
11179
|
return true;
|
|
@@ -11192,7 +11192,7 @@ var FORCED = DESCRIPTORS && fails(function () {
|
|
|
11192
11192
|
|
|
11193
11193
|
for (var key in pairs) addGetter(key, pairs[key]);
|
|
11194
11194
|
|
|
11195
|
-
// eslint-disable-next-line es
|
|
11195
|
+
// eslint-disable-next-line es/no-object-getownpropertydescriptor -- safe
|
|
11196
11196
|
var result = Object.getOwnPropertyDescriptor(RegExpPrototype, 'flags').get.call(O);
|
|
11197
11197
|
|
|
11198
11198
|
return result !== expected || calls !== expected;
|
|
@@ -11352,7 +11352,7 @@ var fails = __webpack_require__(7);
|
|
|
11352
11352
|
var charAt = uncurryThis(''.charAt);
|
|
11353
11353
|
|
|
11354
11354
|
var FORCED = fails(function () {
|
|
11355
|
-
// eslint-disable-next-line es
|
|
11355
|
+
// eslint-disable-next-line es/no-array-string-prototype-at -- safe
|
|
11356
11356
|
return '𠮷'.at(-2) !== '\uD842';
|
|
11357
11357
|
});
|
|
11358
11358
|
|
|
@@ -11445,7 +11445,7 @@ var requireObjectCoercible = __webpack_require__(16);
|
|
|
11445
11445
|
var correctIsRegExpLogic = __webpack_require__(375);
|
|
11446
11446
|
var IS_PURE = __webpack_require__(36);
|
|
11447
11447
|
|
|
11448
|
-
// eslint-disable-next-line es
|
|
11448
|
+
// eslint-disable-next-line es/no-string-prototype-endswith -- safe
|
|
11449
11449
|
var nativeEndsWith = uncurryThis(''.endsWith);
|
|
11450
11450
|
var slice = uncurryThis(''.slice);
|
|
11451
11451
|
var min = Math.min;
|
|
@@ -11520,7 +11520,7 @@ var toAbsoluteIndex = __webpack_require__(61);
|
|
|
11520
11520
|
|
|
11521
11521
|
var $RangeError = RangeError;
|
|
11522
11522
|
var fromCharCode = String.fromCharCode;
|
|
11523
|
-
// eslint-disable-next-line es
|
|
11523
|
+
// eslint-disable-next-line es/no-string-fromcodepoint -- required for testing
|
|
11524
11524
|
var $fromCodePoint = String.fromCodePoint;
|
|
11525
11525
|
var join = uncurryThis([].join);
|
|
11526
11526
|
|
|
@@ -11796,7 +11796,7 @@ module.exports = function (R, S) {
|
|
|
11796
11796
|
|
|
11797
11797
|
"use strict";
|
|
11798
11798
|
|
|
11799
|
-
/* eslint-disable es
|
|
11799
|
+
/* eslint-disable es/no-string-prototype-matchall -- safe */
|
|
11800
11800
|
var $ = __webpack_require__(3);
|
|
11801
11801
|
var call = __webpack_require__(8);
|
|
11802
11802
|
var uncurryThis = __webpack_require__(14);
|
|
@@ -12490,7 +12490,7 @@ var requireObjectCoercible = __webpack_require__(16);
|
|
|
12490
12490
|
var correctIsRegExpLogic = __webpack_require__(375);
|
|
12491
12491
|
var IS_PURE = __webpack_require__(36);
|
|
12492
12492
|
|
|
12493
|
-
// eslint-disable-next-line es
|
|
12493
|
+
// eslint-disable-next-line es/no-string-prototype-startswith -- safe
|
|
12494
12494
|
var nativeStartsWith = uncurryThis(''.startsWith);
|
|
12495
12495
|
var stringSlice = uncurryThis(''.slice);
|
|
12496
12496
|
var min = Math.min;
|
|
@@ -12533,7 +12533,7 @@ var stringSlice = uncurryThis(''.slice);
|
|
|
12533
12533
|
var max = Math.max;
|
|
12534
12534
|
var min = Math.min;
|
|
12535
12535
|
|
|
12536
|
-
// eslint-disable-next-line unicorn/prefer-string-slice, es
|
|
12536
|
+
// eslint-disable-next-line unicorn/prefer-string-slice, es/no-string-prototype-substr -- required for testing
|
|
12537
12537
|
var FORCED = !''.substr || 'ab'.substr(-1) !== 'b';
|
|
12538
12538
|
|
|
12539
12539
|
// `String.prototype.substr` method
|
|
@@ -12605,7 +12605,7 @@ var trimEnd = __webpack_require__(400);
|
|
|
12605
12605
|
|
|
12606
12606
|
// `String.prototype.trimEnd` method
|
|
12607
12607
|
// https://tc39.es/ecma262/#sec-string.prototype.trimend
|
|
12608
|
-
// eslint-disable-next-line es
|
|
12608
|
+
// eslint-disable-next-line es/no-string-prototype-trimstart-trimend -- safe
|
|
12609
12609
|
$({ target: 'String', proto: true, name: 'trimEnd', forced: ''.trimEnd !== trimEnd }, {
|
|
12610
12610
|
trimEnd: trimEnd
|
|
12611
12611
|
});
|
|
@@ -12620,7 +12620,7 @@ var trimEnd = __webpack_require__(400);
|
|
|
12620
12620
|
|
|
12621
12621
|
// `String.prototype.trimRight` method
|
|
12622
12622
|
// https://tc39.es/ecma262/#sec-string.prototype.trimend
|
|
12623
|
-
// eslint-disable-next-line es
|
|
12623
|
+
// eslint-disable-next-line es/no-string-prototype-trimleft-trimright -- safe
|
|
12624
12624
|
$({ target: 'String', proto: true, name: 'trimEnd', forced: ''.trimRight !== trimEnd }, {
|
|
12625
12625
|
trimRight: trimEnd
|
|
12626
12626
|
});
|
|
@@ -12640,7 +12640,7 @@ var forcedStringTrimMethod = __webpack_require__(397);
|
|
|
12640
12640
|
// https://tc39.es/ecma262/#String.prototype.trimright
|
|
12641
12641
|
module.exports = forcedStringTrimMethod('trimEnd') ? function trimEnd() {
|
|
12642
12642
|
return $trimEnd(this);
|
|
12643
|
-
// eslint-disable-next-line es
|
|
12643
|
+
// eslint-disable-next-line es/no-string-prototype-trimstart-trimend -- safe
|
|
12644
12644
|
} : ''.trimEnd;
|
|
12645
12645
|
|
|
12646
12646
|
|
|
@@ -12655,7 +12655,7 @@ var trimStart = __webpack_require__(403);
|
|
|
12655
12655
|
|
|
12656
12656
|
// `String.prototype.trimStart` method
|
|
12657
12657
|
// https://tc39.es/ecma262/#sec-string.prototype.trimstart
|
|
12658
|
-
// eslint-disable-next-line es
|
|
12658
|
+
// eslint-disable-next-line es/no-string-prototype-trimstart-trimend -- safe
|
|
12659
12659
|
$({ target: 'String', proto: true, name: 'trimStart', forced: ''.trimStart !== trimStart }, {
|
|
12660
12660
|
trimStart: trimStart
|
|
12661
12661
|
});
|
|
@@ -12670,7 +12670,7 @@ var trimStart = __webpack_require__(403);
|
|
|
12670
12670
|
|
|
12671
12671
|
// `String.prototype.trimLeft` method
|
|
12672
12672
|
// https://tc39.es/ecma262/#sec-string.prototype.trimleft
|
|
12673
|
-
// eslint-disable-next-line es
|
|
12673
|
+
// eslint-disable-next-line es/no-string-prototype-trimleft-trimright -- safe
|
|
12674
12674
|
$({ target: 'String', proto: true, name: 'trimStart', forced: ''.trimLeft !== trimStart }, {
|
|
12675
12675
|
trimLeft: trimStart
|
|
12676
12676
|
});
|
|
@@ -12690,7 +12690,7 @@ var forcedStringTrimMethod = __webpack_require__(397);
|
|
|
12690
12690
|
// https://tc39.es/ecma262/#String.prototype.trimleft
|
|
12691
12691
|
module.exports = forcedStringTrimMethod('trimStart') ? function trimStart() {
|
|
12692
12692
|
return $trimStart(this);
|
|
12693
|
-
// eslint-disable-next-line es
|
|
12693
|
+
// eslint-disable-next-line es/no-string-prototype-trimstart-trimend -- safe
|
|
12694
12694
|
} : ''.trimStart;
|
|
12695
12695
|
|
|
12696
12696
|
|
|
@@ -13374,7 +13374,7 @@ var $TypeError = TypeError;
|
|
|
13374
13374
|
module.exports = function (argument) {
|
|
13375
13375
|
var prim = toPrimitive(argument, 'number');
|
|
13376
13376
|
if (typeof prim == 'number') throw $TypeError("Can't convert number to bigint");
|
|
13377
|
-
// eslint-disable-next-line es
|
|
13377
|
+
// eslint-disable-next-line es/no-bigint -- safe
|
|
13378
13378
|
return BigInt(prim);
|
|
13379
13379
|
};
|
|
13380
13380
|
|
|
@@ -13584,7 +13584,7 @@ var slice = uncurryThis(''.slice);
|
|
|
13584
13584
|
// V8 ~ Chrome < 59, Safari < 14.1, FF < 55, Edge <=18
|
|
13585
13585
|
var CONVERSION_BUG = fails(function () {
|
|
13586
13586
|
var count = 0;
|
|
13587
|
-
// eslint-disable-next-line es
|
|
13587
|
+
// eslint-disable-next-line es/no-typed-arrays -- safe
|
|
13588
13588
|
new Int8Array(2).fill({ valueOf: function () { return count++; } });
|
|
13589
13589
|
return count !== 1;
|
|
13590
13590
|
});
|
|
@@ -14041,7 +14041,7 @@ var aTypedArray = ArrayBufferViewCore.aTypedArray;
|
|
|
14041
14041
|
var exportTypedArrayMethod = ArrayBufferViewCore.exportTypedArrayMethod;
|
|
14042
14042
|
|
|
14043
14043
|
var WORKS_WITH_OBJECTS_AND_GEERIC_ON_TYPED_ARRAYS = !fails(function () {
|
|
14044
|
-
// eslint-disable-next-line es
|
|
14044
|
+
// eslint-disable-next-line es/no-typed-arrays -- required for testing
|
|
14045
14045
|
var array = new Uint8ClampedArray(2);
|
|
14046
14046
|
call($set, array, { length: 1, 0: 3 }, 1);
|
|
14047
14047
|
return array[1] !== 3;
|
|
@@ -14085,7 +14085,7 @@ var aTypedArray = ArrayBufferViewCore.aTypedArray;
|
|
|
14085
14085
|
var exportTypedArrayMethod = ArrayBufferViewCore.exportTypedArrayMethod;
|
|
14086
14086
|
|
|
14087
14087
|
var FORCED = fails(function () {
|
|
14088
|
-
// eslint-disable-next-line es
|
|
14088
|
+
// eslint-disable-next-line es/no-typed-arrays -- required for testing
|
|
14089
14089
|
new Int8Array(1).slice();
|
|
14090
14090
|
});
|
|
14091
14091
|
|
|
@@ -15051,11 +15051,12 @@ var $ = __webpack_require__(3);
|
|
|
15051
15051
|
var arrayMethodIsStrict = __webpack_require__(143);
|
|
15052
15052
|
var addToUnscopables = __webpack_require__(135);
|
|
15053
15053
|
var $groupToMap = __webpack_require__(487);
|
|
15054
|
+
var IS_PURE = __webpack_require__(36);
|
|
15054
15055
|
|
|
15055
15056
|
// `Array.prototype.groupByToMap` method
|
|
15056
15057
|
// https://github.com/tc39/proposal-array-grouping
|
|
15057
15058
|
// https://bugs.webkit.org/show_bug.cgi?id=236541
|
|
15058
|
-
$({ target: 'Array', proto: true, name: 'groupToMap', forced: !arrayMethodIsStrict('groupByToMap') }, {
|
|
15059
|
+
$({ target: 'Array', proto: true, name: 'groupToMap', forced: IS_PURE || !arrayMethodIsStrict('groupByToMap') }, {
|
|
15059
15060
|
groupByToMap: $groupToMap
|
|
15060
15061
|
});
|
|
15061
15062
|
|
|
@@ -15108,10 +15109,11 @@ module.exports = function groupToMap(callbackfn /* , thisArg */) {
|
|
|
15108
15109
|
var $ = __webpack_require__(3);
|
|
15109
15110
|
var addToUnscopables = __webpack_require__(135);
|
|
15110
15111
|
var $groupToMap = __webpack_require__(487);
|
|
15112
|
+
var IS_PURE = __webpack_require__(36);
|
|
15111
15113
|
|
|
15112
15114
|
// `Array.prototype.groupToMap` method
|
|
15113
15115
|
// https://github.com/tc39/proposal-array-grouping
|
|
15114
|
-
$({ target: 'Array', proto: true }, {
|
|
15116
|
+
$({ target: 'Array', proto: true, forced: IS_PURE }, {
|
|
15115
15117
|
groupToMap: $groupToMap
|
|
15116
15118
|
});
|
|
15117
15119
|
|
|
@@ -15125,7 +15127,7 @@ addToUnscopables('groupToMap');
|
|
|
15125
15127
|
var $ = __webpack_require__(3);
|
|
15126
15128
|
var isArray = __webpack_require__(88);
|
|
15127
15129
|
|
|
15128
|
-
// eslint-disable-next-line es
|
|
15130
|
+
// eslint-disable-next-line es/no-object-isfrozen -- safe
|
|
15129
15131
|
var isFrozen = Object.isFrozen;
|
|
15130
15132
|
|
|
15131
15133
|
var isFrozenStringArray = function (array, allowUndefined) {
|
|
@@ -16217,7 +16219,7 @@ $({ target: 'AsyncIterator', proto: true, real: true, forced: true }, {
|
|
|
16217
16219
|
|
|
16218
16220
|
"use strict";
|
|
16219
16221
|
|
|
16220
|
-
/* eslint-disable es
|
|
16222
|
+
/* eslint-disable es/no-bigint -- safe */
|
|
16221
16223
|
var $ = __webpack_require__(3);
|
|
16222
16224
|
var NumericRangeIterator = __webpack_require__(520);
|
|
16223
16225
|
|
|
@@ -16456,7 +16458,7 @@ var inspectSource = __webpack_require__(51);
|
|
|
16456
16458
|
var hasOwn = __webpack_require__(39);
|
|
16457
16459
|
var DESCRIPTORS = __webpack_require__(6);
|
|
16458
16460
|
|
|
16459
|
-
// eslint-disable-next-line es
|
|
16461
|
+
// eslint-disable-next-line es/no-object-getownpropertydescriptor -- safe
|
|
16460
16462
|
var getOwnPropertyDescriptor = Object.getOwnPropertyDescriptor;
|
|
16461
16463
|
var classRegExp = /^\s*class\b/;
|
|
16462
16464
|
var exec = uncurryThis(classRegExp.exec);
|
|
@@ -17222,7 +17224,7 @@ $({ target: 'Map', proto: true, real: true, forced: true }, {
|
|
|
17222
17224
|
var call = __webpack_require__(8);
|
|
17223
17225
|
|
|
17224
17226
|
module.exports = function (it) {
|
|
17225
|
-
// eslint-disable-next-line es
|
|
17227
|
+
// eslint-disable-next-line es/no-map -- safe
|
|
17226
17228
|
return call(Map.prototype.entries, it);
|
|
17227
17229
|
};
|
|
17228
17230
|
|
|
@@ -18948,7 +18950,7 @@ $({ target: 'Set', proto: true, real: true, forced: true }, {
|
|
|
18948
18950
|
var call = __webpack_require__(8);
|
|
18949
18951
|
|
|
18950
18952
|
module.exports = function (it) {
|
|
18951
|
-
// eslint-disable-next-line es
|
|
18953
|
+
// eslint-disable-next-line es/no-set -- safe
|
|
18952
18954
|
return call(Set.prototype.values, it);
|
|
18953
18955
|
};
|
|
18954
18956
|
|
|
@@ -19697,7 +19699,7 @@ var min = Math.min;
|
|
|
19697
19699
|
|
|
19698
19700
|
// some early implementations, like WebKit, does not follow the final semantic
|
|
19699
19701
|
var PROPER_ORDER = !fails(function () {
|
|
19700
|
-
// eslint-disable-next-line es
|
|
19702
|
+
// eslint-disable-next-line es/no-typed-arrays -- required for testing
|
|
19701
19703
|
var array = new Int8Array([1]);
|
|
19702
19704
|
|
|
19703
19705
|
var spliced = array.toSpliced(1, 0, {
|
|
@@ -19789,7 +19791,7 @@ var exportTypedArrayMethod = ArrayBufferViewCore.exportTypedArrayMethod;
|
|
|
19789
19791
|
|
|
19790
19792
|
var PROPER_ORDER = !!function () {
|
|
19791
19793
|
try {
|
|
19792
|
-
// eslint-disable-next-line no-throw-literal, es
|
|
19794
|
+
// eslint-disable-next-line no-throw-literal, es/no-typed-arrays -- required for testing
|
|
19793
19795
|
new Int8Array(1)['with'](2, { valueOf: function () { throw 8; } });
|
|
19794
19796
|
} catch (error) {
|
|
19795
19797
|
// some early implementations, like WebKit, does not follow the final semantic
|
|
@@ -20233,7 +20235,7 @@ var NativeDOMException = getBuiltIn(DOM_EXCEPTION) || (function () {
|
|
|
20233
20235
|
try {
|
|
20234
20236
|
// NodeJS < 15.0 does not expose `MessageChannel` to global
|
|
20235
20237
|
var MessageChannel = getBuiltIn('MessageChannel') || tryNodeRequire('worker_threads').MessageChannel;
|
|
20236
|
-
// eslint-disable-next-line es
|
|
20238
|
+
// eslint-disable-next-line es/no-weak-map, unicorn/require-post-message-target-origin -- safe
|
|
20237
20239
|
new MessageChannel().port1.postMessage(new WeakMap());
|
|
20238
20240
|
} catch (error) {
|
|
20239
20241
|
if (error.name == DATA_CLONE_ERR && error.code == 25) return error.constructor;
|
|
@@ -20436,7 +20438,7 @@ var DOMExceptionPrototype = $DOMException.prototype = NativeDOMException.prototy
|
|
|
20436
20438
|
var ERROR_HAS_STACK = 'stack' in Error(DOM_EXCEPTION);
|
|
20437
20439
|
var DOM_EXCEPTION_HAS_STACK = 'stack' in new NativeDOMException(1, 2);
|
|
20438
20440
|
|
|
20439
|
-
// eslint-disable-next-line es
|
|
20441
|
+
// eslint-disable-next-line es/no-object-getownpropertydescriptor -- safe
|
|
20440
20442
|
var descriptor = NativeDOMException && DESCRIPTORS && Object.getOwnPropertyDescriptor(global, DOM_EXCEPTION);
|
|
20441
20443
|
|
|
20442
20444
|
// Bun ~ 0.1.1 DOMException have incorrect descriptor and we can't redefine it
|
|
@@ -22454,7 +22456,7 @@ var URL_SEARCH_PARAMS_ITERATOR = URL_SEARCH_PARAMS + 'Iterator';
|
|
|
22454
22456
|
var setInternalState = InternalStateModule.set;
|
|
22455
22457
|
var getInternalParamsState = InternalStateModule.getterFor(URL_SEARCH_PARAMS);
|
|
22456
22458
|
var getInternalIteratorState = InternalStateModule.getterFor(URL_SEARCH_PARAMS_ITERATOR);
|
|
22457
|
-
// eslint-disable-next-line es
|
|
22459
|
+
// eslint-disable-next-line es/no-object-getownpropertydescriptor -- safe
|
|
22458
22460
|
var getOwnPropertyDescriptor = Object.getOwnPropertyDescriptor;
|
|
22459
22461
|
|
|
22460
22462
|
// Avoid NodeJS experimental warning
|