Skip to content

Commit

Permalink
3.21.1
Browse files Browse the repository at this point in the history
  • Loading branch information
zloirock committed Feb 16, 2022
1 parent ea62b2e commit eb9229a
Show file tree
Hide file tree
Showing 12 changed files with 426 additions and 402 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
## Changelog
##### Unreleased
- Nothing

##### 3.21.1 - 2022.02.17
- Added a [bug](https://bugs.webkit.org/show_bug.cgi?id=236541)fix for the WebKit `Array.prototype.{ groupBy, groupByToMap }` implementation
- `core-js-compat` targets parser transforms engine names to lower case
- `atob` / `btoa` marked as [fixed](https://github.com/nodejs/node/pull/41478) in NodeJS 17.5
Expand Down
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -176,14 +176,14 @@ queueMicrotask(() => console.log('called as microtask'));
### Installation:[](#index)
```
// global version
npm install --save [email protected].0
npm install --save [email protected].1
// version without global namespace pollution
npm install --save [email protected].0
npm install --save [email protected].1
// bundled global version
npm install --save [email protected].0
npm install --save [email protected].1
```

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

### `postinstall` message[](#index)
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:
Expand Down
2 changes: 1 addition & 1 deletion deno/corejs/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@

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

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

Expand Down
Loading

0 comments on commit eb9229a

Please sign in to comment.