(file: string)
| 16 | } |
| 17 | |
| 18 | const emptyPatch = (file: string) => formatPatch(structuredPatch(file, file, "", "", "", "", { context: 0 })) |
| 19 | |
| 20 | const nums = (list: Git.Stat[]) => |
| 21 | new Map(list.map((item) => [item.file, { additions: item.additions, deletions: item.deletions }] as const)) |
no outgoing calls
no test coverage detected