* Consumes and returns the body as an Uint8Array. * * @see https://fetch.spec.whatwg.org/#dom-body-bytes * @returns {Promise }
()
| 17193 | * @returns {Promise<Uint8Array>} |
| 17194 | */ |
| 17195 | bytes() { |
| 17196 | return consume(this, "bytes"); |
| 17197 | } |
| 17198 | /** |
| 17199 | * Consumes and returns the body as an ArrayBuffer. |
| 17200 | * |