Browse Source

Not using the deprecated / broken api (assuming that it was working before)

master
AJ ONeal 12 years ago
parent
commit
0bfb5bd0c8
  1. 2
      index.js

2
index.js

@ -2,7 +2,7 @@
"use strict";
function atob(str) {
return new Buffer(str, 'base64').toString('utf8');
return new Buffer(str).toString('base64');
}
module.exports = atob;

Loading…
Cancel
Save