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

This commit is contained in:
AJ ONeal 2012-02-20 14:44:50 -07:00
父節點 65407a29d0
當前提交 0bfb5bd0c8
共有 1 個文件被更改,包括 1 次插入1 次删除

查看文件

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