(file: TFile)
| 347 | private emitter = new EventEmitter(); |
| 348 | |
| 349 | getFileCache(file: TFile): any { |
| 350 | return this.cache.get(file.path) || null; |
| 351 | } |
| 352 | |
| 353 | getCache(path: string): any { |
| 354 | return this.cache.get(path) || null; |
no test coverage detected