Skip to content

Commit b5f2dd0

Browse files
committed
chore: remove unused close parameter
1 parent 1a1d792 commit b5f2dd0

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

asynciterator.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1315,7 +1315,7 @@ export class MappingIterator<T, D = T> extends AsyncIterator<D> {
13151315
return null;
13161316
}
13171317

1318-
map<K>(map: (item: D, it: AsyncIterator<any>) => K | null, self?: any, close?: boolean): AsyncIterator<K> {
1318+
map<K>(map: (item: D, it: AsyncIterator<any>) => K | null, self?: any): AsyncIterator<K> {
13191319
return new MappingIterator<T, K>(this.source, [bind(map, self), ...this.transforms], this);
13201320
}
13211321

0 commit comments

Comments
 (0)