root 3bf41bf355 update | 1 년 전 | |
---|---|---|
.. | ||
LICENSE | 1 년 전 | |
README.md | 1 년 전 | |
index.js | 1 년 전 | |
package.json | 1 년 전 |
Mute and unmute stdout.
var stdout = require('mute-stdout');
stdout.mute();
console.log('will not print');
stdout.unmute();
console.log('will print');
Mutes the process.stdout
stream by replacing the write
method with a no-op function.
Unmutes the process.stdout
stream by restoring the original write
method.
MIT