ReadableStreamDefaultReader

Important: This documentation is about an older version. It's relevant only to the release noted, many of the features and functions have been updated or replaced. Please view the current version.

Open source RSS

ReadableStreamDefaultReader

The ReadableStreamDefaultReader type represents a default reader that can be used to read stream data. It can be used to read from a ReadableStream object that has an underlying source of any type.

Methods

NameDescription
cancel(reason)Returns a Promise that resolves when the stream is canceled.
read()Returns a Promise that resolves with an object containing the done and value properties, providing access to the next chunk in the stream’s internal queue.
releaseLock()Releases the lock on the stream.