UNPKG
create-iamturns-app
Version:
latest (1.0.0)
1.0.0
App generator for my projects
github.com/iamturns/create-iamturns-app
iamturns/create-iamturns-app
create-iamturns-app
/
src
/
utils
/
fs.js
10 lines
(7 loc)
•
173 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
const fs =
require
(
"fs"
) const isDir =
path
=> fs.lstatSync(
path
).isDirectory() const pathExists =
path
=> fs.existsSync(
path
)
module
.exports = { isDir, pathExists, }