UNPKG

stuffs

Version:

Some useful stuffs packed to here.

9 lines (7 loc) 198 B
const fs = require("fs"); /** * @param {string} path */ module.exports = function makeSureFolderExistsSync(path) { if (!fs.existsSync(path)) fs.mkdirSync(path, { recursive: true }); }