(lines: Array<string>)
| 16 | import type {DiffOptions, DiffOptionsNormalized} from './types'; |
| 17 | |
| 18 | const isEmptyString = (lines: Array<string>) => |
| 19 | lines.length === 1 && lines[0].length === 0; |
| 20 | |
| 21 | type ChangeCounts = { |
| 22 | a: number; |
no outgoing calls
no test coverage detected