blob: 7072075697d1dc07d76279021c79a80c4d53590c [file] [log] [blame]
module.exports = function atob(str) {
return Buffer.from(str, 'base64').toString('binary')
}