MCPcopy
hub / github.com/codeaashu/claude-code / getCachedParsedFile

Function getCachedParsedFile

src/utils/settings/settingsCache.ts:47–49  ·  view source on GitHub ↗
(path: string)

Source from the content-addressed store, hash-verified

45const parseFileCache = new Map<string, ParsedSettings>()
46
47export function getCachedParsedFile(path: string): ParsedSettings | undefined {
48 return parseFileCache.get(path)
49}
50
51export function setCachedParsedFile(path: string, value: ParsedSettings): void {
52 parseFileCache.set(path, value)

Callers 1

parseSettingsFileFunction · 0.85

Calls 1

getMethod · 0.65

Tested by

no test coverage detected