* Prints a message and properly handles new-lines
(message: string)
| 73 | * Prints a message and properly handles new-lines |
| 74 | */ |
| 75 | print(message: string) { |
| 76 | const normInput = message.replace(/\n/g, '\r\n') |
| 77 | this.xterm.write(normInput) |
| 78 | } |
| 79 | |
| 80 | /** |
| 81 | * Erase a character at cursor location |
no outgoing calls
no test coverage detected