core-js-pure 3.22.1 → 3.22.2
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.
|
@@ -39,7 +39,7 @@ var getOwnPropertyDescriptor = Object.getOwnPropertyDescriptor;
|
|
|
39
39
|
|
|
40
40
|
// Avoid NodeJS experimental warning
|
|
41
41
|
var safeGetBuiltIn = function (name) {
|
|
42
|
-
if (!DESCRIPTORS) return global
|
|
42
|
+
if (!DESCRIPTORS) return global[name];
|
|
43
43
|
var descriptor = getOwnPropertyDescriptor(global, name);
|
|
44
44
|
return descriptor && descriptor.value;
|
|
45
45
|
};
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "core-js-pure",
|
|
3
3
|
"description": "Standard library",
|
|
4
|
-
"version": "3.22.
|
|
4
|
+
"version": "3.22.2",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
7
7
|
"url": "https://github.com/zloirock/core-js.git"
|
|
@@ -54,5 +54,5 @@
|
|
|
54
54
|
"scripts": {
|
|
55
55
|
"postinstall": "node -e \"try{require('./postinstall')}catch(e){}\""
|
|
56
56
|
},
|
|
57
|
-
"gitHead": "
|
|
57
|
+
"gitHead": "c949d92f76531a2fc31f0fdf7fda6c86e258d9b1"
|
|
58
58
|
}
|