"use strict";exports.__esModule=true;exports.toBase64=toBase64;/**
* Isomorphic base64 that works on the server and client
*/functiontoBase64(str){if(typeofwindow==='undefined'){returnBuffer.from(str).toString('base64');}else{returnwindow.btoa(str);}}
//# sourceMappingURL=to-base-64.js.map