(dirPath: string)
| 349 | * @param dirPath - The directory path to ensure exists |
| 350 | */ |
| 351 | export function ensureDirectoryExistsSync(dirPath: string): void { |
| 352 | if (!fs.existsSync(dirPath)) { |
| 353 | fs.mkdirSync(dirPath, { recursive: true }); |
| 354 | } |
| 355 | } |
no outgoing calls
no test coverage detected