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

Este commit está contenido en:
AJ ONeal 2012-02-20 14:44:50 -07:00
padre 65407a29d0
commit 0bfb5bd0c8
Se han modificado 1 ficheros con 1 adiciones y 1 borrados

Ver fichero

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