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

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

module.exports = atob.atob = atob;