(path: string)
| 30 | } |
| 31 | |
| 32 | export function createDir(path: string): Promise<string | undefined> { |
| 33 | return fs.mkdir(path, { recursive: true }); |
| 34 | } |
| 35 | |
| 36 | export async function copyFile(from: string, to: string): Promise<void> { |
| 37 | await createDir(dirname(to)); |
no test coverage detected