(message: string, title?: string)
| 125 | } |
| 126 | |
| 127 | export function note(message: string, title?: string): void { |
| 128 | console.log(); |
| 129 | if (title) { |
| 130 | console.log(chalk.cyan('◆ ') + chalk.bold(title)); |
| 131 | } |
| 132 | for (const line of message.split('\n')) { |
| 133 | console.log(chalk.gray('│ ') + line); |
| 134 | } |
| 135 | console.log(); |
| 136 | } |
no outgoing calls
no test coverage detected