xen-orchestra/@vates/read-chunk/USAGE.md
2020-05-28 14:48:27 +02:00

329 B

  • returns the next available chunk of data
  • like stream.read(), a number of bytes can be specified
  • returns null if the stream has ended
import { readChunk } from '@vates/read-chunk'
;(async () => {
  let chunk
  while ((chunk = await readChunk(stream, 1024)) !== null) {
    // do something with chunk
  }
})()