blob: d7305a329d67289aa4620708ba1f20c9ea85f48d [file] [log] [blame]
"use strict";
function atob(str) {
return Buffer.from(str, 'base64').toString('binary');
}
module.exports = atob.atob = atob;