core-js-bundle 3.38.0 → 3.38.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 +149 -50
- package/minified.js +10 -10
- package/minified.js.map +1 -1
- package/package.json +2 -2
package/index.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* core-js 3.38.
|
|
2
|
+
* core-js 3.38.1
|
|
3
3
|
* © 2014-2024 Denis Pushkarev (zloirock.ru)
|
|
4
|
-
* license: https://github.com/zloirock/core-js/blob/v3.38.
|
|
4
|
+
* license: https://github.com/zloirock/core-js/blob/v3.38.1/LICENSE
|
|
5
5
|
* source: https://github.com/zloirock/core-js
|
|
6
6
|
*/
|
|
7
7
|
!function (undefined) { 'use strict'; /******/ (function(modules) { // webpackBootstrap
|
|
@@ -1491,10 +1491,10 @@ var SHARED = '__core-js_shared__';
|
|
|
1491
1491
|
var store = module.exports = globalThis[SHARED] || defineGlobalProperty(SHARED, {});
|
|
1492
1492
|
|
|
1493
1493
|
(store.versions || (store.versions = [])).push({
|
|
1494
|
-
version: '3.38.
|
|
1494
|
+
version: '3.38.1',
|
|
1495
1495
|
mode: IS_PURE ? 'pure' : 'global',
|
|
1496
1496
|
copyright: '© 2014-2024 Denis Pushkarev (zloirock.ru)',
|
|
1497
|
-
license: 'https://github.com/zloirock/core-js/blob/v3.38.
|
|
1497
|
+
license: 'https://github.com/zloirock/core-js/blob/v3.38.1/LICENSE',
|
|
1498
1498
|
source: 'https://github.com/zloirock/core-js'
|
|
1499
1499
|
});
|
|
1500
1500
|
|
|
@@ -3128,6 +3128,7 @@ if (DESCRIPTORS && isCallable(NativeSymbol) && (!('description' in SymbolPrototy
|
|
|
3128
3128
|
var SymbolWrapper = function Symbol() {
|
|
3129
3129
|
var description = arguments.length < 1 || arguments[0] === undefined ? undefined : toString(arguments[0]);
|
|
3130
3130
|
var result = isPrototypeOf(SymbolPrototype, this)
|
|
3131
|
+
// eslint-disable-next-line sonar/inconsistent-function-call -- ok
|
|
3131
3132
|
? new NativeSymbol(description)
|
|
3132
3133
|
// in Edge 13, String(Symbol(undefined)) === 'Symbol(undefined)'
|
|
3133
3134
|
: description === undefined ? NativeSymbol() : NativeSymbol(description);
|
|
@@ -4962,7 +4963,7 @@ module.exports = defineIterator(Array, 'Array', function (iterated, kind) {
|
|
|
4962
4963
|
var target = state.target;
|
|
4963
4964
|
var index = state.index++;
|
|
4964
4965
|
if (!target || index >= target.length) {
|
|
4965
|
-
state.target =
|
|
4966
|
+
state.target = null;
|
|
4966
4967
|
return createIterResultObject(undefined, true);
|
|
4967
4968
|
}
|
|
4968
4969
|
switch (state.kind) {
|
|
@@ -6483,7 +6484,7 @@ if (!NATIVE_ARRAY_BUFFER) {
|
|
|
6483
6484
|
});
|
|
6484
6485
|
} else {
|
|
6485
6486
|
var INCORRECT_ARRAY_BUFFER_NAME = PROPER_FUNCTION_NAME && NativeArrayBuffer.name !== ARRAY_BUFFER;
|
|
6486
|
-
/* eslint-disable no-new -- required for testing */
|
|
6487
|
+
/* eslint-disable no-new, sonar/inconsistent-function-call -- required for testing */
|
|
6487
6488
|
if (!fails(function () {
|
|
6488
6489
|
NativeArrayBuffer(1);
|
|
6489
6490
|
}) || !fails(function () {
|
|
@@ -6494,7 +6495,7 @@ if (!NATIVE_ARRAY_BUFFER) {
|
|
|
6494
6495
|
new NativeArrayBuffer(NaN);
|
|
6495
6496
|
return NativeArrayBuffer.length !== 1 || INCORRECT_ARRAY_BUFFER_NAME && !CONFIGURABLE_FUNCTION_NAME;
|
|
6496
6497
|
})) {
|
|
6497
|
-
/* eslint-enable no-new -- required for testing */
|
|
6498
|
+
/* eslint-enable no-new, sonar/inconsistent-function-call -- required for testing */
|
|
6498
6499
|
$ArrayBuffer = function ArrayBuffer(length) {
|
|
6499
6500
|
anInstance(this, ArrayBufferPrototype);
|
|
6500
6501
|
return inheritIfRequired(new NativeArrayBuffer(toIndex(length)), this, $ArrayBuffer);
|
|
@@ -8214,8 +8215,8 @@ module.exports = {
|
|
|
8214
8215
|
setInternalState(that, {
|
|
8215
8216
|
type: CONSTRUCTOR_NAME,
|
|
8216
8217
|
index: create(null),
|
|
8217
|
-
first:
|
|
8218
|
-
last:
|
|
8218
|
+
first: null,
|
|
8219
|
+
last: null,
|
|
8219
8220
|
size: 0
|
|
8220
8221
|
});
|
|
8221
8222
|
if (!DESCRIPTORS) that.size = 0;
|
|
@@ -8240,7 +8241,7 @@ module.exports = {
|
|
|
8240
8241
|
key: key,
|
|
8241
8242
|
value: value,
|
|
8242
8243
|
previous: previous = state.last,
|
|
8243
|
-
next:
|
|
8244
|
+
next: null,
|
|
8244
8245
|
removed: false
|
|
8245
8246
|
};
|
|
8246
8247
|
if (!state.first) state.first = entry;
|
|
@@ -8274,10 +8275,10 @@ module.exports = {
|
|
|
8274
8275
|
var entry = state.first;
|
|
8275
8276
|
while (entry) {
|
|
8276
8277
|
entry.removed = true;
|
|
8277
|
-
if (entry.previous) entry.previous = entry.previous.next =
|
|
8278
|
+
if (entry.previous) entry.previous = entry.previous.next = null;
|
|
8278
8279
|
entry = entry.next;
|
|
8279
8280
|
}
|
|
8280
|
-
state.first = state.last =
|
|
8281
|
+
state.first = state.last = null;
|
|
8281
8282
|
state.index = create(null);
|
|
8282
8283
|
if (DESCRIPTORS) state.size = 0;
|
|
8283
8284
|
else that.size = 0;
|
|
@@ -8369,7 +8370,7 @@ module.exports = {
|
|
|
8369
8370
|
target: iterated,
|
|
8370
8371
|
state: getInternalCollectionState(iterated),
|
|
8371
8372
|
kind: kind,
|
|
8372
|
-
last:
|
|
8373
|
+
last: null
|
|
8373
8374
|
});
|
|
8374
8375
|
}, function () {
|
|
8375
8376
|
var state = getInternalIteratorState(this);
|
|
@@ -8380,7 +8381,7 @@ module.exports = {
|
|
|
8380
8381
|
// get next entry
|
|
8381
8382
|
if (!state.target || !(state.last = entry = entry ? entry.next : state.state.first)) {
|
|
8382
8383
|
// or finish the iteration
|
|
8383
|
-
state.target =
|
|
8384
|
+
state.target = null;
|
|
8384
8385
|
return createIterResultObject(undefined, true);
|
|
8385
8386
|
}
|
|
8386
8387
|
// return step by kind
|
|
@@ -9758,6 +9759,8 @@ if (DESCRIPTORS) {
|
|
|
9758
9759
|
|
|
9759
9760
|
"use strict";
|
|
9760
9761
|
|
|
9762
|
+
/* eslint-disable no-undef, no-useless-call, sonar/no-reference-error -- required for testing */
|
|
9763
|
+
/* eslint-disable es/no-legacy-object-prototype-accessor-methods -- required for testing */
|
|
9761
9764
|
var IS_PURE = __webpack_require__(36);
|
|
9762
9765
|
var globalThis = __webpack_require__(4);
|
|
9763
9766
|
var fails = __webpack_require__(7);
|
|
@@ -9770,7 +9773,6 @@ module.exports = IS_PURE || !fails(function () {
|
|
|
9770
9773
|
if (WEBKIT && WEBKIT < 535) return;
|
|
9771
9774
|
var key = Math.random();
|
|
9772
9775
|
// In FF throws only define methods
|
|
9773
|
-
// eslint-disable-next-line no-undef, no-useless-call, es/no-legacy-object-prototype-accessor-methods -- required for testing
|
|
9774
9776
|
__defineSetter__.call(null, key, function () { /* empty */ });
|
|
9775
9777
|
delete globalThis[key];
|
|
9776
9778
|
});
|
|
@@ -10734,7 +10736,7 @@ if (FORCED_PROMISE_CONSTRUCTOR) {
|
|
|
10734
10736
|
reactions: new Queue(),
|
|
10735
10737
|
rejection: false,
|
|
10736
10738
|
state: PENDING,
|
|
10737
|
-
value:
|
|
10739
|
+
value: null
|
|
10738
10740
|
});
|
|
10739
10741
|
};
|
|
10740
10742
|
|
|
@@ -12073,6 +12075,7 @@ var BASE_FORCED = DESCRIPTORS &&
|
|
|
12073
12075
|
(!CORRECT_NEW || MISSED_STICKY || UNSUPPORTED_DOT_ALL || UNSUPPORTED_NCG || fails(function () {
|
|
12074
12076
|
re2[MATCH] = false;
|
|
12075
12077
|
// RegExp constructor can alter flags and IsRegExp works correct with @@match
|
|
12078
|
+
// eslint-disable-next-line sonar/inconsistent-function-call -- required for testing
|
|
12076
12079
|
return NativeRegExp(re1) !== re1 || NativeRegExp(re2) === re2 || String(NativeRegExp(re1, 'i')) !== '/a/i';
|
|
12077
12080
|
}));
|
|
12078
12081
|
|
|
@@ -15244,7 +15247,7 @@ if (DESCRIPTORS) {
|
|
|
15244
15247
|
|
|
15245
15248
|
"use strict";
|
|
15246
15249
|
|
|
15247
|
-
/* eslint-disable no-new -- required for testing */
|
|
15250
|
+
/* eslint-disable no-new, sonar/inconsistent-function-call -- required for testing */
|
|
15248
15251
|
var globalThis = __webpack_require__(4);
|
|
15249
15252
|
var fails = __webpack_require__(7);
|
|
15250
15253
|
var checkCorrectnessOfIteration = __webpack_require__(164);
|
|
@@ -16647,7 +16650,7 @@ module.exports = {
|
|
|
16647
16650
|
setInternalState(that, {
|
|
16648
16651
|
type: CONSTRUCTOR_NAME,
|
|
16649
16652
|
id: id++,
|
|
16650
|
-
frozen:
|
|
16653
|
+
frozen: null
|
|
16651
16654
|
});
|
|
16652
16655
|
if (!isNullOrUndefined(iterable)) iterate(iterable, that[ADDER], { that: that, AS_ENTRIES: IS_MAP });
|
|
16653
16656
|
});
|
|
@@ -16695,7 +16698,7 @@ module.exports = {
|
|
|
16695
16698
|
if (isObject(key)) {
|
|
16696
16699
|
var data = getWeakData(key);
|
|
16697
16700
|
if (data === true) return uncaughtFrozenStore(state).get(key);
|
|
16698
|
-
|
|
16701
|
+
if (data) return data[state.id];
|
|
16699
16702
|
}
|
|
16700
16703
|
},
|
|
16701
16704
|
// `WeakMap.prototype.set(key, value)` method
|
|
@@ -17622,14 +17625,14 @@ defineBuiltIns(AsyncDisposableStackPrototype, {
|
|
|
17622
17625
|
var loop = function () {
|
|
17623
17626
|
if (i) {
|
|
17624
17627
|
var disposeMethod = stack[--i];
|
|
17625
|
-
stack[i] =
|
|
17628
|
+
stack[i] = null;
|
|
17626
17629
|
try {
|
|
17627
17630
|
Promise.resolve(disposeMethod()).then(loop, handleError);
|
|
17628
17631
|
} catch (error) {
|
|
17629
17632
|
handleError(error);
|
|
17630
17633
|
}
|
|
17631
17634
|
} else {
|
|
17632
|
-
internalState.stack =
|
|
17635
|
+
internalState.stack = null;
|
|
17633
17636
|
thrown ? reject(suppressed) : resolve(undefined);
|
|
17634
17637
|
}
|
|
17635
17638
|
};
|
|
@@ -19036,7 +19039,7 @@ defineBuiltIns(DisposableStackPrototype, {
|
|
|
19036
19039
|
var suppressed;
|
|
19037
19040
|
while (i) {
|
|
19038
19041
|
var disposeMethod = stack[--i];
|
|
19039
|
-
stack[i] =
|
|
19042
|
+
stack[i] = null;
|
|
19040
19043
|
try {
|
|
19041
19044
|
disposeMethod();
|
|
19042
19045
|
} catch (errorResult) {
|
|
@@ -19048,7 +19051,7 @@ defineBuiltIns(DisposableStackPrototype, {
|
|
|
19048
19051
|
}
|
|
19049
19052
|
}
|
|
19050
19053
|
}
|
|
19051
|
-
internalState.stack =
|
|
19054
|
+
internalState.stack = null;
|
|
19052
19055
|
if (thrown) throw suppressed;
|
|
19053
19056
|
},
|
|
19054
19057
|
use: function use(value) {
|
|
@@ -21699,8 +21702,8 @@ var getSubscriptionObserverInternalState = getterFor(SUBSCRIPTION_OBSERVER);
|
|
|
21699
21702
|
|
|
21700
21703
|
var SubscriptionState = function (observer) {
|
|
21701
21704
|
this.observer = anObject(observer);
|
|
21702
|
-
this.cleanup =
|
|
21703
|
-
this.subscriptionObserver =
|
|
21705
|
+
this.cleanup = null;
|
|
21706
|
+
this.subscriptionObserver = null;
|
|
21704
21707
|
};
|
|
21705
21708
|
|
|
21706
21709
|
SubscriptionState.prototype = {
|
|
@@ -21708,7 +21711,7 @@ SubscriptionState.prototype = {
|
|
|
21708
21711
|
clean: function () {
|
|
21709
21712
|
var cleanup = this.cleanup;
|
|
21710
21713
|
if (cleanup) {
|
|
21711
|
-
this.cleanup =
|
|
21714
|
+
this.cleanup = null;
|
|
21712
21715
|
try {
|
|
21713
21716
|
cleanup();
|
|
21714
21717
|
} catch (error) {
|
|
@@ -21722,10 +21725,10 @@ SubscriptionState.prototype = {
|
|
|
21722
21725
|
var subscriptionObserver = this.subscriptionObserver;
|
|
21723
21726
|
subscription.closed = true;
|
|
21724
21727
|
if (subscriptionObserver) subscriptionObserver.closed = true;
|
|
21725
|
-
} this.observer =
|
|
21728
|
+
} this.observer = null;
|
|
21726
21729
|
},
|
|
21727
21730
|
isClosed: function () {
|
|
21728
|
-
return this.observer ===
|
|
21731
|
+
return this.observer === null;
|
|
21729
21732
|
}
|
|
21730
21733
|
};
|
|
21731
21734
|
|
|
@@ -23073,6 +23076,7 @@ var dedentStringsArray = function (template) {
|
|
|
23073
23076
|
lines[lines.length - 2] = '';
|
|
23074
23077
|
lines[lines.length - 1] = '';
|
|
23075
23078
|
}
|
|
23079
|
+
// eslint-disable-next-line sonar/no-redundant-assignments -- false positive, https://github.com/SonarSource/SonarJS/issues/4767
|
|
23076
23080
|
for (var j = 2; j < lines.length; j += 2) {
|
|
23077
23081
|
var text = lines[j];
|
|
23078
23082
|
var lineContainsTemplateExpression = j + 1 === lines.length && !lastSplit;
|
|
@@ -27063,9 +27067,11 @@ module.exports = function (input) {
|
|
|
27063
27067
|
|
|
27064
27068
|
// TODO: in core-js@4, move /modules/ dependencies to public entries for better optimization by tools like `preset-env`
|
|
27065
27069
|
__webpack_require__(168);
|
|
27070
|
+
__webpack_require__(425);
|
|
27066
27071
|
var $ = __webpack_require__(3);
|
|
27067
27072
|
var globalThis = __webpack_require__(4);
|
|
27068
27073
|
var safeGetBuiltIn = __webpack_require__(345);
|
|
27074
|
+
var getBuiltIn = __webpack_require__(23);
|
|
27069
27075
|
var call = __webpack_require__(8);
|
|
27070
27076
|
var uncurryThis = __webpack_require__(14);
|
|
27071
27077
|
var DESCRIPTORS = __webpack_require__(6);
|
|
@@ -27105,10 +27111,11 @@ var NativeRequest = safeGetBuiltIn('Request');
|
|
|
27105
27111
|
var Headers = safeGetBuiltIn('Headers');
|
|
27106
27112
|
var RequestPrototype = NativeRequest && NativeRequest.prototype;
|
|
27107
27113
|
var HeadersPrototype = Headers && Headers.prototype;
|
|
27108
|
-
var RegExp = globalThis.RegExp;
|
|
27109
27114
|
var TypeError = globalThis.TypeError;
|
|
27110
|
-
var decodeURIComponent = globalThis.decodeURIComponent;
|
|
27111
27115
|
var encodeURIComponent = globalThis.encodeURIComponent;
|
|
27116
|
+
var fromCharCode = String.fromCharCode;
|
|
27117
|
+
var fromCodePoint = getBuiltIn('String', 'fromCodePoint');
|
|
27118
|
+
var $parseInt = parseInt;
|
|
27112
27119
|
var charAt = uncurryThis(''.charAt);
|
|
27113
27120
|
var join = uncurryThis([].join);
|
|
27114
27121
|
var push = uncurryThis([].push);
|
|
@@ -27117,33 +27124,125 @@ var shift = uncurryThis([].shift);
|
|
|
27117
27124
|
var splice = uncurryThis([].splice);
|
|
27118
27125
|
var split = uncurryThis(''.split);
|
|
27119
27126
|
var stringSlice = uncurryThis(''.slice);
|
|
27127
|
+
var exec = uncurryThis(/./.exec);
|
|
27120
27128
|
|
|
27121
27129
|
var plus = /\+/g;
|
|
27122
|
-
var
|
|
27130
|
+
var FALLBACK_REPLACER = '\uFFFD';
|
|
27131
|
+
var VALID_HEX = /^[0-9a-f]+$/i;
|
|
27132
|
+
|
|
27133
|
+
var parseHexOctet = function (string, start) {
|
|
27134
|
+
var substr = stringSlice(string, start, start + 2);
|
|
27135
|
+
if (!exec(VALID_HEX, substr)) return NaN;
|
|
27123
27136
|
|
|
27124
|
-
|
|
27125
|
-
return sequences[bytes - 1] || (sequences[bytes - 1] = RegExp('((?:%[\\da-f]{2}){' + bytes + '})', 'gi'));
|
|
27137
|
+
return $parseInt(substr, 16);
|
|
27126
27138
|
};
|
|
27127
27139
|
|
|
27128
|
-
var
|
|
27129
|
-
|
|
27130
|
-
|
|
27131
|
-
|
|
27132
|
-
return sequence;
|
|
27140
|
+
var getLeadingOnes = function (octet) {
|
|
27141
|
+
var count = 0;
|
|
27142
|
+
for (var mask = 0x80; mask > 0 && (octet & mask) !== 0; mask >>= 1) {
|
|
27143
|
+
count++;
|
|
27133
27144
|
}
|
|
27145
|
+
return count;
|
|
27134
27146
|
};
|
|
27135
27147
|
|
|
27136
|
-
var
|
|
27137
|
-
var
|
|
27138
|
-
|
|
27139
|
-
|
|
27140
|
-
|
|
27141
|
-
|
|
27142
|
-
|
|
27143
|
-
|
|
27148
|
+
var utf8Decode = function (octets) {
|
|
27149
|
+
var codePoint = null;
|
|
27150
|
+
|
|
27151
|
+
switch (octets.length) {
|
|
27152
|
+
case 1:
|
|
27153
|
+
codePoint = octets[0];
|
|
27154
|
+
break;
|
|
27155
|
+
case 2:
|
|
27156
|
+
codePoint = (octets[0] & 0x1F) << 6 | (octets[1] & 0x3F);
|
|
27157
|
+
break;
|
|
27158
|
+
case 3:
|
|
27159
|
+
codePoint = (octets[0] & 0x0F) << 12 | (octets[1] & 0x3F) << 6 | (octets[2] & 0x3F);
|
|
27160
|
+
break;
|
|
27161
|
+
case 4:
|
|
27162
|
+
codePoint = (octets[0] & 0x07) << 18 | (octets[1] & 0x3F) << 12 | (octets[2] & 0x3F) << 6 | (octets[3] & 0x3F);
|
|
27163
|
+
break;
|
|
27164
|
+
}
|
|
27165
|
+
|
|
27166
|
+
return codePoint > 0x10FFFF ? null : codePoint;
|
|
27167
|
+
};
|
|
27168
|
+
|
|
27169
|
+
var decode = function (input) {
|
|
27170
|
+
input = replace(input, plus, ' ');
|
|
27171
|
+
var length = input.length;
|
|
27172
|
+
var result = '';
|
|
27173
|
+
var i = 0;
|
|
27174
|
+
|
|
27175
|
+
while (i < length) {
|
|
27176
|
+
var decodedChar = charAt(input, i);
|
|
27177
|
+
|
|
27178
|
+
if (decodedChar === '%') {
|
|
27179
|
+
if (charAt(input, i + 1) === '%' || i + 3 > length) {
|
|
27180
|
+
result += '%';
|
|
27181
|
+
i++;
|
|
27182
|
+
continue;
|
|
27183
|
+
}
|
|
27184
|
+
|
|
27185
|
+
var octet = parseHexOctet(input, i + 1);
|
|
27186
|
+
|
|
27187
|
+
// eslint-disable-next-line no-self-compare -- NaN check
|
|
27188
|
+
if (octet !== octet) {
|
|
27189
|
+
result += decodedChar;
|
|
27190
|
+
i++;
|
|
27191
|
+
continue;
|
|
27192
|
+
}
|
|
27193
|
+
|
|
27194
|
+
i += 2;
|
|
27195
|
+
var byteSequenceLength = getLeadingOnes(octet);
|
|
27196
|
+
|
|
27197
|
+
if (byteSequenceLength === 0) {
|
|
27198
|
+
decodedChar = fromCharCode(octet);
|
|
27199
|
+
} else {
|
|
27200
|
+
if (byteSequenceLength === 1 || byteSequenceLength > 4) {
|
|
27201
|
+
result += FALLBACK_REPLACER;
|
|
27202
|
+
i++;
|
|
27203
|
+
continue;
|
|
27204
|
+
}
|
|
27205
|
+
|
|
27206
|
+
var octets = [octet];
|
|
27207
|
+
var sequenceIndex = 1;
|
|
27208
|
+
|
|
27209
|
+
while (sequenceIndex < byteSequenceLength) {
|
|
27210
|
+
i++;
|
|
27211
|
+
if (i + 3 > length || charAt(input, i) !== '%') break;
|
|
27212
|
+
|
|
27213
|
+
var nextByte = parseHexOctet(input, i + 1);
|
|
27214
|
+
|
|
27215
|
+
// eslint-disable-next-line no-self-compare -- NaN check
|
|
27216
|
+
if (nextByte !== nextByte) {
|
|
27217
|
+
i += 3;
|
|
27218
|
+
break;
|
|
27219
|
+
}
|
|
27220
|
+
if (nextByte > 191 || nextByte < 128) break;
|
|
27221
|
+
|
|
27222
|
+
push(octets, nextByte);
|
|
27223
|
+
i += 2;
|
|
27224
|
+
sequenceIndex++;
|
|
27225
|
+
}
|
|
27226
|
+
|
|
27227
|
+
if (octets.length !== byteSequenceLength) {
|
|
27228
|
+
result += FALLBACK_REPLACER;
|
|
27229
|
+
continue;
|
|
27230
|
+
}
|
|
27231
|
+
|
|
27232
|
+
var codePoint = utf8Decode(octets);
|
|
27233
|
+
if (codePoint === null) {
|
|
27234
|
+
result += FALLBACK_REPLACER;
|
|
27235
|
+
} else {
|
|
27236
|
+
decodedChar = fromCodePoint(codePoint);
|
|
27237
|
+
}
|
|
27238
|
+
}
|
|
27144
27239
|
}
|
|
27145
|
-
|
|
27240
|
+
|
|
27241
|
+
result += decodedChar;
|
|
27242
|
+
i++;
|
|
27146
27243
|
}
|
|
27244
|
+
|
|
27245
|
+
return result;
|
|
27147
27246
|
};
|
|
27148
27247
|
|
|
27149
27248
|
var find = /[!'()~]|%20/g;
|
|
@@ -27177,7 +27276,7 @@ var URLSearchParamsIterator = createIteratorConstructor(function Iterator(params
|
|
|
27177
27276
|
var target = state.target;
|
|
27178
27277
|
var index = state.index++;
|
|
27179
27278
|
if (!target || index >= target.length) {
|
|
27180
|
-
state.target =
|
|
27279
|
+
state.target = null;
|
|
27181
27280
|
return createIterResultObject(undefined, true);
|
|
27182
27281
|
}
|
|
27183
27282
|
var entry = target[index];
|
|
@@ -27236,8 +27335,8 @@ URLSearchParamsState.prototype = {
|
|
|
27236
27335
|
if (attribute.length) {
|
|
27237
27336
|
entry = split(attribute, '=');
|
|
27238
27337
|
push(entries, {
|
|
27239
|
-
key:
|
|
27240
|
-
value:
|
|
27338
|
+
key: decode(shift(entry)),
|
|
27339
|
+
value: decode(join(entry, '='))
|
|
27241
27340
|
});
|
|
27242
27341
|
}
|
|
27243
27342
|
}
|