(path: string)
| 14 | } |
| 15 | |
| 16 | export function rimraf(path: string): Promise<void> { |
| 17 | return fs.rm(path, { |
| 18 | force: true, |
| 19 | recursive: true, |
| 20 | maxRetries: 3, |
| 21 | }); |
| 22 | } |
| 23 | |
| 24 | export function moveFile(from: string, to: string): Promise<void> { |
| 25 | return fs.rename(from, to); |
no outgoing calls
no test coverage detected