Files
enviPy-bayer/static/js/ketcher2/node_modules/atob/index.js
2025-06-23 20:13:54 +02:00

10 lines
148 B
JavaScript

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