()
| 267 | // Capture the fetch impl lazily so consumers can swap globalThis.fetch |
| 268 | // (tests do this) without us snapshotting a stale reference. |
| 269 | const fetchImpl = (): typeof globalThis.fetch => |
| 270 | options.fetch ?? globalThis.fetch.bind(globalThis); |
| 271 | |
| 272 | let entry: CacheEntry | null = null; |
| 273 | let inflight: Promise<CacheEntry> | null = null; |
no outgoing calls
no test coverage detected