blob: 95f595aad9eaa2801ff12746bec9adcc53a1aecc [file] [log] [blame]
var thisAtob = function (str) {
return atob(str);
};
var thisBtoa = function (str) {
return btoa(str);
};
export {
thisAtob as atob,
thisBtoa as btoa
};