Skip to content

Instantly share code, notes, and snippets.

@cyx
Created June 30, 2013 19:10
Show Gist options
  • Save cyx/5896452 to your computer and use it in GitHub Desktop.
Save cyx/5896452 to your computer and use it in GitHub Desktop.
console.log(new Buffer("Hello World").toString('base64'));
// => "SGVsbG8gV29ybGQ="
console.log(new Buffer("SGVsbG8gV29ybGQ=", 'base64').toString('ascii'))
// => "Hello World"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment