index.js 148 B

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