* Consumes and returns the body as a Blob * * @see https://fetch.spec.whatwg.org/#dom-body-blob * @returns {Promise }
()
| 193 | * @returns {Promise<Blob>} |
| 194 | */ |
| 195 | blob () { |
| 196 | return consume(this, 'blob') |
| 197 | } |
| 198 | |
| 199 | /** |
| 200 | * Consumes and returns the body as an Uint8Array. |