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