Web Streams: support ReadableStreamBYOBReader.prototype.read(view, { min })
#50706
Closed
Description
The Streams specification has been updated to add an optional min
option to byobReader.read(view)
. When the min
option is given, the read will only be fulfilled as soon as min
number of elements are available in the stream.
Specification: https://streams.spec.whatwg.org/#byob-reader-read
Specification change: whatwg/streams#1145
Tests: web-platform-tests/wpt#29723
Activity