(colourCode, val)
| 133 | /** Return String(val) surrounded by appropriate ANSI escape codes to change the console text colour. */ |
| 134 | // eslint-disable-next-line no-unused-vars |
| 135 | function colour(colourCode, val) |
| 136 | { |
| 137 | const esc=String.fromCharCode(27); |
| 138 | return `${esc}[${colourCode}m${val}${esc}[0m`; |
| 139 | } |
| 140 | |
| 141 | let CIRCULAR_ERROR_MESSAGE; |
| 142 |
nothing calls this directly
no outgoing calls
no test coverage detected