Skip to content

Commit

Permalink
Remove another infinite loop
Browse files Browse the repository at this point in the history
  • Loading branch information
rizerphe committed Nov 10, 2023
1 parent 9ea5f3d commit 765d58f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/cache.ts
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ class ExhaustableConsumable<T> {
if (next_item) {
yield next_item.item;
} else {
continue;
break;
}
}
}
Expand Down

0 comments on commit 765d58f

Please sign in to comment.