(lines: string[])
| 250 | diff.push({value: '', lines: []}); // Append an empty value to make cleanup easier |
| 251 | |
| 252 | function contextLines(lines: string[]) { |
| 253 | return lines.map(function(entry) { return ' ' + entry; }); |
| 254 | } |
| 255 | |
| 256 | const hunks = []; |
| 257 | let oldRangeStart = 0, newRangeStart = 0, curRange: string[] = [], |
no outgoing calls
no test coverage detected