Setup stdin in both processes on Windows

This commit is contained in:
Kevin Sawicki 2016-09-07 14:45:56 -07:00
parent b5e9bb9e6a
commit 28b33074cf
2 changed files with 17 additions and 15 deletions

View file

@ -39,14 +39,6 @@ if (process.platform === 'win32') {
}
console.log = console.error = console.warn = consoleLog
process.stdout.write = process.stderr.write = streamWrite
// Always returns EOF for stdin stream.
var Readable = require('stream').Readable
var stdin = new Readable()
stdin.push(null)
process.__defineGetter__('stdin', function () {
return stdin
})
}
// Don't quit on fatal error.