Function iterateReader
- iterate
Reader (reader, options?): AsyncIterableIterator<Uint8Array> Parameters
- reader: Reader
The reader to read from
Optionaloptions: {
bufSize?: number;
}The options
OptionalbufSize ?: numberThe size of the buffer to use
Returns AsyncIterableIterator<Uint8Array>
The async iterator of Uint8Array chunks
- reader: Reader
Turns a
Readerinto an async iterator.