core-js-bundle 3.33.2 → 3.33.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  /**
2
- * core-js 3.33.2
2
+ * core-js 3.33.3
3
3
  * © 2014-2023 Denis Pushkarev (zloirock.ru)
4
- * license: https://github.com/zloirock/core-js/blob/v3.33.2/LICENSE
4
+ * license: https://github.com/zloirock/core-js/blob/v3.33.3/LICENSE
5
5
  * source: https://github.com/zloirock/core-js
6
6
  */
7
7
  !function (undefined) { 'use strict'; /******/ (function(modules) { // webpackBootstrap
@@ -484,12 +484,11 @@ __webpack_require__(698);
484
484
  __webpack_require__(699);
485
485
  __webpack_require__(701);
486
486
  __webpack_require__(702);
487
- __webpack_require__(704);
488
487
  __webpack_require__(705);
489
488
  __webpack_require__(706);
490
- __webpack_require__(708);
489
+ __webpack_require__(707);
491
490
  __webpack_require__(709);
492
- __webpack_require__(711);
491
+ __webpack_require__(710);
493
492
  __webpack_require__(712);
494
493
  __webpack_require__(713);
495
494
  __webpack_require__(714);
@@ -503,6 +502,7 @@ __webpack_require__(721);
503
502
  __webpack_require__(722);
504
503
  __webpack_require__(723);
505
504
  __webpack_require__(724);
505
+ __webpack_require__(725);
506
506
  __webpack_require__(727);
507
507
  __webpack_require__(728);
508
508
  __webpack_require__(729);
@@ -896,8 +896,9 @@ module.exports =
896
896
  // eslint-disable-next-line no-restricted-globals -- safe
897
897
  check(typeof self == 'object' && self) ||
898
898
  check(typeof global == 'object' && global) ||
899
+ check(typeof this == 'object' && this) ||
899
900
  // eslint-disable-next-line no-new-func -- fallback
900
- (function () { return this; })() || this || Function('return this')();
901
+ (function () { return this; })() || Function('return this')();
901
902
 
902
903
 
903
904
  /***/ }),
@@ -1484,10 +1485,10 @@ var store = __webpack_require__(37);
1484
1485
  (module.exports = function (key, value) {
1485
1486
  return store[key] || (store[key] = value !== undefined ? value : {});
1486
1487
  })('versions', []).push({
1487
- version: '3.33.2',
1488
+ version: '3.33.3',
1488
1489
  mode: IS_PURE ? 'pure' : 'global',
1489
1490
  copyright: '© 2014-2023 Denis Pushkarev (zloirock.ru)',
1490
- license: 'https://github.com/zloirock/core-js/blob/v3.33.2/LICENSE',
1491
+ license: 'https://github.com/zloirock/core-js/blob/v3.33.3/LICENSE',
1491
1492
  source: 'https://github.com/zloirock/core-js'
1492
1493
  });
1493
1494
 
@@ -20728,13 +20729,13 @@ $({ target: 'Math', stat: true, forced: true }, {
20728
20729
  var $ = __webpack_require__(3);
20729
20730
  var uncurryThis = __webpack_require__(14);
20730
20731
  var toIntegerOrInfinity = __webpack_require__(62);
20731
- var parseInt = __webpack_require__(288);
20732
20732
 
20733
20733
  var INVALID_NUMBER_REPRESENTATION = 'Invalid number representation';
20734
20734
  var INVALID_RADIX = 'Invalid radix';
20735
20735
  var $RangeError = RangeError;
20736
20736
  var $SyntaxError = SyntaxError;
20737
20737
  var $TypeError = TypeError;
20738
+ var $parseInt = parseInt;
20738
20739
  var pow = Math.pow;
20739
20740
  var valid = /^[\d.a-z]+$/;
20740
20741
  var charAt = uncurryThis(''.charAt);
@@ -20759,8 +20760,8 @@ $({ target: 'Number', stat: true, forced: true }, {
20759
20760
  if (R < 2 || R > 36) throw new $RangeError(INVALID_RADIX);
20760
20761
  if (!exec(valid, string)) throw new $SyntaxError(INVALID_NUMBER_REPRESENTATION);
20761
20762
  var parts = split(string, '.');
20762
- var mathNum = parseInt(parts[0], R);
20763
- if (parts.length > 1) mathNum += parseInt(parts[1], R) / pow(R, parts[1].length);
20763
+ var mathNum = $parseInt(parts[0], R);
20764
+ if (parts.length > 1) mathNum += $parseInt(parts[1], R) / pow(R, parts[1].length);
20764
20765
  if (numberToString(mathNum, R) !== string) throw new $SyntaxError(INVALID_NUMBER_REPRESENTATION);
20765
20766
  return sign * mathNum;
20766
20767
  }
@@ -22718,8 +22719,6 @@ $({ target: 'String', proto: true, forced: true }, {
22718
22719
 
22719
22720
  var FREEZING = __webpack_require__(249);
22720
22721
  var $ = __webpack_require__(3);
22721
- var shared = __webpack_require__(35);
22722
- var getBuiltIn = __webpack_require__(24);
22723
22722
  var makeBuiltIn = __webpack_require__(49);
22724
22723
  var uncurryThis = __webpack_require__(14);
22725
22724
  var apply = __webpack_require__(96);
@@ -22729,18 +22728,15 @@ var isCallable = __webpack_require__(21);
22729
22728
  var lengthOfArrayLike = __webpack_require__(64);
22730
22729
  var defineProperty = __webpack_require__(45).f;
22731
22730
  var createArrayFromList = __webpack_require__(77);
22731
+ var WeakMapHelpers = __webpack_require__(703);
22732
22732
  var cooked = __webpack_require__(700);
22733
- var parse = __webpack_require__(703);
22733
+ var parse = __webpack_require__(704);
22734
22734
  var whitespaces = __webpack_require__(275);
22735
22735
 
22736
- var WeakMap = getBuiltIn('WeakMap');
22737
- var globalDedentRegistry = shared('GlobalDedentRegistry', new WeakMap());
22738
-
22739
- /* eslint-disable no-self-assign -- prototype methods protection */
22740
- globalDedentRegistry.has = globalDedentRegistry.has;
22741
- globalDedentRegistry.get = globalDedentRegistry.get;
22742
- globalDedentRegistry.set = globalDedentRegistry.set;
22743
- /* eslint-enable no-self-assign -- prototype methods protection */
22736
+ var DedentMap = new WeakMapHelpers.WeakMap();
22737
+ var weakMapGet = WeakMapHelpers.get;
22738
+ var weakMapHas = WeakMapHelpers.has;
22739
+ var weakMapSet = WeakMapHelpers.set;
22744
22740
 
22745
22741
  var $Array = Array;
22746
22742
  var $TypeError = TypeError;
@@ -22765,14 +22761,14 @@ var dedentTemplateStringsArray = function (template) {
22765
22761
  var rawInput = template.raw;
22766
22762
  // https://github.com/tc39/proposal-string-dedent/issues/75
22767
22763
  if (FREEZING && !isFrozen(rawInput)) throw new $TypeError('Raw template should be frozen');
22768
- if (globalDedentRegistry.has(rawInput)) return globalDedentRegistry.get(rawInput);
22764
+ if (weakMapHas(DedentMap, rawInput)) return weakMapGet(DedentMap, rawInput);
22769
22765
  var raw = dedentStringsArray(rawInput);
22770
22766
  var cookedArr = cookStrings(raw);
22771
22767
  defineProperty(cookedArr, 'raw', {
22772
22768
  value: freeze(raw)
22773
22769
  });
22774
22770
  freeze(cookedArr);
22775
- globalDedentRegistry.set(rawInput, cookedArr);
22771
+ weakMapSet(DedentMap, rawInput, cookedArr);
22776
22772
  return cookedArr;
22777
22773
  };
22778
22774
 
@@ -22880,6 +22876,27 @@ $({ target: 'String', stat: true, forced: true }, {
22880
22876
 
22881
22877
  "use strict";
22882
22878
 
22879
+ var uncurryThis = __webpack_require__(14);
22880
+
22881
+ // eslint-disable-next-line es/no-weak-map -- safe
22882
+ var WeakMapPrototype = WeakMap.prototype;
22883
+
22884
+ module.exports = {
22885
+ // eslint-disable-next-line es/no-weak-map -- safe
22886
+ WeakMap: WeakMap,
22887
+ set: uncurryThis(WeakMapPrototype.set),
22888
+ get: uncurryThis(WeakMapPrototype.get),
22889
+ has: uncurryThis(WeakMapPrototype.has),
22890
+ remove: uncurryThis(WeakMapPrototype['delete'])
22891
+ };
22892
+
22893
+
22894
+ /***/ }),
22895
+ /* 704 */
22896
+ /***/ (function(module, exports, __webpack_require__) {
22897
+
22898
+ "use strict";
22899
+
22883
22900
  // adapted from https://github.com/jridgewell/string-dedent
22884
22901
  var getBuiltIn = __webpack_require__(24);
22885
22902
  var uncurryThis = __webpack_require__(14);
@@ -23001,7 +23018,7 @@ module.exports = function (raw) {
23001
23018
 
23002
23019
 
23003
23020
  /***/ }),
23004
- /* 704 */
23021
+ /* 705 */
23005
23022
  /***/ (function(module, exports, __webpack_require__) {
23006
23023
 
23007
23024
  "use strict";
@@ -23029,7 +23046,7 @@ if (Symbol) {
23029
23046
 
23030
23047
 
23031
23048
  /***/ }),
23032
- /* 705 */
23049
+ /* 706 */
23033
23050
  /***/ (function(module, exports, __webpack_require__) {
23034
23051
 
23035
23052
  "use strict";
@@ -23057,13 +23074,13 @@ if (Symbol) {
23057
23074
 
23058
23075
 
23059
23076
  /***/ }),
23060
- /* 706 */
23077
+ /* 707 */
23061
23078
  /***/ (function(module, exports, __webpack_require__) {
23062
23079
 
23063
23080
  "use strict";
23064
23081
 
23065
23082
  var $ = __webpack_require__(3);
23066
- var isRegisteredSymbol = __webpack_require__(707);
23083
+ var isRegisteredSymbol = __webpack_require__(708);
23067
23084
 
23068
23085
  // `Symbol.isRegisteredSymbol` method
23069
23086
  // https://tc39.es/proposal-symbol-predicates/#sec-symbol-isregisteredsymbol
@@ -23073,7 +23090,7 @@ $({ target: 'Symbol', stat: true }, {
23073
23090
 
23074
23091
 
23075
23092
  /***/ }),
23076
- /* 707 */
23093
+ /* 708 */
23077
23094
  /***/ (function(module, exports, __webpack_require__) {
23078
23095
 
23079
23096
  "use strict";
@@ -23097,13 +23114,13 @@ module.exports = Symbol.isRegisteredSymbol || function isRegisteredSymbol(value)
23097
23114
 
23098
23115
 
23099
23116
  /***/ }),
23100
- /* 708 */
23117
+ /* 709 */
23101
23118
  /***/ (function(module, exports, __webpack_require__) {
23102
23119
 
23103
23120
  "use strict";
23104
23121
 
23105
23122
  var $ = __webpack_require__(3);
23106
- var isRegisteredSymbol = __webpack_require__(707);
23123
+ var isRegisteredSymbol = __webpack_require__(708);
23107
23124
 
23108
23125
  // `Symbol.isRegistered` method
23109
23126
  // obsolete version of https://tc39.es/proposal-symbol-predicates/#sec-symbol-isregisteredsymbol
@@ -23113,13 +23130,13 @@ $({ target: 'Symbol', stat: true, name: 'isRegisteredSymbol' }, {
23113
23130
 
23114
23131
 
23115
23132
  /***/ }),
23116
- /* 709 */
23133
+ /* 710 */
23117
23134
  /***/ (function(module, exports, __webpack_require__) {
23118
23135
 
23119
23136
  "use strict";
23120
23137
 
23121
23138
  var $ = __webpack_require__(3);
23122
- var isWellKnownSymbol = __webpack_require__(710);
23139
+ var isWellKnownSymbol = __webpack_require__(711);
23123
23140
 
23124
23141
  // `Symbol.isWellKnownSymbol` method
23125
23142
  // https://tc39.es/proposal-symbol-predicates/#sec-symbol-iswellknownsymbol
@@ -23130,7 +23147,7 @@ $({ target: 'Symbol', stat: true, forced: true }, {
23130
23147
 
23131
23148
 
23132
23149
  /***/ }),
23133
- /* 710 */
23150
+ /* 711 */
23134
23151
  /***/ (function(module, exports, __webpack_require__) {
23135
23152
 
23136
23153
  "use strict";
@@ -23172,13 +23189,13 @@ module.exports = function isWellKnownSymbol(value) {
23172
23189
 
23173
23190
 
23174
23191
  /***/ }),
23175
- /* 711 */
23192
+ /* 712 */
23176
23193
  /***/ (function(module, exports, __webpack_require__) {
23177
23194
 
23178
23195
  "use strict";
23179
23196
 
23180
23197
  var $ = __webpack_require__(3);
23181
- var isWellKnownSymbol = __webpack_require__(710);
23198
+ var isWellKnownSymbol = __webpack_require__(711);
23182
23199
 
23183
23200
  // `Symbol.isWellKnown` method
23184
23201
  // obsolete version of https://tc39.es/proposal-symbol-predicates/#sec-symbol-iswellknownsymbol
@@ -23189,7 +23206,7 @@ $({ target: 'Symbol', stat: true, name: 'isWellKnownSymbol', forced: true }, {
23189
23206
 
23190
23207
 
23191
23208
  /***/ }),
23192
- /* 712 */
23209
+ /* 713 */
23193
23210
  /***/ (function(module, exports, __webpack_require__) {
23194
23211
 
23195
23212
  "use strict";
@@ -23202,7 +23219,7 @@ defineWellKnownSymbol('matcher');
23202
23219
 
23203
23220
 
23204
23221
  /***/ }),
23205
- /* 713 */
23222
+ /* 714 */
23206
23223
  /***/ (function(module, exports, __webpack_require__) {
23207
23224
 
23208
23225
  "use strict";
@@ -23215,7 +23232,7 @@ defineWellKnownSymbol('metadata');
23215
23232
 
23216
23233
 
23217
23234
  /***/ }),
23218
- /* 714 */
23235
+ /* 715 */
23219
23236
  /***/ (function(module, exports, __webpack_require__) {
23220
23237
 
23221
23238
  "use strict";
@@ -23229,7 +23246,7 @@ defineWellKnownSymbol('metadataKey');
23229
23246
 
23230
23247
 
23231
23248
  /***/ }),
23232
- /* 715 */
23249
+ /* 716 */
23233
23250
  /***/ (function(module, exports, __webpack_require__) {
23234
23251
 
23235
23252
  "use strict";
@@ -23242,7 +23259,7 @@ defineWellKnownSymbol('observable');
23242
23259
 
23243
23260
 
23244
23261
  /***/ }),
23245
- /* 716 */
23262
+ /* 717 */
23246
23263
  /***/ (function(module, exports, __webpack_require__) {
23247
23264
 
23248
23265
  "use strict";
@@ -23256,7 +23273,7 @@ defineWellKnownSymbol('patternMatch');
23256
23273
 
23257
23274
 
23258
23275
  /***/ }),
23259
- /* 717 */
23276
+ /* 718 */
23260
23277
  /***/ (function(module, exports, __webpack_require__) {
23261
23278
 
23262
23279
  "use strict";
@@ -23268,7 +23285,7 @@ defineWellKnownSymbol('replaceAll');
23268
23285
 
23269
23286
 
23270
23287
  /***/ }),
23271
- /* 718 */
23288
+ /* 719 */
23272
23289
  /***/ (function(module, exports, __webpack_require__) {
23273
23290
 
23274
23291
  "use strict";
@@ -23300,7 +23317,7 @@ exportTypedArrayStaticMethod('fromAsync', function fromAsync(asyncItems /* , map
23300
23317
 
23301
23318
 
23302
23319
  /***/ }),
23303
- /* 719 */
23320
+ /* 720 */
23304
23321
  /***/ (function(module, exports, __webpack_require__) {
23305
23322
 
23306
23323
  "use strict";
@@ -23322,7 +23339,7 @@ exportTypedArrayMethod('filterOut', function filterOut(callbackfn /* , thisArg *
23322
23339
 
23323
23340
 
23324
23341
  /***/ }),
23325
- /* 720 */
23342
+ /* 721 */
23326
23343
  /***/ (function(module, exports, __webpack_require__) {
23327
23344
 
23328
23345
  "use strict";
@@ -23343,7 +23360,7 @@ exportTypedArrayMethod('filterReject', function filterReject(callbackfn /* , thi
23343
23360
 
23344
23361
 
23345
23362
  /***/ }),
23346
- /* 721 */
23363
+ /* 722 */
23347
23364
  /***/ (function(module, exports, __webpack_require__) {
23348
23365
 
23349
23366
  "use strict";
@@ -23365,7 +23382,7 @@ exportTypedArrayMethod('groupBy', function groupBy(callbackfn /* , thisArg */) {
23365
23382
 
23366
23383
 
23367
23384
  /***/ }),
23368
- /* 722 */
23385
+ /* 723 */
23369
23386
  /***/ (function(module, exports, __webpack_require__) {
23370
23387
 
23371
23388
  "use strict";
@@ -23440,7 +23457,7 @@ exportTypedArrayMethod('toSpliced', function toSpliced(start, deleteCount /* , .
23440
23457
 
23441
23458
 
23442
23459
  /***/ }),
23443
- /* 723 */
23460
+ /* 724 */
23444
23461
  /***/ (function(module, exports, __webpack_require__) {
23445
23462
 
23446
23463
  "use strict";
@@ -23464,14 +23481,14 @@ exportTypedArrayMethod('uniqueBy', function uniqueBy(resolver) {
23464
23481
 
23465
23482
 
23466
23483
  /***/ }),
23467
- /* 724 */
23484
+ /* 725 */
23468
23485
  /***/ (function(module, exports, __webpack_require__) {
23469
23486
 
23470
23487
  "use strict";
23471
23488
 
23472
23489
  var $ = __webpack_require__(3);
23473
- var aWeakMap = __webpack_require__(725);
23474
- var remove = __webpack_require__(726).remove;
23490
+ var aWeakMap = __webpack_require__(726);
23491
+ var remove = __webpack_require__(703).remove;
23475
23492
 
23476
23493
  // `WeakMap.prototype.deleteAll` method
23477
23494
  // https://github.com/tc39/proposal-collection-methods
@@ -23489,12 +23506,12 @@ $({ target: 'WeakMap', proto: true, real: true, forced: true }, {
23489
23506
 
23490
23507
 
23491
23508
  /***/ }),
23492
- /* 725 */
23509
+ /* 726 */
23493
23510
  /***/ (function(module, exports, __webpack_require__) {
23494
23511
 
23495
23512
  "use strict";
23496
23513
 
23497
- var has = __webpack_require__(726).has;
23514
+ var has = __webpack_require__(703).has;
23498
23515
 
23499
23516
  // Perform ? RequireInternalSlot(M, [[WeakMapData]])
23500
23517
  module.exports = function (it) {
@@ -23503,27 +23520,6 @@ module.exports = function (it) {
23503
23520
  };
23504
23521
 
23505
23522
 
23506
- /***/ }),
23507
- /* 726 */
23508
- /***/ (function(module, exports, __webpack_require__) {
23509
-
23510
- "use strict";
23511
-
23512
- var uncurryThis = __webpack_require__(14);
23513
-
23514
- // eslint-disable-next-line es/no-weak-map -- safe
23515
- var WeakMapPrototype = WeakMap.prototype;
23516
-
23517
- module.exports = {
23518
- // eslint-disable-next-line es/no-weak-map -- safe
23519
- WeakMap: WeakMap,
23520
- set: uncurryThis(WeakMapPrototype.set),
23521
- get: uncurryThis(WeakMapPrototype.get),
23522
- has: uncurryThis(WeakMapPrototype.has),
23523
- remove: uncurryThis(WeakMapPrototype['delete'])
23524
- };
23525
-
23526
-
23527
23523
  /***/ }),
23528
23524
  /* 727 */
23529
23525
  /***/ (function(module, exports, __webpack_require__) {
@@ -23563,8 +23559,8 @@ $({ target: 'WeakMap', stat: true, forced: true }, {
23563
23559
  "use strict";
23564
23560
 
23565
23561
  var $ = __webpack_require__(3);
23566
- var aWeakMap = __webpack_require__(725);
23567
- var WeakMapHelpers = __webpack_require__(726);
23562
+ var aWeakMap = __webpack_require__(726);
23563
+ var WeakMapHelpers = __webpack_require__(703);
23568
23564
 
23569
23565
  var get = WeakMapHelpers.get;
23570
23566
  var has = WeakMapHelpers.has;
@@ -24365,7 +24361,7 @@ module.exports = function (scheduler, hasTimeArg) {
24365
24361
 
24366
24362
  "use strict";
24367
24363
 
24368
- /* global Bun -- Deno case */
24364
+ /* global Bun -- Bun case */
24369
24365
  module.exports = typeof Bun == 'function' && Bun && typeof Bun.version == 'string';
24370
24366
 
24371
24367
 
@@ -24611,6 +24607,7 @@ var cloneBuffer = function (value, map, $type) {
24611
24607
  } else {
24612
24608
  length = value.byteLength;
24613
24609
  options = 'maxByteLength' in value ? { maxByteLength: value.maxByteLength } : undefined;
24610
+ // eslint-disable-next-line es/no-resizable-and-growable-arraybuffers -- safe
24614
24611
  clone = new ArrayBuffer(length, options);
24615
24612
  source = new DataView(value);
24616
24613
  target = new DataView(clone);