atob.js/index.js

10 lines
146 B
JavaScript
Raw Normal View History

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