()
| 386 | }, |
| 387 | |
| 388 | bytes () { |
| 389 | // The bytes() method steps are to return the result of running consume body |
| 390 | // with this and the following step given a byte sequence bytes: return the |
| 391 | // result of creating a Uint8Array from bytes in this’s relevant realm. |
| 392 | return consumeBody(this, (bytes) => { |
| 393 | return new Uint8Array(bytes) |
| 394 | }, instance, getInternalState) |
| 395 | }, |
| 396 | |
| 397 | textStream () { |
| 398 | const this_ = getInternalState(this) |
nothing calls this directly
no test coverage detected
searching dependent graphs…