Skip to content

Latest commit

 

History

History

read-stream

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 

Read Stream

Read all data from a stream.

const buffer: Buffer = await readStream(readable);

An encoding can be given to get string data instead of a Buffer.

const text: string = await readStream(readable, 'utf8');