(v, n)
| 65 | this.#bytes[this.#write++] = c; |
| 66 | } |
| 67 | writeChars(v, n) { |
| 68 | if (this.#write + n > this.#bytes.length) |
| 69 | this.morebuf(n); |
| 70 | while (--n >= 0) |
| 71 | this.#bytes[this.#write++] = v >>> (n * 8); |
| 72 | } |
| 73 | writeChunk(a) { |
| 74 | const n = a.byteLength; |
| 75 | if (n <= 0) |
no test coverage detected