UNPKG

clg

Version:

Command-line goodness for static site generators and more

12 lines (10 loc) 198 B
var access = require('fs').accessSync; var path = require('path'); module.exports = function(dir) { try { access(path.resolve(dir)); return true; } catch (e) { return false; } };