in lib/utils/utilities.js [194:200]
function mkdirSync (path) { try { fs.mkdirSync(path); } catch (e) { if (e.code !== 'EEXIST') throw e; } }