atob.js/index.js

10 lines
148 B
JavaScript
Raw Normal View History

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