artem1

Results 1 comments of artem1

pg define getter in module.exports https://github.com/brianc/node-postgres/blob/master/lib/index.js#L76 ``` //lazy require native module...the native module may not have installed module.exports.__defineGetter__("native", function() { delete module.exports.native; module.exports.native = new PG(require('./native')); return module.exports.native; }); ```...