Skip to content

Commit 6bc512a

Browse files
committed
fix jshint error in lib/index.js
1 parent 6527899 commit 6bc512a

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

lib/index.js

+2-1
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,8 @@ module.exports = new PG(Client);
9292
//lazy require native module...the native module may not have installed
9393
module.exports.__defineGetter__("native", function() {
9494
delete module.exports.native;
95-
return (module.exports.native = new PG(require(__dirname + '/native')));
95+
module.exports.native = new PG(require(__dirname + '/native'));
96+
return module.exports.native;
9697
});
9798

9899
module.exports.types = require('./types');

0 commit comments

Comments
 (0)