|
|
5 년 전 | |
|---|---|---|
| .. | ||
| index.d.ts | 5 년 전 | |
| index.js | 5 년 전 | |
| license | 5 년 전 | |
| package.json | 5 년 전 | |
| readme.md | 5 년 전 | |
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