2017-09-13 07:52:34 +02:00

10 lines
148 B
JavaScript
Vendored

(function () {
"use strict";
function atob(str) {
return new Buffer(str, 'base64').toString('binary');
}
module.exports = atob;
}());