Skip to content

Commit

Permalink
fix: concat pull
Browse files Browse the repository at this point in the history
  • Loading branch information
ilteoood committed Dec 1, 2023
1 parent b3e200d commit 939c698
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/concat.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ export const concat = (...readableStreams: ReadableStream[]) => {
const readableStreamsLength = fallbackedStreams.length;

return new ReadableStream({
async start(controller) {
async pull(controller) {
for (let i = 0; i < readableStreamsLength; i++) {
const reader = fallbackedStreams[i].getReader();

Expand Down

0 comments on commit 939c698

Please sign in to comment.