(diff, i)
| 590 | } |
| 591 | |
| 592 | function endOfLineClean(diff, i) { |
| 593 | if (i == diff.length - 1) return true; |
| 594 | var next = diff[i + 1][1]; |
| 595 | if (next.length == 1 || next.charCodeAt(0) != 10) return false; |
| 596 | if (i == diff.length - 2) return true; |
| 597 | next = diff[i + 2][1]; |
| 598 | return next.length > 1 && next.charCodeAt(0) == 10; |
| 599 | } |
| 600 | |
| 601 | function startOfLineClean(diff, i) { |
| 602 | if (i == 0) return true; |
no outgoing calls
no test coverage detected