base64-js
base64-js copied to clipboard
Thanks
After 4 days fiddleing wit build in base 64 and thinkig about a psyhologist
it helps me really out :)
I was ajax fetching images as binary and want to have a base64 string of the data. Nothing was working it just blew up.
This helps.
var bin = new Uint8Array(FILES[file].data);
FILES[file].data=bin
var b64= fromByteArray(bin)
:)