(...paths: string[])
| 35 | } |
| 36 | |
| 37 | export const removeFile = (...paths: string[]) => { |
| 38 | const filePath = getWorkspacePath(...paths) |
| 39 | logger(`Removing file: ${filePath}`) |
| 40 | return asyncRemoveFile(filePath) |
| 41 | } |
| 42 | |
| 43 | export const readFile = (...paths: string[]): Promise<string | void> => { |
| 44 | const filePath = getWorkspacePath(...paths) |
no test coverage detected