Gitiles
Code Review
Sign In
korap.ids-mannheim.de
/
KorAP
/
Kalamar
/
58b9f11ca7b449f85f2f1fb5337ba7633e50b14b
/
.
/
node_modules
/
atob
/
node-atob.js
blob: d7305a329d67289aa4620708ba1f20c9ea85f48d [
file
] [
log
] [
blame
]
Leo Repp
58b9f11
2021-11-22 11:57:47 +0100
[
diff
] [
blame^
]
1
"use strict"
;
2
3
function
atob
(
str
)
{
4
return
Buffer
.
from
(
str
,
'base64'
).
toString
(
'binary'
);
5
}
6
7
module
.
exports
=
atob
.
atob
=
atob
;