remove trailing whitespaces in lib/connection-parameters.js

This commit is contained in:
Philipp Borgers 2013-01-24 01:16:18 +01:00
parent a7e9072ab8
commit 8e7e2f7a62

View File

@ -4,8 +4,8 @@ var path = require('path');
var defaults = require(__dirname + '/defaults');
var val = function(key, config) {
return config[key] ||
process.env['PG' + key.toUpperCase()] ||
return config[key] ||
process.env['PG' + key.toUpperCase()] ||
defaults[key];
};