atob.js/index.js

10 lines
138 B
JavaScript
Raw Normal View History

2011-09-08 22:18:42 -06:00
(function () {
"use strict";
function atob(str) {
return new Buffer(str).toString('base64');
2011-09-08 22:18:42 -06:00
}
module.exports = atob;
}());