diff options
Diffstat (limited to 'js/util.ts')
-rw-r--r-- | js/util.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/js/util.ts b/js/util.ts index 0d2049842..fbd461bbe 100644 --- a/js/util.ts +++ b/js/util.ts @@ -138,7 +138,7 @@ export class CreateIterableIterator<T> implements IterableIterator<T> { [Symbol.iterator](): IterableIterator<T> { return this; - } + } next(): IteratorResult<T> { return this._iterators.next(); |