waterline-postgresql
Version:
PostgreSQL Adapter for Sails and Waterline
14 lines (12 loc) • 427 B
JavaScript
var path = require('path')
var pgPath;
//support both pg & pg.js
//this will eventually go away when i break native bindings
//out into their own module
try {
pgPath = path.dirname(require.resolve('pg'))
} catch(e) {
pgPath = path.dirname(require.resolve('pg.js')) + '/lib'
}
module.exports.Result = require(path.join(pgPath, 'result.js'))
module.exports.prepareValue = require(path.join(pgPath, 'utils.js')).prepareValue