Comparing version
@@ -77,10 +77,5 @@ var functools = require('functools'), | ||
path.exists(uri, function(exists){ | ||
fs.stat(uri, function(error, stat){ | ||
if(error){ | ||
return callback(error); | ||
} | ||
if(!stat.isDirectory()){ | ||
files.push(uri); | ||
if(!exists){ | ||
next(); | ||
@@ -90,14 +85,29 @@ return; | ||
fs.readdir(uri,function(error, list){ | ||
fs.stat(uri, function(error, stat){ | ||
if(error){ | ||
return callback(error); | ||
callback(error); | ||
return; | ||
} | ||
Array.prototype.push.apply(files, list.map(function(el){ | ||
return path.join(uri,el); | ||
})); | ||
if(!stat.isDirectory()){ | ||
files.push(uri); | ||
next(); | ||
return; | ||
} | ||
next(); | ||
fs.readdir(uri,function(error, list){ | ||
if(error){ | ||
callback(error); | ||
return; | ||
} | ||
Array.prototype.push.apply(files, list.map(function(el){ | ||
return path.join(uri,el); | ||
})); | ||
next(); | ||
}); | ||
}); | ||
}); | ||
})(0); | ||
@@ -104,0 +114,0 @@ } |
{ | ||
"name":"combiner", | ||
"version":"1.1.0", | ||
"version":"1.2.0", | ||
"description":"Flexible file-joining library with functional middleware support.", | ||
@@ -5,0 +5,0 @@ "author":"Azer Koculu <azer@kodfabrik.com>", |
13794
1.25%407
2.01%