Skip to content

Instantly share code, notes, and snippets.

@leosuncin
Created April 8, 2015 23:01
Show Gist options
  • Save leosuncin/1a50bce9cd3aa4a893c0 to your computer and use it in GitHub Desktop.
Save leosuncin/1a50bce9cd3aa4a893c0 to your computer and use it in GitHub Desktop.
Node.js Base64 functions
function btoa (str) {
return new Buffer(str).toString('base64');
}
function atob(str) {
return new Buffer(str, 'base64').toString('binary');
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment