Node.js won't exit with this piece of code. I assume it's because the connection somehow is not closed. ``` var pg = require('pg') var client = new pg.native.Client(conStr) client.connect() client.end() ``` Node.js exits if I remove the **.native**.