minor changes

This commit is contained in:
coderaiser 2012-12-28 09:54:08 -05:00
parent 11237bbed8
commit 1b70aee241
2 changed files with 9 additions and 9 deletions

View file

@ -207,9 +207,9 @@
var stdo = fs.createWriteStream('./log.txt');
process.stdout.write = (function(write) {
return function(string, encoding, fd) {
stdo.write(string);
};
return function(string, encoding, fd) {
stdo.write(string);
};
})(process.stdout.write);
}
})();