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