(char: string, first?: boolean)
| 39 | } |
| 40 | |
| 41 | public addChar(char: string, first?: boolean) { |
| 42 | return this.add(Buffer.from(char, 'utf8'), first) |
| 43 | } |
| 44 | |
| 45 | public addByte(byte: number) { |
| 46 | return this.add(Buffer.from([byte])) |
no test coverage detected