core-js-bundle 3.27.1 → 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/LICENSE CHANGED
@@ -1,4 +1,4 @@
1
- Copyright (c) 2014-2022 Denis Pushkarev
1
+ Copyright (c) 2014-2023 Denis Pushkarev
2
2
 
3
3
  Permission is hereby granted, free of charge, to any person obtaining a copy
4
4
  of this software and associated documentation files (the "Software"), to deal
package/README.md CHANGED
@@ -6,11 +6,10 @@
6
6
 
7
7
  </div>
8
8
 
9
- > 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.
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
- ## [core-js@3, babel and a look into the future](https://github.com/zloirock/core-js/tree/master/docs/2019-03-19-core-js-3-babel-and-a-look-into-the-future.md)
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/2aj9lkwf):
28
+ [*Example of usage*](https://tinyurl.com/2mknex43):
30
29
  ```js
31
- import 'core-js/actual'; // <- at the top of your entry point
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
- Array.from(new Set([1, 2, 3, 2, 1])); // => [1, 2, 3]
34
- [1, 2, 3, 4, 5].group(it => it % 2); // => { 1: [1, 3, 5], 0: [2, 4] }
35
- Promise.resolve(42).then(x => console.log(x)); // => 42
36
- structuredClone(new Set([1, 2, 3])); // => new Set([1, 2, 3])
37
- queueMicrotask(() => console.log('called as microtask'));
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/array/from'; // <- at the top of your entry point
43
- import 'core-js/actual/array/group'; // <- at the top of your entry point
44
- import 'core-js/actual/set'; // <- at the top of your entry point
45
- import 'core-js/actual/promise'; // <- at the top of your entry point
46
- import 'core-js/actual/structured-clone'; // <- at the top of your entry point
47
- import 'core-js/actual/queue-microtask'; // <- at the top of your entry point
48
-
49
- Array.from(new Set([1, 2, 3, 2, 1])); // => [1, 2, 3]
50
- [1, 2, 3, 4, 5].group(it => it % 2); // => { 1: [1, 3, 5], 0: [2, 4] }
51
- Promise.resolve(42).then(x => console.log(x)); // => 42
52
- structuredClone(new Set([1, 2, 3])); // => new Set([1, 2, 3])
53
- queueMicrotask(() => console.log('called as microtask'));
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
- from(new Set([1, 2, 3, 2, 1])); // => [1, 2, 3]
66
- group([1, 2, 3, 4, 5], it => it % 2); // => { 1: [1, 3, 5], 0: [2, 4] }
67
- Promise.resolve(42).then(x => console.log(x)); // => 42
68
- structuredClone(new Set([1, 2, 3])); // => new Set([1, 2, 3])
69
- queueMicrotask(() => console.log('called as microtask'));
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).**