core-js-bundle 3.25.4 → 3.26.0
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/README.md +1 -1
- package/index.js +3009 -2806
- package/minified.js +9 -9
- package/minified.js.map +1 -1
- package/package.json +27 -14
package/package.json
CHANGED
|
@@ -1,17 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "core-js-bundle",
|
|
3
|
+
"version": "3.26.0",
|
|
3
4
|
"description": "Standard library",
|
|
4
|
-
"version": "3.25.4",
|
|
5
|
-
"repository": {
|
|
6
|
-
"type": "git",
|
|
7
|
-
"url": "https://github.com/zloirock/core-js.git"
|
|
8
|
-
},
|
|
9
|
-
"main": "index.js",
|
|
10
|
-
"funding": {
|
|
11
|
-
"type": "opencollective",
|
|
12
|
-
"url": "https://opencollective.com/core-js"
|
|
13
|
-
},
|
|
14
|
-
"license": "MIT",
|
|
15
5
|
"keywords": [
|
|
16
6
|
"ES3",
|
|
17
7
|
"ES5",
|
|
@@ -23,6 +13,9 @@
|
|
|
23
13
|
"ES2018",
|
|
24
14
|
"ES2019",
|
|
25
15
|
"ES2020",
|
|
16
|
+
"ES2021",
|
|
17
|
+
"ES2022",
|
|
18
|
+
"ES2023",
|
|
26
19
|
"ECMAScript 3",
|
|
27
20
|
"ECMAScript 5",
|
|
28
21
|
"ECMAScript 6",
|
|
@@ -33,24 +26,44 @@
|
|
|
33
26
|
"ECMAScript 2018",
|
|
34
27
|
"ECMAScript 2019",
|
|
35
28
|
"ECMAScript 2020",
|
|
36
|
-
"
|
|
37
|
-
"
|
|
29
|
+
"ECMAScript 2021",
|
|
30
|
+
"ECMAScript 2022",
|
|
31
|
+
"ECMAScript 2023",
|
|
38
32
|
"Map",
|
|
39
33
|
"Set",
|
|
40
34
|
"WeakMap",
|
|
41
35
|
"WeakSet",
|
|
36
|
+
"TypedArray",
|
|
42
37
|
"Promise",
|
|
43
38
|
"Observable",
|
|
44
39
|
"Symbol",
|
|
45
|
-
"
|
|
40
|
+
"Iterator",
|
|
41
|
+
"AsyncIterator",
|
|
46
42
|
"URL",
|
|
47
43
|
"URLSearchParams",
|
|
48
44
|
"queueMicrotask",
|
|
49
45
|
"setImmediate",
|
|
46
|
+
"structuredClone",
|
|
50
47
|
"polyfill",
|
|
51
48
|
"ponyfill",
|
|
52
49
|
"shim"
|
|
53
50
|
],
|
|
51
|
+
"repository": {
|
|
52
|
+
"type": "git",
|
|
53
|
+
"url": "https://github.com/zloirock/core-js.git",
|
|
54
|
+
"directory": "packages/core-js-bundle"
|
|
55
|
+
},
|
|
56
|
+
"funding": {
|
|
57
|
+
"type": "opencollective",
|
|
58
|
+
"url": "https://opencollective.com/core-js"
|
|
59
|
+
},
|
|
60
|
+
"license": "MIT",
|
|
61
|
+
"author": {
|
|
62
|
+
"name": "Denis Pushkarev",
|
|
63
|
+
"email": "zloirock@zloirock.ru",
|
|
64
|
+
"url": "http://zloirock.ru"
|
|
65
|
+
},
|
|
66
|
+
"main": "index.js",
|
|
54
67
|
"scripts": {
|
|
55
68
|
"postinstall": "node -e \"try{require('./postinstall')}catch(e){}\""
|
|
56
69
|
}
|