Skip to content

Commit

Permalink
3.33.2
Browse files Browse the repository at this point in the history
  • Loading branch information
zloirock committed Oct 30, 2023
1 parent ddcc8f2 commit 7cbd6b5
Show file tree
Hide file tree
Showing 13 changed files with 106 additions and 196 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
@@ -1,5 +1,8 @@
## Changelog
##### Unreleased
- Nothing

##### [3.33.2 - 2023.10.31](https://github.com/zloirock/core-js/releases/tag/v3.33.2)
- Simplified `structuredClone` polyfill, avoided second tree pass in cases of transferring
- Added support of [`SuppressedError`](https://github.com/tc39/proposal-explicit-resource-management#the-suppressederror-error) to `structuredClone` polyfill
- Removed unspecified unnecessary `ArrayBuffer` and `DataView` dependencies of `structuredClone` lack of which could cause errors in some entries in IE10-
Expand Down
6 changes: 3 additions & 3 deletions README.md
Expand Up @@ -209,11 +209,11 @@ structuredClone(new Set([1, 2, 3])); // => new Set([1, 2, 3])
### Installation:[](#index)
```sh
// global version
npm install --save core-js@3.33.1
npm install --save core-js@3.33.2
// version without global namespace pollution
npm install --save core-js-pure@3.33.1
npm install --save core-js-pure@3.33.2
// bundled global version
npm install --save core-js-bundle@3.33.1
npm install --save core-js-bundle@3.33.2
```

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

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

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

Expand Down

0 comments on commit 7cbd6b5

Please sign in to comment.