(path: string)
| 4 | import { join } from 'path'; |
| 5 | |
| 6 | export const convertToUnixPath = (path: string): string => { |
| 7 | return path.replace(/\\/g, '/'); |
| 8 | }; |
| 9 | |
| 10 | export const deleteFolderRecursive = (directoryPath: any): void => { |
| 11 | if (existsSync(directoryPath)) { |
no outgoing calls
no test coverage detected