Buffer
class extends Uint8Array
with a number of additional methods. Use Buffer.from()
to create a Buffer
instance from a Uint8Array
.
See Docs > API > Binary Data for complete documentation on manipulating binary data with Bun.
Buffer
class extends Uint8Array
with a number of additional methods. Use Buffer.from()
to create a Buffer
instance from a Uint8Array
.
const arr: Uint8Array = ...
const buf = Buffer.from(arr);
Was this page helpful?