(value)
| 296 | } |
| 297 | } |
| 298 | write14Bits(value) { |
| 299 | this.write(value & 0x7F); |
| 300 | this.write((value >> 7) & 0x7F); |
| 301 | } |
| 302 | writeString(value) { |
| 303 | for (let i = 0; i < value.length; i++) |
| 304 | this.write14Bits(value.charCodeAt(i)); |
no test coverage detected