File "node-atob.js"
Full Path: C:/wamp64/www/INTERPRETE2/frontend/node_modules/base64-arraybuffer/node-atob.js
File size: 130 bytes
MIME-type: text/plain
Charset: utf-8
"use strict";
function atob(str) {
return Buffer.from(str, 'base64').toString('binary');
}
module.exports = atob.atob = atob;