backoffice/node_modules/atob/index.js

10 lines
148 B
JavaScript
Raw Normal View History

2020-02-06 10:09:39 +00:00
(function () {
"use strict";
function atob(str) {
return new Buffer(str, 'base64').toString('binary');
}
module.exports = atob;
}());