(options: HostedHttpClientOptions = {})
| 247 | }) as typeof globalThis.fetch; |
| 248 | |
| 249 | export const makeHostedFetch = (options: HostedHttpClientOptions = {}): typeof globalThis.fetch => |
| 250 | // oxlint-disable-next-line executor/no-raw-fetch -- boundary: exposes a guarded Fetch API adapter for libraries that require fetch |
| 251 | guardFetch(options.fetch ?? globalThis.fetch, options); |
| 252 | |
| 253 | export const makeHostedHttpClientLayer = ( |
| 254 | options: HostedHttpClientOptions = {}, |
no test coverage detected