dev-null
/dev/null
for node streams
Use it whenever you need to interrupt stream flow for instance if you want to log the state of a stream instead of its output.
// without devnullvar numbers = ;// => // 0// 1// 2
// piping into devnullvar devnull = ;var numbers = ; ; // => (no output)
Installation
npm install dev-null
License
MIT