Skip to content

Instantly share code, notes, and snippets.

@BorisKotlyarov
Last active October 16, 2018 10:24
Show Gist options
  • Save BorisKotlyarov/654dde9b5b286285e361766db3881807 to your computer and use it in GitHub Desktop.
Save BorisKotlyarov/654dde9b5b286285e361766db3881807 to your computer and use it in GitHub Desktop.
function base64Encode(data){
return Buffer.from(data.toString()).toString('base64');
}
function base64Decode(data){
return Buffer.from(data, 'base64').toString('ascii');
}
module.exports = {
base64Encode,
base64Decode
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment