(size)
| 5328 | return array; |
| 5329 | } |
| 5330 | extension(size) { |
| 5331 | const code = this._view.getUint8(this.skip(1)); |
| 5332 | const data = this.read(size); |
| 5333 | return this._ext_hook(code, data); |
| 5334 | } |
| 5335 | skip(offset) { |
| 5336 | const position = this._position; |
| 5337 | this._position += offset; |