feature(readify) lstat -> stat

This commit is contained in:
coderaiser 2014-09-11 11:05:43 -04:00
parent 188989a412
commit b96095f31c

View file

@ -50,7 +50,7 @@
}
function getStat(name, path, callback) {
fs.lstat(path, function(error, data) {
fs.stat(path, function(error, data) {
callback(null, data || {
'mode' : 0,
'size' : 0,