UNPKG

testarmada-magellan

Version:

Massively parallel automated testing

14 lines (11 loc) 182 B
"use strict"; var fs = require("fs"); module.exports = function (path) { try { fs.mkdirSync(path); } catch (e) { if (e.code !== "EEXIST") { throw e; } } };