globalThis.btoa = (str) => Buffer.from(str, 'binary').toString('base64'); globalThis.atob = (str) => Buffer.from(str, 'base64').toString('binary');