(...str: any[])
| 25 | export const info = log |
| 26 | |
| 27 | export function warn(...str: any[]) { |
| 28 | console.warn(chalk.yellow('[WARN]', ...map(str, stringify))) |
| 29 | } |
| 30 | |
| 31 | export function error(...str: any[]) { |
| 32 | console.error(chalk.red.bold('[ERROR]', ...map(str, stringify))) |
no outgoing calls
no test coverage detected