Skip to content

Commit

Permalink
3.22.4
Browse files Browse the repository at this point in the history
  • Loading branch information
zloirock committed May 2, 2022
1 parent 14b2d5e commit 6ba79a5
Show file tree
Hide file tree
Showing 12 changed files with 1,009 additions and 968 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.22.4 - 2022.05.03
- Ensured proper `.length` of polyfilled functions even in compressed code (excepting some ancient engines)
- Ensured proper `.name` of polyfilled accessors (excepting some ancient engines)
- Ensured proper source / `ToString` conversion of polyfilled accessors
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -176,11 +176,11 @@ queueMicrotask(() => console.log('called as microtask'));
### Installation:[](#index)
```
// global version
npm install --save core-js@3.22.3
npm install --save core-js@3.22.4
// version without global namespace pollution
npm install --save core-js-pure@3.22.3
npm install --save core-js-pure@3.22.4
// bundled global version
npm install --save core-js-bundle@3.22.3
npm install --save core-js-bundle@3.22.4
```

Or you can use `core-js` [from CDN](https://www.jsdelivr.com/package/npm/core-js-bundle).
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/corejs@v3.22.3/index.js'; // <- at the top of your entry point
import 'https://deno.land/x/corejs@v3.22.4/index.js'; // <- at the top of your entry point

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

Expand Down

0 comments on commit 6ba79a5

Please sign in to comment.