(text: string, indentCount: number = 0)
| 36 | const write = (stream: NodeJS.WriteStream, text: string, indentCount: number) => |
| 37 | stream.write(`${" ".repeat(indentCount)}${text}\n`); |
| 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 |
no test coverage detected