UNPKG
shusher
Version:
latest (0.1.1)
0.1.1
0.1.0
Pipe stuff here to get it shushed-up!
github.com/sparebytes/node-shusher
sparebytes/node-shusher
shusher
/
index.js
10 lines
(8 loc)
•
141 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
'use strict'
;
var
stdin = process.
stdin
;
if
(stdin.
isTTY
) {
// Do nothing
}
else
{ stdin.
resume
(); stdin.
setEncoding
(
'utf8'
); }