(self: ClientRequest.HttpClientRequest)
| 368 | |
| 369 | /** @internal */ |
| 370 | export const removeHash = (self: ClientRequest.HttpClientRequest): ClientRequest.HttpClientRequest => |
| 371 | makeInternal( |
| 372 | self.method, |
| 373 | self.url, |
| 374 | self.urlParams, |
| 375 | Option.none(), |
| 376 | self.headers, |
| 377 | self.body |
| 378 | ) |
| 379 | |
| 380 | /** @internal */ |
| 381 | export const toUrl = (self: ClientRequest.HttpClientRequest): Option.Option<URL> => |
nothing calls this directly
no test coverage detected
searching dependent graphs…