Skip to content

Commit

Permalink
Set HWM to 0 for ReadableStream.from()
Browse files Browse the repository at this point in the history
  • Loading branch information
MattiasBuelens committed Feb 8, 2021
1 parent df038ab commit 33fbece
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -1459,6 +1459,6 @@ function ReadableStreamFromIterable(asyncIterable) {
return promiseResolvedWith(returnResult);
}

stream = CreateReadableStream(startAlgorithm, pullAlgorithm, cancelAlgorithm);
stream = CreateReadableStream(startAlgorithm, pullAlgorithm, cancelAlgorithm, 0);
return stream;
}

0 comments on commit 33fbece

Please sign in to comment.