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