fix(read-chunk/README): fix pkg name

This commit is contained in:
Julien Fontanet 2020-05-28 15:01:02 +02:00
parent 2ceba11aa7
commit 3c0ca7026f

View File

@ -19,7 +19,7 @@ Installation of the [npm package](https://npmjs.org/package/@vates/read-chunk):
- returns `null` if the stream has ended
```js
import { readChunk } from '@xen-orchestra/read-chunk'
import { readChunk } from '@vates/read-chunk'
;(async () => {
let chunk
while ((chunk = await readChunk(stream, 1024)) !== null) {