File size: 148 Bytes
2b7aae2
 
1
2
3
globalThis.btoa = (str) => Buffer.from(str, 'binary').toString('base64');
globalThis.atob = (str) => Buffer.from(str, 'base64').toString('binary');