(key)
| 15 | let cacheEpoch = 0; |
| 16 | |
| 17 | function nextRequestVersion(key) { |
| 18 | const version = (latestRequestVersions.get(key) ?? 0) + 1; |
| 19 | latestRequestVersions.set(key, version); |
| 20 | return version; |
| 21 | } |
| 22 | |
| 23 | function normalizeCacheEntry(entry, legacyFields = []) { |
| 24 | if (!entry) { |
no outgoing calls
no test coverage detected