Skip to main content
Version: 3.13.0

releaseLock()

The releaseLock() method of the ReadableStreamBYOBReader interface releases the reader's lock on the stream. After the lock is released, the reader is no longer active.

The reader will appear errored if the associated stream is errored when the lock is released; otherwise, the reader will appear closed.

If the reader's lock is released while it still has pending read requests then the promises returned by the reader's ReadableStreamBYOBReader.read() method are immediately rejected with a TypeError. Unread chunks remain in the stream's internal queue and can be read later by acquiring a new reader.

Syntax

releaseLock()

Parameters

None.

Return value

undefined.

Exceptions

  • TypeError
    • : Thrown if the source object is not a ReadableStreamBYOBReader.