Skip to content

Commit

Permalink
Remove the loop, now properly
Browse files Browse the repository at this point in the history
  • Loading branch information
rizerphe committed Nov 10, 2023
1 parent 9eb9037 commit 88d0212
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 {
break;
return;
}
}
}
Expand Down

0 comments on commit 88d0212

Please sign in to comment.