UNPKG

itk-wasm

Version:

High-performance spatial analysis in a web browser, Node.js, and reproducible execution across programming languages and hardware architectures.

12 lines (9 loc) 189 B
import fs from 'fs-extra' function mkdirP(dir) { try { fs.mkdirSync(dir, { recursive: true }) } catch (err) { if (err.code !== 'EEXIST') throw err } } export default mkdirP