diff --git a/lib/tty.js b/lib/tty.js index 33e7c26f0291ed..219008b1086d74 100644 --- a/lib/tty.js +++ b/lib/tty.js @@ -72,7 +72,7 @@ ObjectSetPrototypeOf(ReadStream, net.Socket); ReadStream.prototype.setRawMode = function(flag) { flag = !!flag; - const err = this._handle.setRawMode(flag); + const err = this._handle && this._handle.setRawMode(flag); if (err) { this.emit('error', errors.errnoException(err, 'setRawMode')); return this; diff --git a/test/parallel/test-repl-stdin-push-null.js b/test/parallel/test-repl-stdin-push-null.js new file mode 100644 index 00000000000000..a483c32c9af37a --- /dev/null +++ b/test/parallel/test-repl-stdin-push-null.js @@ -0,0 +1,12 @@ +'use strict'; +require('../common'); + +// This test ensures that the repl does not +// throw when using process.stdin stream to push null +// Refs: https://github.com/nodejs/node/issues/41330 + +const r = require('repl').start(); + +// Should not throw. +r.write('process.stdin.push(null)\n'); +r.write('.exit\n');