Answers for "node alternative to btoa"

1

node alternative to btoa

console.log(Buffer.from('Hello World!').toString('base64'));
Posted by: Guest on December-15-2020
0

node alternative to btoa

console.log(Buffer.from(b64Encoded, 'base64').toString());
Posted by: Guest on April-22-2021

Code answers related to "Javascript"

Browse Popular Code Answers by Language