Created
August 12, 2010 17:24
-
-
Save tmpvar/521313 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var fromBase64 = function(str) { | |
return (new Buffer(str || "", "base64")).toString("ascii"); | |
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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