(buffer: Uint8Array, cursor: number)
| 26 | return String.fromCharCode(buffer[cursor], buffer[cursor + 1]); |
| 27 | }; |
| 28 | const read3 = (buffer: Uint8Array, cursor: number) => { |
| 29 | return String.fromCharCode(buffer[cursor], buffer[cursor + 1], buffer[cursor + 2]); |
| 30 | }; |
| 31 | const read4 = (buffer: Uint8Array, cursor: number) => { |
| 32 | return String.fromCharCode(buffer[cursor], buffer[cursor + 1], buffer[cursor + 2], buffer[cursor + 3]); |
| 33 | }; |