0.0.3 • Published 8 years ago

null-duplex-stream v0.0.3

Weekly downloads
9
License
MIT
Repository
github
Last release
8 years ago

Null Duplex Stream

a duplex stream eat anything, milk nothing.

var fs = require('fs');
var NullDuplexStream = require('null-duplex-stream');

var nullStream = new NullDuplexStream();

// eat all your stdin input
process.stdin.pipe(nullStream);

// output nothing
nullStream.pipe(process.stdout);

Installation

npm install null-duplex-stream

License

MIT