Webpack build for branch 11.3-dev: 0821acfa99

This commit is contained in:
Travis CI 2018-01-09 20:21:07 +00:00
parent dd9da686f4
commit ae9bc27f78
2 changed files with 2 additions and 2 deletions

View file

@ -1010,7 +1010,7 @@ class Collection extends Map {
if (!Number.isInteger(count) || count < 1) throw new RangeError('The count must be an integer greater than 0.');
count = Math.min(this.size, count);
const arr = new Array(count);
const iter = this.iter();
const iter = this.keys();
for (let i = 0; i < count; i++) arr[i] = iter.next().value;
return arr;
}

File diff suppressed because one or more lines are too long