even more jshint compliance

This commit is contained in:
ansuz
2016-02-15 16:47:53 +01:00
parent 3cb94b8d80
commit 278c4ab32f
7 changed files with 21 additions and 4 deletions

View File

@@ -34,7 +34,7 @@ module.exports.create = function(conf, cb){
return a.id - b.id;
});
db.filter(function(val){
return val.chan == channelName;
return val.chan === channelName;
}).forEach(function(doc){
cb(doc.msg);
});