将缓冲区对象作为 JSON 对象返回:
var buf = Buffer.from('abc');console.log(buf.toJSON());
var buf = Buffer.from('abc');
console.log(buf.toJSON());
toJSON() 方法返回基于缓冲区对象的 JSON 对象。
toJSON()
buffer .toJSON();