ESlint comma-spacing

This commit is contained in:
Peter Jaszkowiak
2017-02-18 01:31:47 -07:00
parent 277a7fb8b4
commit 2e031f3759
24 changed files with 54 additions and 49 deletions

View File

@@ -157,7 +157,7 @@ module.exports = function (db, module) {
return callback();
}
var pipeline = [
{ $match: { _key: { $in: keys } } } ,
{ $match: { _key: { $in: keys } } },
{ $group: { _id: {_key: '$_key'}, count: { $sum: 1 } } },
{ $project: { _id: 1, count: '$count' } },
];