give function to recreate path a better name

This commit is contained in:
Myk Melez 2014-12-11 15:12:19 -08:00
Родитель 7f09759133
Коммит 19d46ae203
1 изменённых файлов: 3 добавлений и 3 удалений

Просмотреть файл

@ -724,7 +724,7 @@ var fs = (function() {
return;
}
var foo = remove.bind(null, oldPath, function(removed) {
var recreatePath = remove.bind(null, oldPath, function(removed) {
if (!removed) {
cb(false);
return;
@ -746,10 +746,10 @@ var fs = (function() {
return;
}
foo();
recreatePath();
});
} else {
foo();
recreatePath();
}
});
}