File size: 184 Bytes
9a42933 |
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 })
}
} |