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 Dec 26, 2020
1 parent ab36e20 commit 6d7be65
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -1456,6 +1456,6 @@ function ReadableStreamFromIterable(asyncIterable) {
return promiseResolvedWith(returnResult);
}

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

0 comments on commit 6d7be65

Please sign in to comment.