UNPKG

steady-cli

Version:
11 lines (9 loc) 230 B
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; } };