(text: string)
| 84 | console.warn('INFO: ' + text); |
| 85 | } |
| 86 | export function warnLog(text: string): void { |
| 87 | console.warn(pc.yellow(`WARN: ${text}`)); |
| 88 | } |
| 89 | export function errorLog(text: string): void { |
| 90 | console.error(pc.red(`ERROR: ${text}`)); |
| 91 | } |
no outgoing calls
no test coverage detected