mirror of
https://github.com/biobulkbende/biobulkbende.org.git
synced 2024-12-25 12:45:23 +00:00
.. | ||
index.js | ||
LICENSE | ||
package.json | ||
README.md |
mute-stdout
Mute and unmute stdout.
Usage
var stdout = require('mute-stdout');
stdout.mute();
console.log('will not print');
stdout.unmute();
console.log('will print');
API
mute()
Mutes the process.stdout
stream by replacing the write
method with a no-op function.
unmute()
Unmutes the process.stdout
stream by restoring the original write
method.
License
MIT