()
| 21 | return this.readStringNo(this.read16()); |
| 22 | } |
| 23 | readFloat32() { |
| 24 | const float = this.view.getFloat32(this.i); |
| 25 | this.i += 4; |
| 26 | return float; |
| 27 | } |
| 28 | readStringNo(length: number) { |
| 29 | const array = new Uint8Array(length); |
| 30 | for (let i = 0; i < length; i++) { |