diff --git a/CHANGELOG.md b/CHANGELOG.md index 7479695897e6..003271876cda 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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): diff --git a/packages/core-js/modules/esnext.array.from-async.js b/packages/core-js/modules/esnext.array.from-async.js index 301288e2f990..30b7155c0fe4 100644 --- a/packages/core-js/modules/esnext.array.from-async.js +++ b/packages/core-js/modules/esnext.array.from-async.js @@ -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 });