Stream just returns blank buffers. Like reading from /dev/zero on Unix
npm install dev-zero-streamStream just returns blank buffers. Like reading from /dev/zero on Unix.
```
npm install dev-zero-stream

` js
var zero = require('dev-zero-stream')
var fs = require('fs')
var stream = zero(50 1024 1024) // 50mb of blank data
stream.pipe(fs.createWriteStream('/tmp/test.blank'))
`
You can also create an infinite blank stream
` js
var stream = zero()
stream.on('data', function (data) {
// will never stop firing
console.log('data:', data)
})
`
#### var stream = zero(length)`
Create a new blank stream. Length can be set to the byte length of the stream.
If not provided the stream will have an infinite length.
MIT