Skip to main content
The Buffer class extends Uint8Array with additional methods. Use Buffer.from() to create a Buffer instance from a Uint8Array.
const arr: Uint8Array = ...
const buf = Buffer.from(arr);

See Binary Data.