()
| 86423 | function clearModelCache() { |
| 86424 | try { |
| 86425 | if ((0, import_fs5.existsSync)(MODEL_CACHE_PATH)) { |
| 86426 | (0, import_fs5.writeFileSync)(MODEL_CACHE_PATH, "{}", "utf8"); |
| 86427 | } |
| 86428 | } catch { |
| 86429 | } |
| 86430 | } |
| 86431 | function getCacheInfo() { |
| 86432 | const cache = readCache(); |
| 86433 | if (!cache) { |
| 86434 | return { timestamp: null, providers: [] }; |
| 86435 | } |
| 86436 | return { |
| 86437 | timestamp: cache.timestamp, |
no test coverage detected
searching dependent graphs…