Skip to content

Instantly share code, notes, and snippets.

@justintien
Forked from nuclearglow/convert-arraybuffer.js
Created February 7, 2021 09:15
Show Gist options
  • Save justintien/3c3196143a0dcb09a7f65c665bf32be4 to your computer and use it in GitHub Desktop.
Save justintien/3c3196143a0dcb09a7f65c665bf32be4 to your computer and use it in GitHub Desktop.
ArrayBuffer <-> JSON <-> ArrayBuffer
// array buffer to JSON
const dataString JSON.stringify(Array.from(new Uint8Array(arrayBuffer)));
// send around
// JSON to ArrayBuffer
new Uint8Array(JSON.parse(dataString)).buffer
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment