UNPKG

testarmada-magellan

Version:

Massively parallel automated testing

14 lines (11 loc) 188 B
"use strict"; const fs = require("fs-extra"); module.exports = (path) => { try { fs.ensureDirSync(path); } catch (e) { if (e.code !== "EEXIST") { throw e; } } };