atob.js/index.js

10 lines
146 B
JavaScript

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