(message: string, { prefix = '', print = eprintln } = {})
| 118 | } |
| 119 | |
| 120 | export function warn(message: string, { prefix = '', print = eprintln } = {}) { |
| 121 | log(message, { art: pc.yellow('\u2502'), prefix, print }) |
| 122 | } |
| 123 | |
| 124 | // Rust inspired functions to print to the console: |
| 125 |
no test coverage detected