UNPKG
gdscriptify
Version:
latest (1.1.0)
1.1.0
1.0.1
A magical documentation tool for GDScript.
github.com/hiulit/GDScriptify
hiulit/GDScriptify
gdscriptify
/
src
/
utils
/
mkdirpSync.js
10 lines
(8 loc)
•
152 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
const
fs =
require
(
'fs'
)
module
.
exports
=
dirPath
=>
{
if
(!fs.
existsSync
(dirPath)) { fs.
mkdirSync
(dirPath, {
recursive
:
true
}) } }