node alternative to btoa

Solutions on MaxInterview for node alternative to btoa by the best coders in the world

showing results for - "node alternative to btoa"
Elisa
10 Apr 2018
1console.log(Buffer.from('Hello World!').toString('base64'));
2
Conan
11 Sep 2018
1console.log(Buffer.from(b64Encoded, 'base64').toString());
2