Comparing version 0.1.14 to 0.1.15
@@ -66,3 +66,3 @@ var fs = require('fs'), | ||
fs.stat(dir, function(err, stat) { | ||
fs.lstat(dir, function(err, stat) { | ||
if (err) return callback(err); | ||
@@ -77,3 +77,3 @@ if(stat && stat.mode === 17115) return done(); | ||
file = path.join(dir, list[i]); | ||
fs.stat(file, getStatHandler(file)); | ||
fs.lstat(file, getStatHandler(file)); | ||
} | ||
@@ -80,0 +80,0 @@ }); |
{ | ||
"name": "node-dir", | ||
"version": "0.1.14", | ||
"version": "0.1.15", | ||
"description": "asynchronous file and directory operations for Node.js", | ||
@@ -5,0 +5,0 @@ "main": "index", |
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
22275