()
| 56132 | async formData() { |
| 56133 | throw new NotSupportedError(); |
| 56134 | } |
| 56135 | // https://fetch.spec.whatwg.org/#dom-body-bodyused |
| 56136 | get bodyUsed() { |
| 56137 | return util4.isDisturbed(this); |
| 56138 | } |
| 56139 | // https://fetch.spec.whatwg.org/#dom-body-body |
| 56140 | get body() { |
| 56141 | if (!this[kBody]) { |
| 56142 | this[kBody] = ReadableStreamFrom(this); |
| 56143 | if (this[kConsume]) { |
| 56144 | this[kBody].getReader(); |
| 56145 | assert2(this[kBody].locked); |
| 56146 | } |
nothing calls this directly
no test coverage detected