(cache: FileStateCache)
| 114 | |
| 115 | // Helper function to get all keys from cache (used by several components) |
| 116 | export function cacheKeys(cache: FileStateCache): string[] { |
| 117 | return Array.from(cache.keys()) |
| 118 | } |
| 119 | |
| 120 | // Helper function to clone a FileStateCache |
| 121 | // Preserves size limit configuration from the source cache |
no test coverage detected