chunk-stream
v0.0.1
Published
break up chunks into smaller chunks of size N on the way through
Downloads
464
Readme
chunk-stream
like block-stream, but works with browserify's buffers.
var chunks = require('chunk-stream')
, fs = require('fs')
fs.createReadStream('/usr/share/dict/words')
.pipe(chunks(512))
.pipe(somethingThatExpects512ByteChunks())
API
chunks(size[, type=Buffer]) -> through stream
only emit blocks of size bytes.
create instances of type (defaults to Buffer). type must support:
new type(byte size)streamInput.prototype.copy(type instance, target offset, start, end)
License
MIT
