Files
bun.sh/docs/guides/binary/buffer-to-arraybuffer.md
Colin McDonnell 4c89c60867 Add files (#3826)
2023-07-26 14:59:39 -07:00

448 B

name
name
Convert a Buffer to an ArrayBuffer

The Node.js Buffer class provides a way to view and manipulate data in an underlying ArrayBuffer, which is available via the buffer property.

const nodeBuf = Buffer.alloc(64);
const arrBuf = nodeBuf.buffer;

See Docs > API > Binary Data for complete documentation on manipulating binary data with Bun.