(prefix)
| 27 | const require = createRequire(import.meta.url); |
| 28 | |
| 29 | function makeTempDir(prefix) { |
| 30 | return fs.mkdtempSync(path.join(os.tmpdir(), prefix)); |
| 31 | } |
| 32 | |
| 33 | function git(args, cwd) { |
| 34 | const r = spawnSync("git", args, { cwd, encoding: "utf8" }); |
no outgoing calls
no test coverage detected