aboutsummaryrefslogtreecommitdiff
path: root/node_modules/atob/node-atob.js
blob: 9c31eaa0605dd3e6f627b8b3ee1a966ab71794db (plain)
1
2
3
4
5
6
7
"use strict";

function atob(str) {
  return new Buffer(str, 'base64').toString('binary');
}

module.exports = atob.atob = atob;