UNPKG
daruk-cli
Version:
latest (0.2.1)
0.2.1
0.2.0
0.1.8
0.1.7
init Daruk repository with template
github.com/daruk-framework/daruk-cli
daruk-framework/daruk-cli
daruk-cli
/
src
/
lib
/
utils.js
9 lines
(7 loc)
•
160 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
const
fs =
require
(
'fs'
)
exports
.
isDirEmpty
=
function
(
path
) {
if
(!fs.
existsSync
(path)) {
return
true
}
return
fs.
readdirSync
(path).
length
===
0
}