(message: string)
| 1 | import { bold, cyan, red, yellow, green } from 'colorette' |
| 2 | |
| 3 | const writeStdout = (message: string): void => { |
| 4 | process.stdout.write(`${message}\n`) |
| 5 | } |
| 6 | |
| 7 | const writeStderr = (message: string): void => { |
| 8 | process.stderr.write(`${message}\n`) |
no outgoing calls
no test coverage detected