core-js-bundle 3.27.2 → 3.28.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 +55 -32
- package/index.js +3119 -2331
- package/minified.js +10 -10
- package/minified.js.map +1 -1
- package/package.json +1 -1
- package/postinstall.js +1 -1
package/README.md
CHANGED
|
@@ -6,11 +6,10 @@
|
|
|
6
6
|
|
|
7
7
|
</div>
|
|
8
8
|
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
## As advertising: the author is looking for a good job -)
|
|
9
|
+
**I highly recommend reading this: [So, what's next?](https://github.com/zloirock/core-js/blob/master/docs/2023-02-14-so-whats-next.md)**
|
|
10
|
+
---
|
|
12
11
|
|
|
13
|
-
|
|
12
|
+
> Modular standard library for JavaScript. Includes polyfills for [ECMAScript up to 2023](https://github.com/zloirock/core-js#ecmascript): [promises](https://github.com/zloirock/core-js#ecmascript-promise), [symbols](https://github.com/zloirock/core-js#ecmascript-symbol), [collections](https://github.com/zloirock/core-js#ecmascript-collections), iterators, [typed arrays](https://github.com/zloirock/core-js#ecmascript-typed-arrays), many other features, [ECMAScript proposals](https://github.com/zloirock/core-js#ecmascript-proposals), [some cross-platform WHATWG / W3C features and proposals](#web-standards) like [`URL`](https://github.com/zloirock/core-js#url-and-urlsearchparams). You can load only required features or use it without global namespace pollution.
|
|
14
13
|
|
|
15
14
|
## Raising funds
|
|
16
15
|
|
|
@@ -26,47 +25,71 @@
|
|
|
26
25
|
|
|
27
26
|
---
|
|
28
27
|
|
|
29
|
-
[*Example of usage*](https://tinyurl.com/
|
|
28
|
+
[*Example of usage*](https://tinyurl.com/2mknex43):
|
|
30
29
|
```js
|
|
31
|
-
import 'core-js/actual';
|
|
30
|
+
import 'core-js/actual';
|
|
31
|
+
|
|
32
|
+
Promise.resolve(42).then(it => console.log(it)); // => 42
|
|
33
|
+
|
|
34
|
+
Array.from(new Set([1, 2, 3]).union(new Set([3, 4, 5]))); // => [1, 2, 3, 4, 5]
|
|
32
35
|
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
36
|
+
[1, 2].flatMap(it => [it, it]); // => [1, 1, 2, 2]
|
|
37
|
+
|
|
38
|
+
(function * (i) { while (true) yield i++; })(1)
|
|
39
|
+
.drop(1).take(5)
|
|
40
|
+
.filter(it => it % 2)
|
|
41
|
+
.map(it => it ** 2)
|
|
42
|
+
.toArray(); // => [9, 25]
|
|
43
|
+
|
|
44
|
+
structuredClone(new Set([1, 2, 3])); // => new Set([1, 2, 3])
|
|
38
45
|
```
|
|
39
46
|
|
|
40
47
|
*You can load only required features*:
|
|
41
48
|
```js
|
|
42
|
-
import 'core-js/actual/
|
|
43
|
-
import 'core-js/actual/
|
|
44
|
-
import 'core-js/actual/
|
|
45
|
-
import 'core-js/actual/
|
|
46
|
-
import 'core-js/actual/
|
|
47
|
-
import 'core-js/actual/
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
49
|
+
import 'core-js/actual/promise';
|
|
50
|
+
import 'core-js/actual/set';
|
|
51
|
+
import 'core-js/actual/iterator';
|
|
52
|
+
import 'core-js/actual/array/from';
|
|
53
|
+
import 'core-js/actual/array/flat-map';
|
|
54
|
+
import 'core-js/actual/structured-clone';
|
|
55
|
+
|
|
56
|
+
Promise.resolve(42).then(it => console.log(it)); // => 42
|
|
57
|
+
|
|
58
|
+
Array.from(new Set([1, 2, 3]).union(new Set([3, 4, 5]))); // => [1, 2, 3, 4, 5]
|
|
59
|
+
|
|
60
|
+
[1, 2].flatMap(it => [it, it]); // => [1, 1, 2, 2]
|
|
61
|
+
|
|
62
|
+
(function * (i) { while (true) yield i++; })(1)
|
|
63
|
+
.drop(1).take(5)
|
|
64
|
+
.filter(it => it % 2)
|
|
65
|
+
.map(it => it ** 2)
|
|
66
|
+
.toArray(); // => [9, 25]
|
|
67
|
+
|
|
68
|
+
structuredClone(new Set([1, 2, 3])); // => new Set([1, 2, 3])
|
|
54
69
|
```
|
|
55
70
|
|
|
56
71
|
*Or use it without global namespace pollution*:
|
|
57
72
|
```js
|
|
58
|
-
import from from 'core-js-pure/actual/array/from';
|
|
59
|
-
import group from 'core-js-pure/actual/array/group';
|
|
60
|
-
import Set from 'core-js-pure/actual/set';
|
|
61
73
|
import Promise from 'core-js-pure/actual/promise';
|
|
74
|
+
import Set from 'core-js-pure/actual/set';
|
|
75
|
+
import Iterator from 'core-js-pure/actual/iterator';
|
|
76
|
+
import from from 'core-js-pure/actual/array/from';
|
|
77
|
+
import flatMap from 'core-js-pure/actual/array/flat-map';
|
|
62
78
|
import structuredClone from 'core-js-pure/actual/structured-clone';
|
|
63
|
-
import queueMicrotask from 'core-js-pure/actual/queue-microtask';
|
|
64
79
|
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
80
|
+
Promise.resolve(42).then(it => console.log(it)); // => 42
|
|
81
|
+
|
|
82
|
+
from(new Set([1, 2, 3]).union(new Set([3, 4, 5]))); // => [1, 2, 3, 4, 5]
|
|
83
|
+
|
|
84
|
+
flatMap([1, 2], it => [it, it]); // => [1, 1, 2, 2]
|
|
85
|
+
|
|
86
|
+
Iterator.from(function * (i) { while (true) yield i++; }(1))
|
|
87
|
+
.drop(1).take(5)
|
|
88
|
+
.filter(it => it % 2)
|
|
89
|
+
.map(it => it ** 2)
|
|
90
|
+
.toArray(); // => [9, 25]
|
|
91
|
+
|
|
92
|
+
structuredClone(new Set([1, 2, 3])); // => new Set([1, 2, 3])
|
|
70
93
|
```
|
|
71
94
|
|
|
72
95
|
**It's a bundled global version, for more info see [`core-js` documentation](https://github.com/zloirock/core-js/blob/master/README.md).**
|