()
| 213 | const workersCacheStore = (staleMaxMs: number): JwksStore | null => { |
| 214 | if (typeof caches === "undefined") return null; |
| 215 | const open = (): Cache | null => (caches as WorkersCacheStorage).default ?? null; |
| 216 | |
| 217 | return { |
| 218 | get: async (url) => { |