(outputPath)
| 465 | } |
| 466 | |
| 467 | function loadMapIndex(outputPath) { |
| 468 | return JSON.parse(fs.readFileSync(outputPath, 'utf8')); |
| 469 | } |
| 470 | |
| 471 | function isMapIndexFresh(outputPath, maxAgeMs = DEFAULT_CACHE_MAX_AGE_MS) { |
| 472 | if (!fs.existsSync(outputPath)) return false; |
no outgoing calls
no test coverage detected