missing semi-colons in database/

This commit is contained in:
psychobunny
2015-02-25 19:27:13 -05:00
parent 32ce785e5a
commit b0628c2df8
2 changed files with 2 additions and 2 deletions

View File

@@ -201,7 +201,7 @@ module.exports = function(db, module) {
}); });
callback(null, counts); callback(null, counts);
}); });
} };
module.setRemoveRandom = function(key, callback) { module.setRemoveRandom = function(key, callback) {
callback = callback || function() {}; callback = callback || function() {};

View File

@@ -34,6 +34,6 @@ helpers.resultsToBool = function(results) {
results[i] = results[i] === 1; results[i] = results[i] === 1;
} }
return results; return results;
} };
module.exports = helpers; module.exports = helpers;