update fstream to v0.1.18

This commit is contained in:
Nathan Rajlich 2012-06-06 14:31:56 -07:00
parent a07f082717
commit aa8bc9d7cf
9 changed files with 275 additions and 124 deletions

View file

@ -20,6 +20,11 @@ Abstract.prototype.on = function (ev, fn) {
return this
}
Abstract.prototype.abort = function () {
this._aborted = true
this.emit("abort")
}
Abstract.prototype.destroy = function () {}
Abstract.prototype.warn = function (msg, code) {