Fix space-before-function-paren linter rule

This commit is contained in:
HeeL
2016-10-13 11:43:39 +02:00
parent 3fa1c1f927
commit 4a3c31b2dc
385 changed files with 6621 additions and 6622 deletions

View File

@@ -2,51 +2,51 @@
var winston = require('winston');
module.exports = function(db, module) {
module.exports = function (db, module) {
var helpers = module.helpers.mongo;
module.flushdb = function(callback) {
module.flushdb = function (callback) {
callback = callback || helpers.noop;
db.dropDatabase(callback);
};
module.exists = function(key, callback) {
module.exists = function (key, callback) {
if (!key) {
return callback();
}
db.collection('objects').findOne({_key: key}, function(err, item) {
db.collection('objects').findOne({_key: key}, function (err, item) {
callback(err, item !== undefined && item !== null);
});
};
module.delete = function(key, callback) {
module.delete = function (key, callback) {
callback = callback || helpers.noop;
if (!key) {
return callback();
}
db.collection('objects').remove({_key: key}, function(err, res) {
db.collection('objects').remove({_key: key}, function (err, res) {
callback(err);
});
};
module.deleteAll = function(keys, callback) {
module.deleteAll = function (keys, callback) {
callback = callback || helpers.noop;
if (!Array.isArray(keys) || !keys.length) {
return callback();
}
db.collection('objects').remove({_key: {$in: keys}}, function(err, res) {
db.collection('objects').remove({_key: {$in: keys}}, function (err, res) {
callback(err);
});
};
module.get = function(key, callback) {
module.get = function (key, callback) {
if (!key) {
return callback();
}
module.getObjectField(key, 'value', callback);
};
module.set = function(key, value, callback) {
module.set = function (key, value, callback) {
callback = callback || helpers.noop;
if (!key) {
return callback();
@@ -55,36 +55,36 @@ module.exports = function(db, module) {
module.setObject(key, data, callback);
};
module.increment = function(key, callback) {
module.increment = function (key, callback) {
callback = callback || helpers.noop;
if (!key) {
return callback();
}
db.collection('objects').findAndModify({_key: key}, {}, {$inc: {value: 1}}, {new: true, upsert: true}, function(err, result) {
db.collection('objects').findAndModify({_key: key}, {}, {$inc: {value: 1}}, {new: true, upsert: true}, function (err, result) {
callback(err, result && result.value ? result.value.value : null);
});
};
module.rename = function(oldKey, newKey, callback) {
module.rename = function (oldKey, newKey, callback) {
callback = callback || helpers.noop;
db.collection('objects').update({_key: oldKey}, {$set:{_key: newKey}}, {multi: true}, function(err, res) {
db.collection('objects').update({_key: oldKey}, {$set:{_key: newKey}}, {multi: true}, function (err, res) {
callback(err);
});
};
module.expire = function(key, seconds, callback) {
module.expire = function (key, seconds, callback) {
module.expireAt(key, Math.round(Date.now() / 1000) + seconds, callback);
};
module.expireAt = function(key, timestamp, callback) {
module.expireAt = function (key, timestamp, callback) {
module.setObjectField(key, 'expireAt', new Date(timestamp * 1000), callback);
};
module.pexpire = function(key, ms, callback) {
module.pexpire = function (key, ms, callback) {
module.pexpireAt(key, Date.now() + parseInt(ms, 10), callback);
};
module.pexpireAt = function(key, timestamp, callback) {
module.pexpireAt = function (key, timestamp, callback) {
module.setObjectField(key, 'expireAt', new Date(timestamp), callback);
};
};