()
| 6007 | return this[TYPE]; |
| 6008 | } |
| 6009 | text() { |
| 6010 | return Promise.resolve(this[BUFFER].toString()); |
| 6011 | } |
| 6012 | arrayBuffer() { |
| 6013 | const buf = this[BUFFER]; |
| 6014 | const ab = buf.buffer.slice(buf.byteOffset, buf.byteOffset + buf.byteLength); |
nothing calls this directly
no test coverage detected