This property contains the number of bytes (or objects) in the queue ready to be read.
If objectMode
is true, this is the number of objects in the queue, if false it's the
total number of bytes in the queue.
Returns a promise that resolves when the underlying queue becomes empty (e.g. this.readableLength === 0).
If an AbortSignal is passed as an option and that signal aborts, it only causes the returned promise to reject - it does not end the pushable.
Optional
options: AbortOptionsGenerated using TypeDoc
Similar to
pushable
, except it yields multiple buffered chunks at a time. All values yielded from the iterable will be arrays.