()
| 104 | let cached: Glyphs | null = null; |
| 105 | |
| 106 | export function getGlyphs(): Glyphs { |
| 107 | if (cached === null) { |
| 108 | cached = supportsUnicode() ? UNICODE_GLYPHS : ASCII_GLYPHS; |
| 109 | } |
| 110 | return cached; |
| 111 | } |
| 112 | |
| 113 | /** |
| 114 | * Unicode support for the RAW console write path — `fs.writeSync(1, ...)`, |
no test coverage detected