Skip to content

Commit c7aa149

Browse files
committed
Merge branch 'master' of https://github.com/brianc/node-postgres
2 parents 73d514a + c72dea8 commit c7aa149

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

lib/index.js

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,9 @@ module.exports = {
88
Connection: require(__dirname + '/connection'),
99
connect: pool.connect,
1010
end: pool.end,
11-
defaults: defaults,
12-
native: require(__dirname + '/native')
11+
defaults: defaults
1312
}
13+
14+
module.exports.__defineGetter__("native", function() {
15+
return require('native');
16+
})

0 commit comments

Comments
 (0)