Simplest btoa implementation
npm install @node-fetch/btoa-lite
import btoa from '@node-fetch/btoa-lite';
console.log(btoa('Hello World'));
//=> 'SGVsbG8gV29ybGQ='
What's the difference with btoa-lite
?
The Node.js implementation of that module uses a deprecated method.