function dirExists()

in lib/parser.js [26:28]


function dirExists (dir) {
    return fs.existsSync(dir) && fs.statSync(dir).isDirectory();
}