Skip to content

Commit e49b7f3

Browse files
committed
3.19.2
1 parent 52eea94 commit e49b7f3

File tree

12 files changed

+661
-618
lines changed

12 files changed

+661
-618
lines changed

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
## Changelog
22
##### Unreleased
3+
- Nothing
4+
5+
##### 3.19.2 - 2021.11.29
36
- 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)
47
- 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)
58
- Prevented some theoretical cases of breaking / observing the internal state by patching `Array.prototype[@@species]`

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -140,14 +140,14 @@ Promise.resolve(32).then(x => console.log(x)); // => 32
140140
### Installation:[](#index)
141141
```
142142
// global version
143-
npm install --save [email protected].1
143+
npm install --save [email protected].2
144144
// version without global namespace pollution
145-
npm install --save [email protected].1
145+
npm install --save [email protected].2
146146
// bundled global version
147-
npm install --save [email protected].1
147+
npm install --save [email protected].2
148148
```
149149

150-
Already bundled version of `core-js` [on CDN](https://unpkg.com/[email protected].1) ([minified version](https://unpkg.com/[email protected].1/minified.js)).
150+
Already bundled version of `core-js` [on CDN](https://unpkg.com/[email protected].2) ([minified version](https://unpkg.com/[email protected].2/minified.js)).
151151

152152
### `postinstall` message[](#index)
153153
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:

deno/corejs/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424

2525
*Example*:
2626
```js
27-
import 'https://deno.land/x/[email protected].1/index.js'; // <- at the top of your entry point
27+
import 'https://deno.land/x/[email protected].2/index.js'; // <- at the top of your entry point
2828

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

0 commit comments

Comments
 (0)