(msg: string)
| 8 | render(`[${chalk.yellow('Warning')}] ${msg}`); |
| 9 | }; |
| 10 | export const err = (msg: string) => { |
| 11 | render(`${chalk.bold.red('Error')} ${msg}`); |
| 12 | }; |
| 13 | |
| 14 | export const info = (msg: string, greyMsg: string = ''): string => { |
| 15 | return `${chalk.blue.bold('Info:')} ${msg} ${greyMsg ? chalk.grey(greyMsg) : ''}`.trim(); |
no outgoing calls
no test coverage detected