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

This commit is contained in:
Julien Fontanet 2020-05-28 14:48:27 +02:00
parent c10bfe3db2
commit dfecb801db

View File

@ -3,7 +3,7 @@
- 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) {