(...args)
| 50 | get() { |
| 51 | return { |
| 52 | info(...args) { |
| 53 | console.log( |
| 54 | chalk.bold.bgRgb(51, 204, 51)('INFO '), |
| 55 | `[${chalk.rgb(255, 255, 255)(new Date().toUTCString())}]:`, |
| 56 | chalk.cyan(format(...args)) |
| 57 | ) |
| 58 | }, |
| 59 | error(...args) { |
| 60 | console.log( |
| 61 | chalk.bold.bgRgb(247, 38, 33)('ERROR '), |
nothing calls this directly
no outgoing calls
no test coverage detected