d7305a329d67289aa4620708ba1f20c9ea85f48d
[dotfiles/.git] / node-atob.js
1 "use strict";
2
3 function atob(str) {
4   return Buffer.from(str, 'base64').toString('binary');
5 }
6
7 module.exports = atob.atob = atob;