(lines: Array<string>)
| 15 | import { normalizeDiffOptions } from './normalizeDiffOptions' |
| 16 | |
| 17 | function isEmptyString(lines: Array<string>) { |
| 18 | return lines.length === 1 && lines[0].length === 0 |
| 19 | } |
| 20 | |
| 21 | interface ChangeCounts { |
| 22 | a: number |
no outgoing calls
no test coverage detected