Skip to content

Commit 6b61dcf

Browse files
committed
fix some missed dependencies
1 parent 21bb08d commit 6b61dcf

File tree

3 files changed

+3
-0
lines changed

3 files changed

+3
-0
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
- Handling of optional `.next` arguments in `(Async)Iterator` methods is aligned with the current spec draft (mainly - ignoring the first passed to `.next` argument in built-in generators)
55
- Behavior of `.next`, `.return`, `.throw` methods on `AsyncIterator` helpers proxy iterators aligned with the current spec draft (built-in async generators) (mainly - some early errors moved to returned promises)
66
- Fixed some cases of safe iteration closing
7+
- Fixed dependencies of some entry points
78

89
##### 3.16.3 - 2021.08.25
910
- Fixed `CreateAsyncFromSyncIterator` semantic in `AsyncIterator.from`, related to [#765](https://github.com/zloirock/core-js/issues/765)

packages/core-js/features/bigint/range.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
require('../../modules/es.object.to-string');
12
require('../../modules/esnext.bigint.range');
23
var BigInt = require('../../internals/path').BigInt;
34

packages/core-js/features/number/index.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,6 @@ var parent = require('../../stable/number');
22

33
module.exports = parent;
44

5+
require('../../modules/es.object.to-string');
56
require('../../modules/esnext.number.from-string');
67
require('../../modules/esnext.number.range');

0 commit comments

Comments
 (0)