(prefix: string, text?: string | string[])
| 132 | } |
| 133 | |
| 134 | export function debug(prefix: string, text?: string | string[]) { |
| 135 | logBullet(log, color.yellow, color.dim, "●", prefix, text); |
| 136 | } |
| 137 | |
| 138 | export function info(prefix: string, text?: string | string[]) { |
| 139 | logBullet(log, color.cyan, color.dim, "◼", prefix, text); |
no test coverage detected
searching dependent graphs…