📁 File Manager Pro
v10.0.3 | PHP: 8.2.31
Server: LiteSpeed
2026-06-29 11:24:05
📂
/ (Root)
/
home
/
orkouolp
/
nodevenv
/
node_js
/
orkobd.com
/
14
/
lib
/
node_modules
/
mysql
/
lib
/
protocol
📍 /home/orkouolp/nodevenv/node_js/orkobd.com/14/lib/node_modules/mysql/lib/protocol
🔄 Refresh
✏️
Editing: BufferList.js
Writable
module.exports = BufferList; function BufferList() { this.bufs = []; this.size = 0; } BufferList.prototype.shift = function shift() { var buf = this.bufs.shift(); if (buf) { this.size -= buf.length; } return buf; }; BufferList.prototype.push = function push(buf) { if (!buf || !buf.length) { return; } this.bufs.push(buf); this.size += buf.length; };
💾 Save Changes
❌ Cancel