()
| 92 | |
| 93 | } |
| 94 | private flushResult() { |
| 95 | // console.log("flush result", this.resultBuf.length); |
| 96 | if (this.next) { |
| 97 | this.next(this.resultBuf); |
| 98 | } |
| 99 | this.resultBuf = []; |
| 100 | } |
| 101 | private appendBuf(data: string) { |
| 102 | const res = this.leftChunk + data; |
| 103 | const list = res.split("\n"); |
no outgoing calls
no test coverage detected