atob.js/index.js

10 lines
148 B
JavaScript

(function () {
"use strict";
function atob(str) {
return new Buffer(str, 'base64').toString('binary');
}
module.exports = atob;
}());