UNPKG

streams

Version:

A lazy streams library for functional composition in JavaScript.

3 lines (2 loc) 180 B
import { Readable } from "node:stream"; export declare function readableChunks(readable: Readable, encoding?: BufferEncoding): AsyncGenerator<Buffer | string, undefined, unknown>;