Merge pull request #3 from pwnall/patch-2
Fix atob to match browser implementations
Cette révision appartient à :
révision
ba6a6282f1
@ -2,7 +2,7 @@
|
||||
"use strict";
|
||||
|
||||
function atob(str) {
|
||||
return new Buffer(str, 'base64').toString('utf8');
|
||||
return new Buffer(str, 'base64').toString('binary');
|
||||
}
|
||||
|
||||
module.exports = atob;
|
||||
|
Chargement…
x
Référencer dans un nouveau ticket
Bloquer un utilisateur