atob.js/index.js

10 lines
138 B
JavaScript

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