atob-node.js 95 B

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