Merge pull request #2 from pwnall/patch-1

Fix btoa to match browser implementations
This commit is contained in:
AJ ONeal 2012-09-19 12:55:58 -07:00
commit d86a3f5fc3
1 changed files with 1 additions and 1 deletions

View File

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