(cwd: string, value: string)
| 124 | } |
| 125 | |
| 126 | function resolveGitPath(cwd: string, value: string): string { |
| 127 | return isAbsolute(value) ? value : resolve(cwd, value); |
| 128 | } |
| 129 | |
| 130 | function addLineCounts( |
| 131 | target: Map<string, { additions: number; deletions: number }>, |
no test coverage detected