UNPKG

stuffs

Version:

Some useful stuffs packed to here.

9 lines (7 loc) 211 B
const fs = require("fs"); /** * @param {string} path */ module.exports = async function makeSureFolderExists(path) { if (!fs.existsSync(path)) await fs.promises.mkdir(path, { recursive: true }); }