update "fstream" to v0.1.22

This commit is contained in:
Nathan Rajlich 2013-03-21 09:14:49 -10:00
parent 69da815c6f
commit bdacb6a5b8
5 changed files with 26 additions and 22 deletions

5
node_modules/fstream/lib/writer.js generated vendored
View file

@ -290,13 +290,13 @@ Writer.prototype._finish = function () {
return
function setProps (current) {
todo += 3
endChmod(me, me.props, current, me._path, next("chmod"))
endChown(me, me.props, current, me._path, next("chown"))
endUtimes(me, me.props, current, me._path, next("chown"))
endUtimes(me, me.props, current, me._path, next("utimes"))
}
function next (what) {
todo ++
return function (er) {
// console.error(" W Finish", what, todo)
if (errState) return
@ -387,4 +387,3 @@ function objectToString (d) {
function isDate(d) {
return typeof d === 'object' && objectToString(d) === '[object Date]';
}