()
| 121 | // Capture the fetch impl lazily so consumers can swap globalThis.fetch |
| 122 | // (tests do this) without us snapshotting a stale reference. |
| 123 | const fetchImpl = (): typeof globalThis.fetch => |
| 124 | options.fetch ?? globalThis.fetch.bind(globalThis); |
| 125 | |
| 126 | let entry: CacheEntry | null = null; |
| 127 | let inflight: Promise<CacheEntry> | null = null; |
no outgoing calls
no test coverage detected