Skip to content

Instantly share code, notes, and snippets.

@saghul
Created September 22, 2014 08:32
Show Gist options
  • Save saghul/815a3598f468146d6f22 to your computer and use it in GitHub Desktop.
Save saghul/815a3598f468146d6f22 to your computer and use it in GitHub Desktop.
var constants = require('constants');
process.stdin.on('error', function(error) {
if (error.errno == constants.EBADF)
console.log('stdin is unusable');
else
console.log('stdin error! ' + error);
});
process.stdin.resume()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment