From f4e6e8c619208a50fb32169ec93f1413a8fe56c4 Mon Sep 17 00:00:00 2001 From: mojighahar Date: Thu, 3 Sep 2020 17:16:29 +0430 Subject: [PATCH] Update seqbuffer.js change default buffer size to 1400 --- lib/seqbuffer.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/seqbuffer.js b/lib/seqbuffer.js index ce3ad33..76d081d 100644 --- a/lib/seqbuffer.js +++ b/lib/seqbuffer.js @@ -17,7 +17,7 @@ function trimZero(str) { function SeqBuffer(buf, len) { - this._data = buf || Buffer.alloc(len || 1500); // alloc() fills the buffer with '0' + this._data = buf || Buffer.alloc(len || 1400); // alloc() fills the buffer with '0' } SeqBuffer.prototype = {