(url: string, requestOptions: RequestInit)
| 30 | } |
| 31 | |
| 32 | function forgeLogMessage(url: string, requestOptions: RequestInit) { |
| 33 | return `Attempting fetch with url: ${url}\n\nWith options:${JSON.stringify( |
| 34 | requestOptions, |
| 35 | null, |
| 36 | 2, |
| 37 | )}`; |
| 38 | } |
| 39 | |
| 40 | export function constructHttpRequest({ |
| 41 | action, |
no outgoing calls
no test coverage detected