alejandro.alvarez5 70bb213259 articulo | пре 3 година | |
---|---|---|
.. | ||
index.d.ts | пре 3 година | |
index.js | пре 3 година | |
license | пре 3 година | |
package.json | пре 3 година | |
readme.md | пре 3 година |
Read a chunk from a file
Because the built-in way requires way too much boilerplate.
$ npm install read-chunk
const readChunk = require('read-chunk');
// foo.txt => hello
readChunk.sync('foo.txt', 1, 3);
//=> 'ell'
Returns a Promise<Buffer>
with the read chunk.
Returns a Buffer
with the read chunk.
Type: string
Type: number
Position to start reading.
Type: number
Number of bytes to read.
MIT © Sindre Sorhus