Uint8Array
is a typed array class, meaning it is a mechanism for viewing data in an underlying ArrayBuffer
. The underlying ArrayBuffer
is accessible via the buffer
property.
The
Uint8Array
may be a view over a subset of the data in the underlying ArrayBuffer
. In this case, the buffer
property will return the entire buffer, and the byteOffset
and byteLength
properties will indicate the subset.
See Docs > API > Binary Data for complete documentation on manipulating binary data with Bun.