hypercore 10.37.10 → 10.37.11
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/batch.js +1 -1
- package/package.json +1 -1
package/lib/batch.js
CHANGED
|
@@ -301,7 +301,7 @@ module.exports = class HypercoreBatch extends EventEmitter {
|
|
|
301
301
|
}
|
|
302
302
|
}
|
|
303
303
|
|
|
304
|
-
this._appends.push(
|
|
304
|
+
for (const b of buffers) this._appends.push(b)
|
|
305
305
|
|
|
306
306
|
const info = { length: this.length, byteLength: this.byteLength }
|
|
307
307
|
this.emit('append')
|