Skip to content

Commit 5dabb13

Browse files
committed
3.32.1
1 parent 084d1b0 commit 5dabb13

File tree

14 files changed

+361
-333
lines changed

14 files changed

+361
-333
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.32.1 - 2023.08.19](https://github.com/zloirock/core-js/releases/tag/v3.32.1)
36
- Fixed some cases of IEEE754 rounding, [#1279](https://github.com/zloirock/core-js/issues/1279), thanks [**@petamoriken**](https://github.com/petamoriken)
47
- Prevented injection `process` polyfill to `core-js` via some bundlers or `esm.sh`, [#1277](https://github.com/zloirock/core-js/issues/1277)
58
- Some minor fixes and stylistic changes

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -210,11 +210,11 @@ structuredClone(new Set([1, 2, 3])); // => new Set([1, 2, 3])
210210
### Installation:[](#index)
211211
```sh
212212
// global version
213-
npm install --save [email protected].0
213+
npm install --save [email protected].1
214214
// version without global namespace pollution
215-
npm install --save [email protected].0
215+
npm install --save [email protected].1
216216
// bundled global version
217-
npm install --save [email protected].0
217+
npm install --save [email protected].1
218218
```
219219

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

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

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

0 commit comments

Comments
 (0)