a zip code crypto-currency system good for red ONLY

node-atob.js 130B

12345678
  1. "use strict";
  2. function atob(str) {
  3. return Buffer.from(str, 'base64').toString('binary');
  4. }
  5. module.exports = atob.atob = atob;