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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment