btoa() should be base64 to ascii
atob() should be ascii to base64
Edit: it’s other way around, lolwut. https://developer.mozilla.org/en-US/docs/Web/API/atob
> The btoa() method creates a Base64-encoded ASCII string from a binary string (i.e., a string in which each character in the string is treated as a byte of binary data).
https://developer.mozilla.org/en-US/docs/Web/API/btoa
So the naming makes sense after all.
btoa() is binary to (base64 encoded) ascii.
But I’m still not gonna remember this either :^)