fix jshint errors for lib/utils.js

This commit is contained in:
Philipp Borgers 2013-01-21 14:50:26 +01:00
parent a78effef2e
commit 22d8538879

View File

@ -25,7 +25,7 @@ var prepareValue = function(val) {
return null;
}
return val === null ? null : val.toString();
}
};
function normalizeQueryConfig (config, values, callback) {
//can take in strings or config objects
@ -46,4 +46,4 @@ function normalizeQueryConfig (config, values, callback) {
module.exports = {
prepareValue: prepareValue,
normalizeQueryConfig: normalizeQueryConfig
}
};