vlad 6f123ff03e 18.07 | 6 سال پیش | |
---|---|---|
.. | ||
node_modules | 6 سال پیش | |
index.js | 6 سال پیش | |
license | 6 سال پیش | |
package.json | 6 سال پیش | |
readme.md | 6 سال پیش |
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>
.
Returns a Buffer
.
Type: string
Type: number
Position to start reading.
Type: number
Number of bytes to read.
MIT © Sindre Sorhus