Skip to content

Instantly share code, notes, and snippets.

@ccapndave
Created January 7, 2019 09:09
Show Gist options
  • Save ccapndave/5b80543440d63dbffbb3cfd79fecbc55 to your computer and use it in GitHub Desktop.
Save ccapndave/5b80543440d63dbffbb3cfd79fecbc55 to your computer and use it in GitHub Desktop.
{
base64ToBuffer: base64 => new TextEncoder().encode(atob(base64)),
bufferToBase64: buffer => btoa(String.fromCharCode(...new Uint8Array(buffer)))
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment