(dirPath: string)
| 132 | } |
| 133 | |
| 134 | static async createDirectory(dirPath: string): Promise<void> { |
| 135 | await fs.mkdir(dirPath, { recursive: true }); |
| 136 | } |
| 137 | |
| 138 | static async fileExists(filePath: string): Promise<boolean> { |
| 139 | try { |
no outgoing calls
no test coverage detected