Warning: main(): unterminated entity reference _ol\]\:list-outside ol{list-style-position:outside}.\[\&_ol\]\:list-decimal ol{list-style-type:decimal}.\[\&_ol\]\:pl-4 ol{padding-left:1rem}.\[\&_ul\]\:list-outside ul{list-style-position:outside}.\[\&_ul\]\:list-disc ul{list-style-type:disc}.\[\&_ul\]\:pl-4 ul{padding-left:1rem} in /home/feelan/public_html/ir.apponweb.api/tools/agfdsjafkdsgfkyugebhekjhevbyujec.php on line 264
Convert an ArrayBuffer to a Blob | Bun Examples
Bun

GuidesBinary data

Convert an ArrayBuffer to a Blob with Bun

A Blob can be constructed from an array of "chunks", where each chunk is a string, binary data structure, or another Blob.

const buf = new ArrayBuffer(64);
const blob = new Blob([buf]);

By default the type of the resulting Blob will be unset. This can be set manually.

const buf = new ArrayBuffer(64);
const blob = new Blob([buf], { type: "application/octet-stream" });
blob.type; // => "application/octet-stream"

See Docs > API > Binary Data for complete documentation on manipulating binary data with Bun.