8 lines
129 B
JavaScript
8 lines
129 B
JavaScript
|
"use strict";
|
||
|
|
||
|
function atob(str) {
|
||
|
return new Buffer(str, 'base64').toString('binary');
|
||
|
}
|
||
|
|
||
|
module.exports = atob.atob = atob;
|