0.0.1 • Published 11 years ago

chunk-stream v0.0.1

Weekly downloads
186
License
-
Repository
github
Last release
11 years ago

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