3 lines
90 B
JavaScript
3 lines
90 B
JavaScript
const atob = str => Buffer.from(str, 'base64').toString('binary');
|
|
module.exports = atob;
|