Skip to main content
ReadableBase.prototype.readableLength - stream - Node documentation
property ReadableBase.prototype.readableLength

Usage in Deno

import { ReadableBase } from "node:stream";

This property contains the number of bytes (or objects) in the queue ready to be read. The value provides introspection data regarding the status of the highWaterMark.

Type

number
Back to top