Skip to content

Commit

Permalink
3.19.2
Browse files Browse the repository at this point in the history
  • Loading branch information
zloirock committed Nov 29, 2021
1 parent 52eea94 commit e49b7f3
Show file tree
Hide file tree
Showing 12 changed files with 661 additions and 618 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.19.2 - 2021.11.29
- Added a workaround for a UC Browser specific version bug with unobservable `RegExp#sticky` flag, [#1008](https://github.com/zloirock/core-js/issues/1008), [#1015](https://github.com/zloirock/core-js/issues/1015)
- Added handling of comments and specific spaces to `Function#name` polyfill, [#1010](https://github.com/zloirock/core-js/issues/1010), thanks [@ildar-shaimordanov](https://github.com/ildar-shaimordanov)
- Prevented some theoretical cases of breaking / observing the internal state by patching `Array.prototype[@@species]`
Expand Down
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
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.19.1
npm install --save core-js@3.19.2
// version without global namespace pollution
npm install --save core-js-pure@3.19.1
npm install --save core-js-pure@3.19.2
// bundled global version
npm install --save core-js-bundle@3.19.1
npm install --save core-js-bundle@3.19.2
```

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

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

Expand Down

0 comments on commit e49b7f3

Please sign in to comment.