You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
isaacs c383befd25 npm: Upgrade to 1.1.43 12 years ago
..
bench npm: Upgrade to 1.1.43 12 years ago
test npm: Upgrade to 1.1.43 12 years ago
LICENCE npm: Upgrade to 1.1.43 12 years ago
README.md Include NPM, update .pkg to install it. 13 years ago
block-stream.js Include NPM, update .pkg to install it. 13 years ago
package.json npm: Upgrade to 1.1.43 12 years ago

README.md

block-stream

A stream of blocks.

Write data into it, and it'll output data in buffer blocks the size you specify, padding with zeroes if necessary.

var block = new BlockStream(512)
fs.createReadStream("some-file").pipe(block)
block.pipe(fs.createWriteStream("block-file"))

When .end() or .flush() is called, it'll pad the block with zeroes.