(code?: number)
| 96 | } |
| 97 | |
| 98 | public flush(code?: number): Buffer { |
| 99 | const result = this.join(code) |
| 100 | this.offset = 5 |
| 101 | this.headerPosition = 0 |
| 102 | this.buffer = Buffer.allocUnsafe(this.size) |
| 103 | return result |
| 104 | } |
| 105 | |
| 106 | public clear(): void { |
| 107 | this.offset = 5 |
no test coverage detected