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