update "tar" to v0.1.17

Closes #221.
This commit is contained in:
Nathan Rajlich 2013-03-21 09:25:50 -10:00
parent 75099414c8
commit 382c86438f
16 changed files with 51 additions and 2737 deletions

2
node_modules/tar/lib/entry.js generated vendored
View file

@ -105,7 +105,7 @@ inherits(Entry, Stream,
this._reading = true
// have any data to emit?
if (this._index < this._queueLen) {
while (this._index < this._queueLen && !this._paused) {
var chunk = this._queue[this._index ++]
this.emit("data", chunk)
}