* Returns true if the request has a body.
()
| 256 | * Returns true if the request has a body. |
| 257 | */ |
| 258 | hasBody(): this is (FetchRequest & { body: Uint8Array }) { |
| 259 | return (this.#body != null); |
| 260 | } |
| 261 | |
| 262 | /** |
| 263 | * The HTTP method to use when requesting the URI. If no method |
no outgoing calls
no test coverage detected