Spaces:
Paused
Paused
File size: 184 Bytes
5b3c62d |
1 2 3 4 5 6 7 |
import { existsSync, mkdirSync } from "node:fs"
export const createDirIfNeeded = (dirPath: string) => {
if (!existsSync(dirPath)) {
mkdirSync(dirPath, { recursive: true })
}
} |