Skip to content

Commit

Permalink
3.23.4
Browse files Browse the repository at this point in the history
  • Loading branch information
zloirock committed Jul 9, 2022
1 parent 369786c commit fe00e9c
Show file tree
Hide file tree
Showing 14 changed files with 577 additions and 527 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
@@ -1,5 +1,8 @@
## Changelog
##### Unreleased
- Nothing

##### [3.23.4 - 2022.07.10](https://github.com/zloirock/core-js/releases/tag/v3.23.4)
- Added a workaround of the Bun ~ 0.1.1 [bug](https://github.com/Jarred-Sumner/bun/issues/399) that define some globals with incorrect property descriptors and that causes a crash of `core-js`
- Added a fix of the FF103+ `structuredClone` bugs ([1774866](https://bugzilla.mozilla.org/show_bug.cgi?id=1774866) (fixed in FF104) and [1777321](https://bugzilla.mozilla.org/show_bug.cgi?id=1777321) (still not fixed)) that now can clone errors, but `.stack` of the clone is an empty string
- Fixed `{ Map, WeakMap }.prototype.emplace` logic, [#1102](https://github.com/zloirock/core-js/issues/1102)
Expand Down
6 changes: 3 additions & 3 deletions README.md
Expand Up @@ -176,11 +176,11 @@ queueMicrotask(() => console.log('called as microtask'));
### Installation:[](#index)
```
// global version
npm install --save core-js@3.23.3
npm install --save core-js@3.23.4
// version without global namespace pollution
npm install --save core-js-pure@3.23.3
npm install --save core-js-pure@3.23.4
// bundled global version
npm install --save core-js-bundle@3.23.3
npm install --save core-js-bundle@3.23.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
Expand Up @@ -24,7 +24,7 @@

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

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

Expand Down

0 comments on commit fe00e9c

Please sign in to comment.