返回缓冲区的大小:
var buf = Buffer.from('abc');console.log(buf.length);
var buf = Buffer.from('abc');
console.log(buf.length);
length 属性返回缓冲区的大小,以字节为单位。
length
buffer .length;