Sign in
apache
/
pouchdb
/
refs/heads/master
/
.
/
packages
/
node_modules
/
pouchdb-binary-utils
/
src
/
base64-browser.js
blob: 20dcbd9462212944fef5854a3333832fa139c6c3 [
file
] [
log
] [
blame
]
var
thisAtob
=
function
(
str
)
{
return
atob
(
str
);
};
var
thisBtoa
=
function
(
str
)
{
return
btoa
(
str
);
};
export
{
thisAtob as atob
,
thisBtoa as btoa
};