Skip to content

Commit

Permalink
3.17.3
Browse files Browse the repository at this point in the history
  • Loading branch information
zloirock committed Sep 9, 2021
1 parent 6778115 commit c65f52b
Show file tree
Hide file tree
Showing 12 changed files with 351 additions and 356 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
@@ -1,5 +1,8 @@
## Changelog
##### Unreleased
- Nothing

##### 3.17.3 - 2021.09.09
- Fixed some possible problems related to possible extension of `%IteratorPrototype%` and `%AsyncIteratorPrototype%` in the future
- Fixed `DOMTokenList.prototype.{ forEach, @@iterator, keys, values, entries }` in old WebKit versions where `element.classList` is not an instance of global `DOMTokenList`
- Added NodeJS 16.9 compat data mapping
Expand Down
8 changes: 4 additions & 4 deletions README.md
Expand Up @@ -139,14 +139,14 @@ Promise.resolve(32).then(x => console.log(x)); // => 32
### Installation:[](#index)
```
// global version
npm install --save core-js@3.17.2
npm install --save core-js@3.17.3
// version without global namespace pollution
npm install --save core-js-pure@3.17.2
npm install --save core-js-pure@3.17.3
// bundled global version
npm install --save core-js-bundle@3.17.2
npm install --save core-js-bundle@3.17.3
```

Already bundled version of `core-js` [on CDN](https://unpkg.com/core-js-bundle@3.17.2) ([minified version](https://unpkg.com/core-js-bundle@3.17.2/minified.js)).
Already bundled version of `core-js` [on CDN](https://unpkg.com/core-js-bundle@3.17.3) ([minified version](https://unpkg.com/core-js-bundle@3.17.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
Expand Up @@ -24,7 +24,7 @@

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

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

Expand Down

0 comments on commit c65f52b

Please sign in to comment.