(msg: string, pty: PtyTerminal)
| 16 | } |
| 17 | |
| 18 | export function magentaWrite(msg: string, pty: PtyTerminal) { |
| 19 | if (pty) { |
| 20 | pty.write(BR_MAGENTA_FG + msg + RESET); |
| 21 | } |
| 22 | } |
| 23 | const controlChars = {}; |
| 24 | const zero = '@'.charCodeAt(0); |
| 25 | for (let ix = zero; ix <= 'Z'.charCodeAt(0); ix++) { |
no test coverage detected