Gitiles
Code Review
Sign In
korap.ids-mannheim.de
/
KorAP
/
Kalamar
/
58b9f11ca7b449f85f2f1fb5337ba7633e50b14b
/
.
/
node_modules
/
atob
/
node-atob.js
blob: d7305a329d67289aa4620708ba1f20c9ea85f48d [
file
] [
log
] [
blame
]
"use strict"
;
function
atob
(
str
)
{
return
Buffer
.
from
(
str
,
'base64'
).
toString
(
'binary'
);
}
module
.
exports
=
atob
.
atob
=
atob
;