UNPKG

350 BJavaScriptView Raw
1"use strict";
2Object.defineProperty(exports, "__esModule", { value: true });
3const Pool = require("pg-pool");
4const pg = require("pg");
5const pgCamelCase = require("pg-camelcase");
6pgCamelCase.inject(pg);
7class PgPool extends Pool {
8 constructor(options) {
9 super(options);
10 this.Client = pg.Client;
11 }
12}
13exports.PgPool = PgPool;