显示缓冲区对象中的每个值:
var buf = Buffer.from('abcdef');for (x of buf.values()) { console.log(x);}
var buf = Buffer.from('abcdef');
for (x of buf.values()) {
console.log(x);
}
values() 方法返回一个迭代对象,该对象包含缓冲区对象中每个字节的值。
values()
buffer .values();