mirror of
https://github.com/brianc/node-postgres.git
synced 2025-12-08 20:16:25 +00:00
* Work on converting lib to standard * Finish updating lib * Finish linting lib * Format test files * Add .eslintrc with standard format * Supply full path to eslint bin * Move lint command to package.json * Add eslint as dev dependency
26 lines
529 B
JavaScript
26 lines
529 B
JavaScript
'use strict'
|
|
var ConnectionParameters = require(__dirname + '/../lib/connection-parameters')
|
|
var config = new ConnectionParameters(process.argv[2])
|
|
|
|
for (var i = 0; i < process.argv.length; i++) {
|
|
switch (process.argv[i].toLowerCase()) {
|
|
case 'native':
|
|
config.native = true
|
|
break
|
|
case 'binary':
|
|
config.binary = true
|
|
break
|
|
case 'down':
|
|
config.down = true
|
|
break
|
|
default:
|
|
break
|
|
}
|
|
}
|
|
|
|
if (process.env['PG_TEST_NATIVE']) {
|
|
config.native = true
|
|
}
|
|
|
|
module.exports = config
|