Skip to content

Instantly share code, notes, and snippets.

@tmpvar
Created August 12, 2010 17:24
Show Gist options
  • Star 6 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save tmpvar/521313 to your computer and use it in GitHub Desktop.
Save tmpvar/521313 to your computer and use it in GitHub Desktop.
var fromBase64 = function(str) {
return (new Buffer(str || "", "base64")).toString("ascii");
};
var toBase64 = function(str) {
return (new Buffer(str || "", "ascii")).toString("base64");
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment