(n)
| 148 | return result; |
| 149 | } |
| 150 | getChunk(n) { |
| 151 | const result = new Uint8Array(this.#a.buffer, this.#a.byteOffset + this.#i, n); |
| 152 | this.skip(n); |
| 153 | return result; |
| 154 | } |
| 155 | getBuffer() { |
| 156 | return this.#a.slice(0, this.#i).buffer; |
| 157 | } |
no test coverage detected