Skip to content

Commit

Permalink
3.20.3
Browse files Browse the repository at this point in the history
  • Loading branch information
zloirock committed Jan 15, 2022
1 parent 61d15fd commit 4bcdaf8
Show file tree
Hide file tree
Showing 12 changed files with 1,429 additions and 1,390 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.20.3 - 2022.01.15
- Detects and replaces broken third-party `Function#bind` polyfills, uses only native `Function#bind` in the internals
- `structuredClone` should throw an error if no arguments passed
- Changed the structure of notes in `__core-js_shared__`
Expand Down
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -175,14 +175,14 @@ queueMicrotask(() => console.log('called as microtask'));
### Installation:[](#index)
```
// global version
npm install --save core-js@3.20.2
npm install --save core-js@3.20.3
// version without global namespace pollution
npm install --save core-js-pure@3.20.2
npm install --save core-js-pure@3.20.3
// bundled global version
npm install --save core-js-bundle@3.20.2
npm install --save core-js-bundle@3.20.3
```

Already bundled version of `core-js` [on CDN](https://unpkg.com/core-js-bundle@3.20.2) ([minified version](https://unpkg.com/core-js-bundle@3.20.2/minified.js)).
Already bundled version of `core-js` [on CDN](https://unpkg.com/core-js-bundle@3.20.3) ([minified version](https://unpkg.com/core-js-bundle@3.20.3/minified.js)).

### `postinstall` message[](#index)
The `core-js` project needs your help, so the package shows a message about it after installation. If it causes problems for you, you can disable it:
Expand Down
2 changes: 1 addition & 1 deletion deno/corejs/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@

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

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

Expand Down
Loading

0 comments on commit 4bcdaf8

Please sign in to comment.