Skip to content

Commit 1a1d792

Browse files
committed
chore: push lint fixes
1 parent f179938 commit 1a1d792

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

asynciterator.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1307,7 +1307,8 @@ export class MappingIterator<T, D = T> extends AsyncIterator<D> {
13071307
//
13081308
// Do not use a for-of loop here, it slows down transformations
13091309
// by approximately a factor of 2.
1310-
while (i-- > 0 && (item = transforms[i](item, this)) !== null);
1310+
while (i-- >= 1 && (item = transforms[i](item, this)) !== null)
1311+
;
13111312
if (item !== null)
13121313
return item;
13131314
}

0 commit comments

Comments
 (0)