Skip to content

Commit

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

##### 3.18.1 - 2021.09.27
- Fixed `String.prototype.substr` feature detection and compat data
- Removed mistakenly added `.forEach` from prototypes of some DOM collections where it shouldn't be, [#988](https://github.com/zloirock/core-js/issues/988), [#987](https://github.com/zloirock/core-js/issues/987), thanks [@moorejs](https://github.com/moorejs)
- Added `cause` to `AggregateError` constructor implementation (still without adding to the feature detection)
Expand Down
8 changes: 4 additions & 4 deletions README.md
Expand Up @@ -140,14 +140,14 @@ Promise.resolve(32).then(x => console.log(x)); // => 32
### Installation:[](#index)
```
// global version
npm install --save core-js@3.18.0
npm install --save core-js@3.18.1
// version without global namespace pollution
npm install --save core-js-pure@3.18.0
npm install --save core-js-pure@3.18.1
// bundled global version
npm install --save core-js-bundle@3.18.0
npm install --save core-js-bundle@3.18.1
```

Already bundled version of `core-js` [on CDN](https://unpkg.com/core-js-bundle@3.18.0) ([minified version](https://unpkg.com/core-js-bundle@3.18.0/minified.js)).
Already bundled version of `core-js` [on CDN](https://unpkg.com/core-js-bundle@3.18.1) ([minified version](https://unpkg.com/core-js-bundle@3.18.1/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.18.0/index.js'; // <- at the top of your entry point
import 'https://deno.land/x/corejs@v3.18.1/index.js'; // <- at the top of your entry point

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

Expand Down

0 comments on commit 1a347bd

Please sign in to comment.