1
0
Derivar 0

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

Este cometimento está contido em:
AJ ONeal 2012-02-20 14:44:50 -07:00
ascendente 65407a29d0
cometimento 0bfb5bd0c8
1 ficheiros modificados com 1 adições e 1 eliminações

Ver ficheiro

@ -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;