()
| 313 | |
| 314 | /** Fire-and-forget revalidation behind a stale hit. */ |
| 315 | const refreshInBackground = (): void => { |
| 316 | void ignoreFailure(refresh()); |
| 317 | }; |
| 318 | |
| 319 | const loadFromStore = async (): Promise<CacheEntry | null> => { |
| 320 | if (!store) return null; |
no test coverage detected