File tree 11 files changed +870
-853
lines changed
11 files changed +870
-853
lines changed Original file line number Diff line number Diff line change 1
1
## Changelog
2
2
##### Unreleased
3
+ - Nothing
4
+
5
+ ##### [ 3.22.6 - 2022.05.23] ( https://github.com/zloirock/core-js/releases/tag/v3.22.6 )
3
6
- Fixed possible double call of ` ToNumber ` conversion on arguments of ` Math.{ fround, trunc } ` polyfills
4
7
- ` Array.prototype.includes ` marked as [ fixed] ( https://bugzilla.mozilla.org/show_bug.cgi?id=1767541 ) in FF102
5
8
Original file line number Diff line number Diff line change @@ -176,11 +176,11 @@ queueMicrotask(() => console.log('called as microtask'));
176
176
### Installation:[ ⬆] ( #index )
177
177
```
178
178
// global version
179
- npm install --save core-js@3.22.5
179
+ npm install --save core-js@3.22.6
180
180
// version without global namespace pollution
181
- npm install --save core-js-pure@3.22.5
181
+ npm install --save core-js-pure@3.22.6
182
182
// bundled global version
183
- npm install --save core-js-bundle@3.22.5
183
+ npm install --save core-js-bundle@3.22.6
184
184
```
185
185
186
186
Or you can use ` core-js ` [ from CDN] ( https://www.jsdelivr.com/package/npm/core-js-bundle ) .
Original file line number Diff line number Diff line change 24
24
25
25
* Example* :
26
26
``` js
27
- import ' https://deno.land/x/corejs@v3.22.5 /index.js' ; // <- at the top of your entry point
27
+ import ' https://deno.land/x/corejs@v3.22.6 /index.js' ; // <- at the top of your entry point
28
28
29
29
Object .hasOwn ({ foo: 42 }, ' foo' ); // => true
30
30
Load Diff Large diffs are not rendered by default.
Original file line number Diff line number Diff line change 1
1
{
2
- "version" : " 3.22.5 " ,
2
+ "version" : " 3.22.6 " ,
3
3
"workspaces" : [
4
4
" ./packages/*"
5
5
],
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " core-js-builder" ,
3
3
"description" : " core-js builder" ,
4
- "version" : " 3.22.5 " ,
4
+ "version" : " 3.22.6 " ,
5
5
"repository" : {
6
6
"type" : " git" ,
7
7
"url" : " https://github.com/zloirock/core-js.git" ,
8
8
"directory" : " packages/core-js-builder"
9
9
},
10
10
"main" : " index.js" ,
11
11
"dependencies" : {
12
- "core-js" : " 3.22.5 " ,
13
- "core-js-compat" : " 3.22.5 " ,
12
+ "core-js" : " 3.22.6 " ,
13
+ "core-js-compat" : " 3.22.6 " ,
14
14
"mkdirp" : " >=0.5.5 <1" ,
15
15
"webpack" : " >=4.46.0 <5"
16
16
},
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " core-js-bundle" ,
3
3
"description" : " Standard library" ,
4
- "version" : " 3.22.5 " ,
4
+ "version" : " 3.22.6 " ,
5
5
"repository" : {
6
6
"type" : " git" ,
7
7
"url" : " https://github.com/zloirock/core-js.git"
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " core-js-compat" ,
3
3
"description" : " core-js compat" ,
4
- "version" : " 3.22.5 " ,
4
+ "version" : " 3.22.6 " ,
5
5
"repository" : {
6
6
"type" : " git" ,
7
7
"url" : " https://github.com/zloirock/core-js.git" ,
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " core-js-pure" ,
3
3
"description" : " Standard library" ,
4
- "version" : " 3.22.5 " ,
4
+ "version" : " 3.22.6 " ,
5
5
"repository" : {
6
6
"type" : " git" ,
7
7
"url" : " https://github.com/zloirock/core-js.git"
Original file line number Diff line number Diff line change @@ -4,9 +4,9 @@ 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.22.5 ' ,
7
+ version : '3.22.6 ' ,
8
8
mode : IS_PURE ? 'pure' : 'global' ,
9
9
copyright : '© 2014-2022 Denis Pushkarev (zloirock.ru)' ,
10
- license : 'https://github.com/zloirock/core-js/blob/v3.22.5 /LICENSE' ,
10
+ license : 'https://github.com/zloirock/core-js/blob/v3.22.6 /LICENSE' ,
11
11
source : 'https://github.com/zloirock/core-js'
12
12
} ) ;
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " core-js" ,
3
3
"description" : " Standard library" ,
4
- "version" : " 3.22.5 " ,
4
+ "version" : " 3.22.6 " ,
5
5
"repository" : {
6
6
"type" : " git" ,
7
7
"url" : " https://github.com/zloirock/core-js.git"
You can’t perform that action at this time.
0 commit comments