* Consumes and returns the body as a Blob * * @see https://fetch.spec.whatwg.org/#dom-body-blob * @returns {Promise }
()
| 17184 | * @returns {Promise<Blob>} |
| 17185 | */ |
| 17186 | blob() { |
| 17187 | return consume(this, "blob"); |
| 17188 | } |
| 17189 | /** |
| 17190 | * Consumes and returns the body as an Uint8Array. |
| 17191 | * |