Skip to content

Commit 024e54a

Browse files
committed
3.23.1
1 parent a2fe22a commit 024e54a

File tree

11 files changed

+30
-22
lines changed

11 files changed

+30
-22
lines changed

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
## Changelog
22
##### Unreleased
3+
- Nothing
4+
5+
##### [3.23.1 - 2022.06.14](https://github.com/zloirock/core-js/releases/tag/v3.23.1)
36
- Fixed possible error on multiple `core-js` copies, [#1091](https://github.com/zloirock/core-js/issues/1091)
47
- Added `v` flag to `RegExp.prototype.flags` implementation in case if current V8 bugs will not be fixed before this flag implementation
58

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -176,11 +176,11 @@ queueMicrotask(() => console.log('called as microtask'));
176176
### Installation:[](#index)
177177
```
178178
// global version
179-
npm install --save [email protected].0
179+
npm install --save [email protected].1
180180
// version without global namespace pollution
181-
npm install --save [email protected].0
181+
npm install --save [email protected].1
182182
// bundled global version
183-
npm install --save [email protected].0
183+
npm install --save [email protected].1
184184
```
185185

186186
Or you can use `core-js` [from CDN](https://www.jsdelivr.com/package/npm/core-js-bundle).

deno/corejs/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424

2525
*Example*:
2626
```js
27-
import 'https://deno.land/x/[email protected].0/index.js'; // <- at the top of your entry point
27+
import 'https://deno.land/x/[email protected].1/index.js'; // <- at the top of your entry point
2828

2929
Object.hasOwn({ foo: 42 }, 'foo'); // => true
3030

deno/corejs/index.js

Lines changed: 13 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/**
2-
* core-js 3.23.0
2+
* core-js 3.23.1
33
* © 2014-2022 Denis Pushkarev (zloirock.ru)
4-
* license: https://github.com/zloirock/core-js/blob/v3.23.0/LICENSE
4+
* license: https://github.com/zloirock/core-js/blob/v3.23.1/LICENSE
55
* source: https://github.com/zloirock/core-js
66
*/
77
!function (undefined) { 'use strict'; /******/ (function(modules) { // webpackBootstrap
@@ -879,10 +879,10 @@ var store = __webpack_require__(34);
879879
(module.exports = function (key, value) {
880880
return store[key] || (store[key] = value !== undefined ? value : {});
881881
})('versions', []).push({
882-
version: '3.23.0',
882+
version: '3.23.1',
883883
mode: IS_PURE ? 'pure' : 'global',
884884
copyright: '© 2014-2022 Denis Pushkarev (zloirock.ru)',
885-
license: 'https://github.com/zloirock/core-js/blob/v3.23.0/LICENSE',
885+
license: 'https://github.com/zloirock/core-js/blob/v3.23.1/LICENSE',
886886
source: 'https://github.com/zloirock/core-js'
887887
});
888888

@@ -2777,6 +2777,7 @@ module.exports = function () {
27772777
if (that.multiline) result += 'm';
27782778
if (that.dotAll) result += 's';
27792779
if (that.unicode) result += 'u';
2780+
if (that.unicodeSets) result += 'v';
27802781
if (that.sticky) result += 'y';
27812782
return result;
27822783
};
@@ -7525,10 +7526,12 @@ $({ target: 'Math', stat: true, forced: true }, {
75257526

75267527
var $ = __webpack_require__(2);
75277528

7529+
var DEG_PER_RAD = Math.PI / 180;
7530+
75287531
// `Math.DEG_PER_RAD` constant
75297532
// https://rwaldron.github.io/proposal-math-extensions/
7530-
$({ target: 'Math', stat: true, nonConfigurable: true, nonWritable: true, forced: true }, {
7531-
DEG_PER_RAD: Math.PI / 180
7533+
$({ target: 'Math', stat: true, nonConfigurable: true, nonWritable: true, forced: Math.DEG_PER_RAD !== DEG_PER_RAD }, {
7534+
DEG_PER_RAD: DEG_PER_RAD
75327535
});
75337536

75347537

@@ -7640,10 +7643,12 @@ module.exports = Math.sign || function sign(x) {
76407643

76417644
var $ = __webpack_require__(2);
76427645

7646+
var RAD_PER_DEG = 180 / Math.PI;
7647+
76437648
// `Math.RAD_PER_DEG` constant
76447649
// https://rwaldron.github.io/proposal-math-extensions/
7645-
$({ target: 'Math', stat: true, nonConfigurable: true, nonWritable: true, forced: true }, {
7646-
RAD_PER_DEG: 180 / Math.PI
7650+
$({ target: 'Math', stat: true, nonConfigurable: true, nonWritable: true, forced: Math.RAD_PER_DEG !== RAD_PER_DEG }, {
7651+
RAD_PER_DEG: RAD_PER_DEG
76477652
});
76487653

76497654

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"version": "3.23.0",
2+
"version": "3.23.1",
33
"workspaces": [
44
"./packages/*"
55
],

packages/core-js-builder/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,16 @@
11
{
22
"name": "core-js-builder",
33
"description": "core-js builder",
4-
"version": "3.23.0",
4+
"version": "3.23.1",
55
"repository": {
66
"type": "git",
77
"url": "https://github.com/zloirock/core-js.git",
88
"directory": "packages/core-js-builder"
99
},
1010
"main": "index.js",
1111
"dependencies": {
12-
"core-js": "3.23.0",
13-
"core-js-compat": "3.23.0",
12+
"core-js": "3.23.1",
13+
"core-js-compat": "3.23.1",
1414
"mkdirp": ">=0.5.5 <1",
1515
"webpack": ">=4.46.0 <5"
1616
},

packages/core-js-bundle/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "core-js-bundle",
33
"description": "Standard library",
4-
"version": "3.23.0",
4+
"version": "3.23.1",
55
"repository": {
66
"type": "git",
77
"url": "https://github.com/zloirock/core-js.git"

packages/core-js-compat/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "core-js-compat",
33
"description": "core-js compat",
4-
"version": "3.23.0",
4+
"version": "3.23.1",
55
"repository": {
66
"type": "git",
77
"url": "https://github.com/zloirock/core-js.git",

packages/core-js-pure/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "core-js-pure",
33
"description": "Standard library",
4-
"version": "3.23.0",
4+
"version": "3.23.1",
55
"repository": {
66
"type": "git",
77
"url": "https://github.com/zloirock/core-js.git"

packages/core-js/internals/shared.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@ var store = require('../internals/shared-store');
44
(module.exports = function (key, value) {
55
return store[key] || (store[key] = value !== undefined ? value : {});
66
})('versions', []).push({
7-
version: '3.23.0',
7+
version: '3.23.1',
88
mode: IS_PURE ? 'pure' : 'global',
99
copyright: '© 2014-2022 Denis Pushkarev (zloirock.ru)',
10-
license: 'https://github.com/zloirock/core-js/blob/v3.23.0/LICENSE',
10+
license: 'https://github.com/zloirock/core-js/blob/v3.23.1/LICENSE',
1111
source: 'https://github.com/zloirock/core-js'
1212
});

0 commit comments

Comments
 (0)