(buf: Buffer)
| 217 | } |
| 218 | |
| 219 | private prependLeftBuf(buf: Buffer) { |
| 220 | if (buf) { |
| 221 | if (this.runtime.csvLineBuffer) { |
| 222 | this.runtime.csvLineBuffer = Buffer.concat([buf, this.runtime.csvLineBuffer]); |
| 223 | } else { |
| 224 | this.runtime.csvLineBuffer = buf; |
| 225 | } |
| 226 | } |
| 227 | |
| 228 | } |
| 229 | private runPreLineHook(lines: string[]): Promise<string[]> { |
| 230 | return new Promise((resolve, reject) => { |
| 231 | processLineHook(lines, this.runtime, 0, (err) => { |
no outgoing calls
no test coverage detected