(prefix = "lib-manifest-")
| 50 | const cannotEnforceEacces = isRoot || !chmodEnforced; |
| 51 | |
| 52 | function tmpdir(prefix = "lib-manifest-"): string { |
| 53 | return fs.mkdtempSync(path.join(os.tmpdir(), prefix)); |
| 54 | } |
| 55 | |
| 56 | function write(file: string, body: string): void { |
| 57 | fs.mkdirSync(path.dirname(file), { recursive: true }); |
no test coverage detected
searching dependent graphs…