UNPKG

pur

Version:

Alias and glob powered multi-threaded shell execution

11 lines (9 loc) 212 B
let fs = require('fs'); // Checks if a path string is a directory export function isDir(path) { try { return fs.lstatSync(path).isDirectory(); } catch(ex) { return false; } }