whitespace and block cleanup
This commit is contained in:
parent
5ea101960e
commit
042cc6d3d6
|
@ -10,5 +10,5 @@
|
|||
},
|
||||
"lib" : ".",
|
||||
"main" : "./walk.js",
|
||||
"version" : "2.1.0"
|
||||
"version" : "2.1.1"
|
||||
}
|
||||
|
|
47
lib/walk.js
47
lib/walk.js
|
@ -22,16 +22,17 @@
|
|||
;
|
||||
|
||||
function readdirHandler(err, files) {
|
||||
var fnodeGroups = TypeEmitter.createNodeGroups();
|
||||
var fnodeGroups = TypeEmitter.createNodeGroups()
|
||||
;
|
||||
|
||||
function filesHandler(cont, file) {
|
||||
var statPath;
|
||||
|
||||
emitter.emit('name', curpath, file, noop);
|
||||
var statPath
|
||||
;
|
||||
|
||||
function lstatHandler(err, stat) {
|
||||
stat = stat || {};
|
||||
stat.name = file;
|
||||
|
||||
if (err) {
|
||||
stat.error = err;
|
||||
//emitter.emit('error', curpath, stat);
|
||||
|
@ -44,7 +45,10 @@
|
|||
}
|
||||
}
|
||||
|
||||
emitter.emit('name', curpath, file, noop);
|
||||
|
||||
statPath = curpath + '/' + file;
|
||||
|
||||
if (sync) {
|
||||
try {
|
||||
lstatHandler(null, fs.lstatSync(statPath));
|
||||
|
@ -90,26 +94,27 @@
|
|||
}
|
||||
}
|
||||
|
||||
if (err) {
|
||||
if (!firstRun) {
|
||||
emitter.emit('directoryError', curpath, { error: err }, noop);
|
||||
readFiles();
|
||||
return;
|
||||
}
|
||||
|
||||
firstRun = false;
|
||||
fs.lstat(curpath, function (e, stat) {
|
||||
if (stat) {
|
||||
files = [curpath.replace(/.*\//, '')];
|
||||
curpath = curpath.replace(files[0], '');
|
||||
}
|
||||
readFiles();
|
||||
})
|
||||
//emitter.emit('error', curpath, { error: err });
|
||||
if (!err) {
|
||||
readFiles();
|
||||
return;
|
||||
}
|
||||
|
||||
readFiles();
|
||||
if (!firstRun) {
|
||||
emitter.emit('directoryError', curpath, { error: err }, noop);
|
||||
readFiles();
|
||||
return;
|
||||
}
|
||||
|
||||
firstRun = false;
|
||||
fs.lstat(curpath, function (e, stat) {
|
||||
|
||||
if (stat) {
|
||||
files = [curpath.replace(/.*\//, '')];
|
||||
curpath = curpath.replace(files[0], '');
|
||||
}
|
||||
|
||||
readFiles();
|
||||
});
|
||||
}
|
||||
|
||||
function walkSync() {
|
||||
|
|
Loading…
Reference in New Issue