(str)
| 188 | * Colorize a string based on its "safe" color |
| 189 | */ |
| 190 | const colorizeString = (str) => { |
| 191 | const colorFn = stringToSafeColor(str) |
| 192 | return colorFn(str) |
| 193 | } |
| 194 | |
| 195 | /** |
| 196 | * Set the Renderer's global settings. |
no test coverage detected
searching dependent graphs…