(init: RequestInit | undefined)
| 530 | // every streamed upload in memory, and FetchHttpClient passes a ReadableStream |
| 531 | // for every streamed body, so that cost lands on the common path. |
| 532 | const isStreamedBody = (init: RequestInit | undefined): boolean => |
| 533 | init?.body instanceof ReadableStream; |
| 534 | |
| 535 | // Every hop goes out through here, so this is the one place the transport's |
| 536 | // requirements are met. `redirect: "manual"` is what makes the guard see each |
no outgoing calls
no test coverage detected