atob.js/index.js

10 linhas
146 B
JavaScript

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