atob.js/index.js

10 satır
146 B
JavaScript
Ham Normal Görünüm Geçmiş

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