Skip to content

Instantly share code, notes, and snippets.

@fengminchao
Created October 1, 2016 13:34
Show Gist options
  • Save fengminchao/dab99d7a4a3f60c9cf958824ff5524fe to your computer and use it in GitHub Desktop.
Save fengminchao/dab99d7a4a3f60c9cf958824ff5524fe to your computer and use it in GitHub Desktop.
function encodeBase64(s) {
var b = new Buffer(s);
return b.toString('base64');
}
function decodeBase64(s) {
var b = new Buffer(s, 'base64')
return b.toString();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment