(name = 'rm')
| 14 | |
| 15 | let count = 0; |
| 16 | const nextDirPath = (name = 'rm') => |
| 17 | tmpdir.resolve(`${name}-${count++}`); |
| 18 | |
| 19 | const isGitPresent = (() => { |
| 20 | try { execSync('git --version'); return true; } catch { return false; } |
no test coverage detected
searching dependent graphs…