mirror of
https://github.com/brianc/node-postgres.git
synced 2025-12-08 20:16:25 +00:00
fix jshint error in lib/index.js
This commit is contained in:
parent
6527899526
commit
6bc512a71f
@ -92,7 +92,8 @@ module.exports = new PG(Client);
|
||||
//lazy require native module...the native module may not have installed
|
||||
module.exports.__defineGetter__("native", function() {
|
||||
delete module.exports.native;
|
||||
return (module.exports.native = new PG(require(__dirname + '/native')));
|
||||
module.exports.native = new PG(require(__dirname + '/native'));
|
||||
return module.exports.native;
|
||||
});
|
||||
|
||||
module.exports.types = require('./types');
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user