MCPcopy Create free account
hub / github.com/colbymchenry/codegraph / getGlyphs

Function getGlyphs

src/ui/glyphs.ts:106–111  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

104let cached: Glyphs | null = null;
105
106export 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, ...)`,

Callers 14

createShimmerProgressFunction · 0.90
loadCodeGraphFunction · 0.90
createVerboseProgressFunction · 0.90
successFunction · 0.90
errorFunction · 0.90
infoFunction · 0.90
warnFunction · 0.90
printIndexResultFunction · 0.90
offerIndexIgnoredReposFunction · 0.90
runIndexFunction · 0.90
mainFunction · 0.90
renderIndexFunction · 0.90

Calls 1

supportsUnicodeFunction · 0.85

Tested by

no test coverage detected