atob.js/index.js

10 lines
148 B
JavaScript
Raw Normal View History

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