Comparing version 1.5.7 to 1.5.8
@@ -31,3 +31,3 @@ /* wrench.js | ||
isDir = function(fname){ | ||
return fs.statSync( _path.join(baseDir, fname) ).isDirectory(); | ||
return fs.existsSync(_path.join(baseDir, fname)) ? fs.statSync( _path.join(baseDir, fname) ).isDirectory() : false; | ||
}, | ||
@@ -34,0 +34,0 @@ prependBaseDir = function(fname){ |
{ | ||
"name": "wrench", | ||
"description": "Recursive filesystem (and other) operations that Node *should* have.", | ||
"version": "1.5.7", | ||
"version": "1.5.8", | ||
"author": "Ryan McGrath <ryan@venodesigns.net>", | ||
@@ -6,0 +6,0 @@ |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
37592