UNPKG
steady-cli
Version:
alpha (2.0.0-alpha1)
latest (2.3.0)
2.3.0
2.2.0
2.1.1
2.1.0
2.0.0
2.0.0-alpha1
1.9.1
1.9.0
1.8.0
1.7.1
1.7.0
1.6.0
1.5.0
1.4.0
1.3.2
1.3.1
1.3.0
1.2.0
1.1.0
1.0.0
CLI for maintaining Ghost sites
github.com/mindspun/steady-cli
mindspun/steady-cli
steady-cli
/
utils
/
stat.js
11 lines
(9 loc)
•
230 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
const
fs =
require
(
'fs'
);
/* fs.syncStat(path, {throwIfNoEntry: false}) for older versions of Node */
module
.
exports
=
function
(
path
) {
try
{
return
fs.
statSync
(path); }
catch
(e) {
return
null
; } };