(repoPath: string)
| 14 | } |
| 15 | |
| 16 | function initGitRepo(repoPath: string): void { |
| 17 | execSync("git init", { cwd: repoPath, stdio: "ignore" }); |
| 18 | } |
| 19 | |
| 20 | function sortPaths(paths: readonly string[]): string[] { |
| 21 | return [...paths].sort((left, right) => left.localeCompare(right)); |
no outgoing calls
no test coverage detected