semver@2.1, update all deps in repo

This commit is contained in:
isaacs 2013-08-01 16:54:20 -07:00
parent e6cb9075fe
commit f6e0c511b2
50 changed files with 5251 additions and 637 deletions

View file

@ -20,11 +20,11 @@ function BufferEntry () {
})
}
inherits(BufferEntry, Entry)
// collect the bytes as they come in.
BufferEntry.prototype.write = function (c) {
c.copy(this._buffer, this._offset)
this._offset += c.length
Entry.prototype.write.call(this, c)
}
inherits(BufferEntry, Entry)