(url: string)
| 65 | Effect.promise(() => connected.client.close().catch(() => undefined)); |
| 66 | |
| 67 | const pathWithSearch = (url: string): string => { |
| 68 | const parsed = new URL(url); |
| 69 | return `${parsed.pathname}${parsed.search}`; |
| 70 | }; |
| 71 | |
| 72 | const authenticatedFetch = ( |
| 73 | identity: Identity, |
no outgoing calls
no test coverage detected