Indented console output matching the spec format.
(msg = '')
| 61 | |
| 62 | /** Indented console output matching the spec format. */ |
| 63 | function log(msg = '') { |
| 64 | console.log(` ${msg}`); |
| 65 | } |
| 66 | |
| 67 | /** Print a fatal error and exit. */ |
| 68 | function die(msg) { |
no test coverage detected