(numb: number)
| 66 | this.i += 2; |
| 67 | } |
| 68 | write8(numb: number) { |
| 69 | this.view.setUint8(this.i, numb); |
| 70 | this.i += 1; |
| 71 | } |
| 72 | writeString8(str: string) { |
| 73 | const encode = new TextEncoder().encode(str); |
| 74 | this.write8(encode.length); |
no outgoing calls
no test coverage detected