UNPKG

279 BJavaScriptView Raw
1"use strict";
2
3const fs = require('fs');
4const path = require('path');
5
6function mkdirpsync(file_path) {
7 if(fs.existsSync(file_path))
8 return file_path;
9
10 mkdirpsync(path.dirname(file_path));
11 fs.mkdirSync(file_path);
12 return file_path;
13}
14
15module.exports = mkdirpsync;