4 lines
95 B
JavaScript
Raw Normal View History

module.exports = function atob(str) {
return Buffer.from(str, 'base64').toString('binary')
}