mirror of
https://github.com/oven-sh/bun
synced 2026-02-02 15:08:46 +00:00
463 B
463 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.