(cache: FileStateCache)
| 125 | |
| 126 | // Helper function to get all keys from cache (used by several components) |
| 127 | export function cacheKeys(cache: FileStateCache): string[] { |
| 128 | return Array.from(cache.keys()) |
| 129 | } |
| 130 | |
| 131 | // Helper function to clone a FileStateCache |
| 132 | // Preserves size limit configuration from the source cache |
no test coverage detected