(text: string, indentCount: number = 0)
| 38 | const writeStdOut = (text: string, indentCount: number = 0) => |
| 39 | write(process.stdout, text, indentCount); |
| 40 | const writeStdErr = (text: string, indentCount: number = 0) => |
| 41 | write(process.stderr, text, indentCount); |
| 42 | |
| 43 | const DEFAULT_PROMPT = "> "; |
| 44 |
no test coverage detected