method ReadStream.prototype.setRawMode
ReadStream.prototype.setRawMode(mode: boolean): thisDeprecated
Allows configuration of tty.ReadStream so that it operates as a raw device.
When in raw mode, input is always available character-by-character, not
including modifiers. Additionally, all special processing of characters by the
terminal is disabled, including echoing input
characters. Ctrl+C will no longer cause a SIGINT when
in this mode.
thisThe read stream instance.