(key: string)
| 68 | } |
| 69 | |
| 70 | function cacheGet(key: string) { |
| 71 | const entry = cache.get(key) |
| 72 | if (!entry) return |
| 73 | cache.delete(key) |
| 74 | cache.set(key, entry) |
| 75 | return entry.value |
| 76 | } |
| 77 | |
| 78 | function fallbackDisabled(scope: string) { |
| 79 | return fallback.get(scope) === true |
no test coverage detected