Files
anissah/user/themes/anissabensalah/node_modules/atob/index.js
T
2018-05-28 13:26:25 +02:00

10 lines
148 B
JavaScript

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