Skip to content

Commit 1f16f36

Browse files
committed
3.19.1
1 parent 8faf019 commit 1f16f36

File tree

12 files changed

+324
-282
lines changed

12 files changed

+324
-282
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.1 - 2021.11.03
36
- Added a workaround for FF26- bug where `ArrayBuffer`s are non-extensible, but `Object.isExtensible` does not report it:
47
- Fixed in `Object.{ isExtensible, isSealed, isFrozen }` and `Reflect.isExtensible`
58
- Fixed handling of `ArrayBuffer`s as collections keys

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].0
143+
npm install --save [email protected].1
144144
// version without global namespace pollution
145-
npm install --save [email protected].0
145+
npm install --save [email protected].1
146146
// bundled global version
147-
npm install --save [email protected].0
147+
npm install --save [email protected].1
148148
```
149149

150-
Already bundled version of `core-js` [on CDN](https://unpkg.com/[email protected].0) ([minified version](https://unpkg.com/[email protected].0/minified.js)).
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)).
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].0/index.js'; // <- at the top of your entry point
27+
import 'https://deno.land/x/[email protected].1/index.js'; // <- at the top of your entry point
2828

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

0 commit comments

Comments
 (0)