1.0.0 • Published 5 years ago

block-console v1.0.0

Weekly downloads
3
License
MIT
Repository
github
Last release
5 years ago

block-console

A util to block stderr&stdin stream to prevent them interrupt some long text out

Usage

const blockConsole = require('block-console');

blockConsole.block(); //This will block your stdin and stderr stream

console.log('some long text');

blockConsole.relieve(); //This will relieve your stdin and stderr stream for other usage