Skip to content

Commit 7cbd6b5

Browse files
committed
3.33.2
1 parent ddcc8f2 commit 7cbd6b5

File tree

13 files changed

+106
-196
lines changed

13 files changed

+106
-196
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.33.2 - 2023.10.31](https://github.com/zloirock/core-js/releases/tag/v3.33.2)
36
- Simplified `structuredClone` polyfill, avoided second tree pass in cases of transferring
47
- Added support of [`SuppressedError`](https://github.com/tc39/proposal-explicit-resource-management#the-suppressederror-error) to `structuredClone` polyfill
58
- Removed unspecified unnecessary `ArrayBuffer` and `DataView` dependencies of `structuredClone` lack of which could cause errors in some entries in IE10-

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -209,11 +209,11 @@ structuredClone(new Set([1, 2, 3])); // => new Set([1, 2, 3])
209209
### Installation:[](#index)
210210
```sh
211211
// global version
212-
npm install --save [email protected].1
212+
npm install --save [email protected].2
213213
// version without global namespace pollution
214-
npm install --save [email protected].1
214+
npm install --save [email protected].2
215215
// bundled global version
216-
npm install --save [email protected].1
216+
npm install --save [email protected].2
217217
```
218218

219219
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].1/index.js'; // <- at the top of your entry point
32+
import 'https://deno.land/x/[email protected].2/index.js'; // <- at the top of your entry point
3333

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

0 commit comments

Comments
 (0)