core-js-pure 3.10.0 → 3.11.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/features/index.js +1 -0
- package/features/object/has-own.js +4 -0
- package/features/object/index.js +1 -0
- package/internals/engine-is-ios.js +1 -1
- package/internals/has.js +4 -2
- package/internals/internal-state.js +3 -0
- package/internals/shared.js +1 -1
- package/internals/string-pad-webkit-bug.js +1 -1
- package/modules/es.promise.js +15 -12
- package/modules/esnext.object.has-own.js +8 -0
- package/modules/esnext.observable.js +7 -8
- package/modules/web.url.js +5 -4
- package/package.json +2 -2
- package/proposals/accessible-object-hasownproperty.js +2 -0
- package/stage/2.js +1 -0
package/features/index.js
CHANGED
|
@@ -285,6 +285,7 @@ require('../modules/esnext.math.signbit');
|
|
|
285
285
|
require('../modules/esnext.math.umulh');
|
|
286
286
|
require('../modules/esnext.number.from-string');
|
|
287
287
|
require('../modules/esnext.number.range');
|
|
288
|
+
require('../modules/esnext.object.has-own');
|
|
288
289
|
require('../modules/esnext.object.iterate-entries');
|
|
289
290
|
require('../modules/esnext.object.iterate-keys');
|
|
290
291
|
require('../modules/esnext.object.iterate-values');
|
package/features/object/index.js
CHANGED
package/internals/has.js
CHANGED
|
@@ -1,5 +1,7 @@
|
|
|
1
|
+
var toObject = require('../internals/to-object');
|
|
2
|
+
|
|
1
3
|
var hasOwnProperty = {}.hasOwnProperty;
|
|
2
4
|
|
|
3
|
-
module.exports = function (it, key) {
|
|
4
|
-
return hasOwnProperty.call(it, key);
|
|
5
|
+
module.exports = function hasOwn(it, key) {
|
|
6
|
+
return hasOwnProperty.call(toObject(it), key);
|
|
5
7
|
};
|
|
@@ -7,6 +7,7 @@ var shared = require('../internals/shared-store');
|
|
|
7
7
|
var sharedKey = require('../internals/shared-key');
|
|
8
8
|
var hiddenKeys = require('../internals/hidden-keys');
|
|
9
9
|
|
|
10
|
+
var OBJECT_ALREADY_INITIALIZED = 'Object already initialized';
|
|
10
11
|
var WeakMap = global.WeakMap;
|
|
11
12
|
var set, get, has;
|
|
12
13
|
|
|
@@ -29,6 +30,7 @@ if (NATIVE_WEAK_MAP) {
|
|
|
29
30
|
var wmhas = store.has;
|
|
30
31
|
var wmset = store.set;
|
|
31
32
|
set = function (it, metadata) {
|
|
33
|
+
if (wmhas.call(store, it)) throw new TypeError(OBJECT_ALREADY_INITIALIZED);
|
|
32
34
|
metadata.facade = it;
|
|
33
35
|
wmset.call(store, it, metadata);
|
|
34
36
|
return metadata;
|
|
@@ -43,6 +45,7 @@ if (NATIVE_WEAK_MAP) {
|
|
|
43
45
|
var STATE = sharedKey('state');
|
|
44
46
|
hiddenKeys[STATE] = true;
|
|
45
47
|
set = function (it, metadata) {
|
|
48
|
+
if (objectHas(it, STATE)) throw new TypeError(OBJECT_ALREADY_INITIALIZED);
|
|
46
49
|
metadata.facade = it;
|
|
47
50
|
createNonEnumerableProperty(it, STATE, metadata);
|
|
48
51
|
return metadata;
|
package/internals/shared.js
CHANGED
|
@@ -4,7 +4,7 @@ var store = require('../internals/shared-store');
|
|
|
4
4
|
(module.exports = function (key, value) {
|
|
5
5
|
return store[key] || (store[key] = value !== undefined ? value : {});
|
|
6
6
|
})('versions', []).push({
|
|
7
|
-
version: '3.
|
|
7
|
+
version: '3.11.1',
|
|
8
8
|
mode: IS_PURE ? 'pure' : 'global',
|
|
9
9
|
copyright: '© 2021 Denis Pushkarev (zloirock.ru)'
|
|
10
10
|
});
|
|
@@ -2,4 +2,4 @@
|
|
|
2
2
|
var userAgent = require('../internals/engine-user-agent');
|
|
3
3
|
|
|
4
4
|
// eslint-disable-next-line unicorn/no-unsafe-regex -- safe
|
|
5
|
-
module.exports = /Version\/10
|
|
5
|
+
module.exports = /Version\/10(?:\.\d+){1,2}(?: [\w./]+)?(?: Mobile\/\w+)? Safari\//.test(userAgent);
|
package/modules/es.promise.js
CHANGED
|
@@ -6,6 +6,7 @@ var getBuiltIn = require('../internals/get-built-in');
|
|
|
6
6
|
var NativePromise = require('../internals/native-promise-constructor');
|
|
7
7
|
var redefine = require('../internals/redefine');
|
|
8
8
|
var redefineAll = require('../internals/redefine-all');
|
|
9
|
+
var setPrototypeOf = require('../internals/object-set-prototype-of');
|
|
9
10
|
var setToStringTag = require('../internals/set-to-string-tag');
|
|
10
11
|
var setSpecies = require('../internals/set-species');
|
|
11
12
|
var isObject = require('../internals/is-object');
|
|
@@ -32,11 +33,11 @@ var PROMISE = 'Promise';
|
|
|
32
33
|
var getInternalState = InternalStateModule.get;
|
|
33
34
|
var setInternalState = InternalStateModule.set;
|
|
34
35
|
var getInternalPromiseState = InternalStateModule.getterFor(PROMISE);
|
|
36
|
+
var NativePromisePrototype = NativePromise && NativePromise.prototype;
|
|
35
37
|
var PromiseConstructor = NativePromise;
|
|
36
38
|
var TypeError = global.TypeError;
|
|
37
39
|
var document = global.document;
|
|
38
40
|
var process = global.process;
|
|
39
|
-
var $fetch = getBuiltIn('fetch');
|
|
40
41
|
var newPromiseCapability = newPromiseCapabilityModule.f;
|
|
41
42
|
var newGenericPromiseCapability = newPromiseCapability;
|
|
42
43
|
var DISPATCH_EVENT = !!(document && document.createEvent && global.dispatchEvent);
|
|
@@ -283,11 +284,11 @@ if (FORCED) {
|
|
|
283
284
|
: newGenericPromiseCapability(C);
|
|
284
285
|
};
|
|
285
286
|
|
|
286
|
-
if (!IS_PURE && typeof NativePromise == 'function') {
|
|
287
|
-
nativeThen =
|
|
287
|
+
if (!IS_PURE && typeof NativePromise == 'function' && NativePromisePrototype !== Object.prototype) {
|
|
288
|
+
nativeThen = NativePromisePrototype.then;
|
|
288
289
|
|
|
289
|
-
//
|
|
290
|
-
redefine(
|
|
290
|
+
// make `Promise#then` return a polyfilled `Promise` for native promise-based APIs
|
|
291
|
+
redefine(NativePromisePrototype, 'then', function then(onFulfilled, onRejected) {
|
|
291
292
|
var that = this;
|
|
292
293
|
return new PromiseConstructor(function (resolve, reject) {
|
|
293
294
|
nativeThen.call(that, resolve, reject);
|
|
@@ -295,13 +296,15 @@ if (FORCED) {
|
|
|
295
296
|
// https://github.com/zloirock/core-js/issues/640
|
|
296
297
|
}, { unsafe: true });
|
|
297
298
|
|
|
298
|
-
//
|
|
299
|
-
|
|
300
|
-
|
|
301
|
-
|
|
302
|
-
|
|
303
|
-
|
|
304
|
-
|
|
299
|
+
// make `.constructor === Promise` work for native promise-based APIs
|
|
300
|
+
try {
|
|
301
|
+
delete NativePromisePrototype.constructor;
|
|
302
|
+
} catch (error) { /* empty */ }
|
|
303
|
+
|
|
304
|
+
// make `instanceof Promise` work for native promise-based APIs
|
|
305
|
+
if (setPrototypeOf) {
|
|
306
|
+
setPrototypeOf(NativePromisePrototype, PromiseConstructor.prototype);
|
|
307
|
+
}
|
|
305
308
|
}
|
|
306
309
|
}
|
|
307
310
|
|
|
@@ -40,7 +40,8 @@ var subscriptionClosed = function (subscriptionState) {
|
|
|
40
40
|
return subscriptionState.observer === undefined;
|
|
41
41
|
};
|
|
42
42
|
|
|
43
|
-
var close = function (
|
|
43
|
+
var close = function (subscriptionState) {
|
|
44
|
+
var subscription = subscriptionState.facade;
|
|
44
45
|
if (!DESCRIPTORS) {
|
|
45
46
|
subscription.closed = true;
|
|
46
47
|
var subscriptionObserver = subscriptionState.subscriptionObserver;
|
|
@@ -79,7 +80,7 @@ Subscription.prototype = redefineAll({}, {
|
|
|
79
80
|
unsubscribe: function unsubscribe() {
|
|
80
81
|
var subscriptionState = getInternalState(this);
|
|
81
82
|
if (!subscriptionClosed(subscriptionState)) {
|
|
82
|
-
close(
|
|
83
|
+
close(subscriptionState);
|
|
83
84
|
cleanupSubscription(subscriptionState);
|
|
84
85
|
}
|
|
85
86
|
}
|
|
@@ -111,11 +112,10 @@ SubscriptionObserver.prototype = redefineAll({}, {
|
|
|
111
112
|
}
|
|
112
113
|
},
|
|
113
114
|
error: function error(value) {
|
|
114
|
-
var
|
|
115
|
-
var subscriptionState = getInternalState(subscription);
|
|
115
|
+
var subscriptionState = getInternalState(getInternalState(this).subscription);
|
|
116
116
|
if (!subscriptionClosed(subscriptionState)) {
|
|
117
117
|
var observer = subscriptionState.observer;
|
|
118
|
-
close(
|
|
118
|
+
close(subscriptionState);
|
|
119
119
|
try {
|
|
120
120
|
var errorMethod = getMethod(observer.error);
|
|
121
121
|
if (errorMethod) errorMethod.call(observer, value);
|
|
@@ -126,11 +126,10 @@ SubscriptionObserver.prototype = redefineAll({}, {
|
|
|
126
126
|
}
|
|
127
127
|
},
|
|
128
128
|
complete: function complete() {
|
|
129
|
-
var
|
|
130
|
-
var subscriptionState = getInternalState(subscription);
|
|
129
|
+
var subscriptionState = getInternalState(getInternalState(this).subscription);
|
|
131
130
|
if (!subscriptionClosed(subscriptionState)) {
|
|
132
131
|
var observer = subscriptionState.observer;
|
|
133
|
-
close(
|
|
132
|
+
close(subscriptionState);
|
|
134
133
|
try {
|
|
135
134
|
var completeMethod = getMethod(observer.complete);
|
|
136
135
|
if (completeMethod) completeMethod.call(observer);
|
package/modules/web.url.js
CHANGED
|
@@ -31,6 +31,7 @@ var INVALID_HOST = 'Invalid host';
|
|
|
31
31
|
var INVALID_PORT = 'Invalid port';
|
|
32
32
|
|
|
33
33
|
var ALPHA = /[A-Za-z]/;
|
|
34
|
+
// eslint-disable-next-line regexp/no-obscure-range -- safe
|
|
34
35
|
var ALPHANUMERIC = /[\d+-.A-Za-z]/;
|
|
35
36
|
var DIGIT = /\d/;
|
|
36
37
|
var HEX_START = /^(0x|0X)/;
|
|
@@ -38,10 +39,10 @@ var OCT = /^[0-7]+$/;
|
|
|
38
39
|
var DEC = /^\d+$/;
|
|
39
40
|
var HEX = /^[\dA-Fa-f]+$/;
|
|
40
41
|
/* eslint-disable no-control-regex -- safe */
|
|
41
|
-
var FORBIDDEN_HOST_CODE_POINT = /[\
|
|
42
|
-
var FORBIDDEN_HOST_CODE_POINT_EXCLUDING_PERCENT = /[\
|
|
42
|
+
var FORBIDDEN_HOST_CODE_POINT = /[\0\t\n\r #%/:?@[\\]]/;
|
|
43
|
+
var FORBIDDEN_HOST_CODE_POINT_EXCLUDING_PERCENT = /[\0\t\n\r #/:?@[\\]]/;
|
|
43
44
|
var LEADING_AND_TRAILING_C0_CONTROL_OR_SPACE = /^[\u0000-\u001F ]+|[\u0000-\u001F ]+$/g;
|
|
44
|
-
var TAB_AND_NEW_LINE = /[\t\
|
|
45
|
+
var TAB_AND_NEW_LINE = /[\t\n\r]/g;
|
|
45
46
|
/* eslint-enable no-control-regex -- safe */
|
|
46
47
|
var EOF;
|
|
47
48
|
|
|
@@ -800,7 +801,7 @@ var getOrigin = function () {
|
|
|
800
801
|
var scheme = url.scheme;
|
|
801
802
|
var port = url.port;
|
|
802
803
|
if (scheme == 'blob') try {
|
|
803
|
-
return new
|
|
804
|
+
return new URLConstructor(scheme.path[0]).origin;
|
|
804
805
|
} catch (error) {
|
|
805
806
|
return 'null';
|
|
806
807
|
}
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "core-js-pure",
|
|
3
3
|
"description": "Standard library",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.11.1",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
7
7
|
"url": "https://github.com/zloirock/core-js.git",
|
|
@@ -55,5 +55,5 @@
|
|
|
55
55
|
"scripts": {
|
|
56
56
|
"postinstall": "node -e \"try{require('./postinstall')}catch(e){}\""
|
|
57
57
|
},
|
|
58
|
-
"gitHead": "
|
|
58
|
+
"gitHead": "1e9c4fbb22c7954d50a4db09d40d5c7648bead88"
|
|
59
59
|
}
|
package/stage/2.js
CHANGED