core-js-bundle 3.29.0 → 3.29.1
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 +21 -24
- package/minified.js +10 -10
- 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.29.
|
|
2
|
+
* core-js 3.29.1
|
|
3
3
|
* © 2014-2023 Denis Pushkarev (zloirock.ru)
|
|
4
|
-
* license: https://github.com/zloirock/core-js/blob/v3.29.
|
|
4
|
+
* license: https://github.com/zloirock/core-js/blob/v3.29.1/LICENSE
|
|
5
5
|
* source: https://github.com/zloirock/core-js
|
|
6
6
|
*/
|
|
7
7
|
!function (undefined) { 'use strict'; /******/ (function(modules) { // webpackBootstrap
|
|
@@ -1389,10 +1389,10 @@ var store = __webpack_require__(37);
|
|
|
1389
1389
|
(module.exports = function (key, value) {
|
|
1390
1390
|
return store[key] || (store[key] = value !== undefined ? value : {});
|
|
1391
1391
|
})('versions', []).push({
|
|
1392
|
-
version: '3.29.
|
|
1392
|
+
version: '3.29.1',
|
|
1393
1393
|
mode: IS_PURE ? 'pure' : 'global',
|
|
1394
1394
|
copyright: '© 2014-2023 Denis Pushkarev (zloirock.ru)',
|
|
1395
|
-
license: 'https://github.com/zloirock/core-js/blob/v3.29.
|
|
1395
|
+
license: 'https://github.com/zloirock/core-js/blob/v3.29.1/LICENSE',
|
|
1396
1396
|
source: 'https://github.com/zloirock/core-js'
|
|
1397
1397
|
});
|
|
1398
1398
|
|
|
@@ -17047,7 +17047,7 @@ var createIteratorConstructor = __webpack_require__(171);
|
|
|
17047
17047
|
var createIterResultObject = __webpack_require__(173);
|
|
17048
17048
|
var isNullOrUndefined = __webpack_require__(17);
|
|
17049
17049
|
var isObject = __webpack_require__(20);
|
|
17050
|
-
var
|
|
17050
|
+
var defineBuiltInAccessor = __webpack_require__(79);
|
|
17051
17051
|
var DESCRIPTORS = __webpack_require__(6);
|
|
17052
17052
|
|
|
17053
17053
|
var INCORRECT_RANGE = 'Incorrect Iterator.range arguments';
|
|
@@ -17096,7 +17096,7 @@ var $RangeIterator = createIteratorConstructor(function NumericRangeIterator(sta
|
|
|
17096
17096
|
start: start,
|
|
17097
17097
|
end: end,
|
|
17098
17098
|
step: step,
|
|
17099
|
-
|
|
17099
|
+
inclusive: inclusiveEnd,
|
|
17100
17100
|
hitsEnd: hitsEnd,
|
|
17101
17101
|
currentCount: zero,
|
|
17102
17102
|
zero: zero
|
|
@@ -17115,7 +17115,7 @@ var $RangeIterator = createIteratorConstructor(function NumericRangeIterator(sta
|
|
|
17115
17115
|
var step = state.step;
|
|
17116
17116
|
var currentYieldingValue = start + (step * state.currentCount++);
|
|
17117
17117
|
if (currentYieldingValue === end) state.hitsEnd = true;
|
|
17118
|
-
var inclusiveEnd = state.
|
|
17118
|
+
var inclusiveEnd = state.inclusive;
|
|
17119
17119
|
var endCondition;
|
|
17120
17120
|
if (end > start) {
|
|
17121
17121
|
endCondition = inclusiveEnd ? currentYieldingValue > end : currentYieldingValue >= end;
|
|
@@ -17128,25 +17128,22 @@ var $RangeIterator = createIteratorConstructor(function NumericRangeIterator(sta
|
|
|
17128
17128
|
} return createIterResultObject(currentYieldingValue, false);
|
|
17129
17129
|
});
|
|
17130
17130
|
|
|
17131
|
-
var
|
|
17132
|
-
|
|
17131
|
+
var addGetter = function (key) {
|
|
17132
|
+
defineBuiltInAccessor($RangeIterator.prototype, key, {
|
|
17133
|
+
get: function () {
|
|
17134
|
+
return getInternalState(this)[key];
|
|
17135
|
+
},
|
|
17136
|
+
set: function () { /* empty */ },
|
|
17137
|
+
configurable: true,
|
|
17138
|
+
enumerable: false
|
|
17139
|
+
});
|
|
17133
17140
|
};
|
|
17134
17141
|
|
|
17135
17142
|
if (DESCRIPTORS) {
|
|
17136
|
-
|
|
17137
|
-
|
|
17138
|
-
|
|
17139
|
-
|
|
17140
|
-
end: getter(function () {
|
|
17141
|
-
return getInternalState(this).end;
|
|
17142
|
-
}),
|
|
17143
|
-
inclusive: getter(function () {
|
|
17144
|
-
return getInternalState(this).inclusiveEnd;
|
|
17145
|
-
}),
|
|
17146
|
-
step: getter(function () {
|
|
17147
|
-
return getInternalState(this).step;
|
|
17148
|
-
})
|
|
17149
|
-
});
|
|
17143
|
+
addGetter('start');
|
|
17144
|
+
addGetter('end');
|
|
17145
|
+
addGetter('inclusive');
|
|
17146
|
+
addGetter('step');
|
|
17150
17147
|
}
|
|
17151
17148
|
|
|
17152
17149
|
module.exports = $RangeIterator;
|
|
@@ -20569,7 +20566,7 @@ var isSetLike = function (it) {
|
|
|
20569
20566
|
// fallback old -> new set methods proposal arguments
|
|
20570
20567
|
module.exports = function (it) {
|
|
20571
20568
|
if (isSetLike(it)) return it;
|
|
20572
|
-
|
|
20569
|
+
return isIterable(it) ? new Set(it) : it;
|
|
20573
20570
|
};
|
|
20574
20571
|
|
|
20575
20572
|
|