(text: string, colorKey?: keyof Theme)
| 48 | const visited = new WeakSet<object>() |
| 49 | |
| 50 | function colorize(text: string, colorKey?: keyof Theme): string { |
| 51 | if (!colorKey) return text |
| 52 | return color(colorKey, themeName)(text) |
| 53 | } |
| 54 | |
| 55 | function growBranch( |
| 56 | node: TreeNode | string, |
no test coverage detected