Skip to content

Commit eb9229a

Browse files
committed
3.21.1
1 parent ea62b2e commit eb9229a

File tree

12 files changed

+426
-402
lines changed

12 files changed

+426
-402
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.21.1 - 2022.02.17
36
- Added a [bug](https://bugs.webkit.org/show_bug.cgi?id=236541)fix for the WebKit `Array.prototype.{ groupBy, groupByToMap }` implementation
47
- `core-js-compat` targets parser transforms engine names to lower case
58
- `atob` / `btoa` marked as [fixed](https://github.com/nodejs/node/pull/41478) in NodeJS 17.5

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -176,14 +176,14 @@ 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

186-
Already bundled version of `core-js` [on CDN](https://unpkg.com/[email protected].0) ([minified version](https://unpkg.com/[email protected].0/minified.js)).
186+
Already bundled version of `core-js` [on CDN](https://unpkg.com/[email protected].1) ([minified version](https://unpkg.com/[email protected].1/minified.js)).
187187

188188
### `postinstall` message[](#index)
189189
The `core-js` project needs your help, so the package shows a message about it after installation. If it causes problems for you, you can disable it:

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

0 commit comments

Comments
 (0)