atob.js/index.js
2011-09-08 22:18:42 -06:00

10 lines
146 B
JavaScript

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