Skip to content

Instantly share code, notes, and snippets.

@miguel-leon
Created December 7, 2016 14:20
Show Gist options
  • Save miguel-leon/6eb96100d6fcc0658af04bdc3eeecb5f to your computer and use it in GitHub Desktop.
Save miguel-leon/6eb96100d6fcc0658af04bdc3eeecb5f to your computer and use it in GitHub Desktop.
Convert ArrayBuffer to base64 string
function arrayBufferToBase64(buffer) {
return btoa(String.fromCharCode.apply(String, new Uint8Array(buffer)));
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment