()
| 272 | } |
| 273 | |
| 274 | arrayBuffer() { |
| 275 | if (this.#request != null && !this.#bodyUsed) return this.#request.arrayBuffer() |
| 276 | return this.#consumeBody().then(bufferToArrayBuffer) |
| 277 | } |
| 278 | |
| 279 | blob() { |
| 280 | if (this.#request != null && !this.#bodyUsed) return this.#request.blob() |
nothing calls this directly
no test coverage detected