mirror of
https://github.com/brianc/node-postgres.git
synced 2026-01-25 16:03:13 +00:00
8 lines
221 B
JavaScript
8 lines
221 B
JavaScript
// ESM wrapper for pg-connection-string
|
|
import connectionString from '../index.js';
|
|
|
|
// Re-export the parse function
|
|
export const parse = connectionString.parse;
|
|
|
|
// Re-export the default
|
|
export default connectionString;
|