()
| 83 | this.writeChunk(ArrayBuffer.fromString(s)); |
| 84 | } |
| 85 | readChar() { |
| 86 | if (this.#read >= this.#write) |
| 87 | throw new Error; |
| 88 | return this.#bytes[this.#read++]; |
| 89 | } |
| 90 | readChars(n) { |
| 91 | if (this.#read + n > this.#write) |
| 92 | throw new Error; |
no outgoing calls
no test coverage detected