Skip to content

Commit

Permalink
3.32.1
Browse files Browse the repository at this point in the history
  • Loading branch information
zloirock committed Aug 18, 2023
1 parent 084d1b0 commit 5dabb13
Show file tree
Hide file tree
Showing 14 changed files with 361 additions and 333 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.32.1 - 2023.08.19](https://github.com/zloirock/core-js/releases/tag/v3.32.1)
- Fixed some cases of IEEE754 rounding, [#1279](https://github.com/zloirock/core-js/issues/1279), thanks [**@petamoriken**](https://github.com/petamoriken)
- Prevented injection `process` polyfill to `core-js` via some bundlers or `esm.sh`, [#1277](https://github.com/zloirock/core-js/issues/1277)
- Some minor fixes and stylistic changes
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -210,11 +210,11 @@ structuredClone(new Set([1, 2, 3])); // => new Set([1, 2, 3])
### Installation:[](#index)
```sh
// global version
npm install --save core-js@3.32.0
npm install --save core-js@3.32.1
// version without global namespace pollution
npm install --save core-js-pure@3.32.0
npm install --save core-js-pure@3.32.1
// bundled global version
npm install --save core-js-bundle@3.32.0
npm install --save core-js-bundle@3.32.1
```

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 @@ -29,7 +29,7 @@

*Example*:
```js
import 'https://deno.land/x/corejs@v3.32.0/index.js'; // <- at the top of your entry point
import 'https://deno.land/x/corejs@v3.32.1/index.js'; // <- at the top of your entry point

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

Expand Down

0 comments on commit 5dabb13

Please sign in to comment.