* Decode response as ArrayBuffer * * @return Promise
()
| 6129 | * @return Promise |
| 6130 | */ |
| 6131 | arrayBuffer() { |
| 6132 | return consumeBody.call(this).then(function(buf) { |
| 6133 | return buf.buffer.slice(buf.byteOffset, buf.byteOffset + buf.byteLength); |
| 6134 | }); |
| 6135 | }, |
| 6136 | /** |
| 6137 | * Return raw response as Blob |
| 6138 | * |
nothing calls this directly
no test coverage detected
searching dependent graphs…