(text: string)
| 77 | // Logging module |
| 78 | // TODO: Replace with more professional js logging tools |
| 79 | export function greenConsoleLog(text: string): void { |
| 80 | console.log(pc.green(text)); |
| 81 | } |
| 82 | export function infoLog(text: string): void { |
| 83 | // Warn to print on stderr, not stdout |
| 84 | console.warn('INFO: ' + text); |
no outgoing calls
no test coverage detected