Skip to content

Commit

Permalink
disable forced replacing of Array.fromAsync since it's on Stage 3
Browse files Browse the repository at this point in the history
  • Loading branch information
zloirock committed Nov 6, 2022
1 parent 25b14cd commit 99099fd
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
## Changelog
##### Unreleased
- Nothing
- Disabled forced replacing of `Array.fromAsync` since it's on Stage 3

##### [3.26.0 - 2022.10.24](https://github.com/zloirock/core-js/releases/tag/v3.26.0)
- [`Array.fromAsync` proposal](https://github.com/tc39/proposal-array-from-async):
Expand Down
2 changes: 1 addition & 1 deletion packages/core-js/modules/esnext.array.from-async.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,6 @@ var fromAsync = require('../internals/array-from-async');

// `Array.fromAsync` method
// https://github.com/tc39/proposal-array-from-async
$({ target: 'Array', stat: true, forced: true }, {
$({ target: 'Array', stat: true }, {
fromAsync: fromAsync
});

0 comments on commit 99099fd

Please sign in to comment.