Skip to content

Instantly share code, notes, and snippets.

@monjer
Created November 26, 2020 08:37
Show Gist options
  • Select an option

  • Save monjer/006fa573290cbf094c42d12065c1902d to your computer and use it in GitHub Desktop.

Select an option

Save monjer/006fa573290cbf094c42d12065c1902d to your computer and use it in GitHub Desktop.
nodejs base64 encode decode
const base64 = {
encode(str){
return Buffer.from(str).toString('base64');
},
decode(str){
Buffer.from(str, 'base64').toString()
}
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment