Buffer class provides a way to view and manipulate data in an underlying ArrayBuffer, which is available via the buffer property. See Docs > API > Binary Data for complete documentation on manipulating binary data with Bun.
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; Was this page helpful?