There was an error while loading. Please reload this page.
const buf = Buffer.from([1,2,3]); console.log( buf.slice(1,2).buffer );
// display //ArrayBuffer { byteLength: 8192 }
const buf = Buffer.from([1,2,3]);
console.log( buf.slice(1,2).buffer );
// display
//ArrayBuffer { byteLength: 8192 }