(filePath: string)
| 85 | } |
| 86 | |
| 87 | export async function removeFile(filePath: string): Promise<void> { |
| 88 | await unlink(filePath); |
| 89 | } |
| 90 | |
| 91 | export async function ensureDir(dir: string): Promise<void> { |
| 92 | await mkdir(dir, { recursive: true }); |
no outgoing calls
no test coverage detected
searching dependent graphs…