(input: Terminal.UserInput)
| 92 | // ============================================================================= |
| 93 | |
| 94 | const shouldQuit = (input: Terminal.UserInput): boolean => |
| 95 | input.key.ctrl && (input.key.name === "c" || input.key.name === "d") |
| 96 | |
| 97 | const toUserInput = ( |
| 98 | key: string, |
no outgoing calls
no test coverage detected