Created
December 16, 2016 06:12
-
-
Save Deliaz/e89e9a014fea1ec47657d1aac3baa83c to your computer and use it in GitHub Desktop.
Convert array buffer to base64 string
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function arrayBufferToBase64(buffer) { | |
let binary = ''; | |
let bytes = new Uint8Array(buffer); | |
let len = bytes.byteLength; | |
for (let i = 0; i < len; i++) { | |
binary += String.fromCharCode(bytes[i]); | |
} | |
return window.btoa(binary); | |
} |
arturzhitkovcih
commented
Mar 27, 2020
btoa() is deprecated
btoa() is deprecated
Can you give your source please ?
https://developer.mozilla.org/en-US/docs/Web/API/btoa
@caebwallace btoa
can only process single byte character. Any other Unicode characters will cause it to throw exception: btoa('🙁')
.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment