UNPKG
clr-dir
Version:
latest (0.0.3-beta)
0.0.3-beta
0.0.3-alpha
0.0.2
0.0.1
A npm package to organize the directory quickly
clr-dir
/
utils
/
isFile.js
7 lines
(5 loc)
•
119 B
JavaScript
View Raw
1
2
3
4
5
6
7
const
fs =
require
(
"fs"
);
module
.
exports
=
(
path
) =>
{
const
stats = fs.
statSync
(path);
return
stats.
isFile
(); };