├── .github ├── ISSUE_TEMPLATE │ └── bug-report.md └── workflows │ └── ci.yml ├── .gitignore ├── README.md ├── jest.config.js ├── package.json ├── src ├── index.ts ├── main.ts ├── static.ts ├── tsconfig.json └── types.ts └── test └── main.spec.ts /.github/ISSUE_TEMPLATE/bug-report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitaly-t/connection-string/HEAD/.github/ISSUE_TEMPLATE/bug-report.md -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitaly-t/connection-string/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitaly-t/connection-string/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitaly-t/connection-string/HEAD/README.md -------------------------------------------------------------------------------- /jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitaly-t/connection-string/HEAD/jest.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitaly-t/connection-string/HEAD/package.json -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitaly-t/connection-string/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitaly-t/connection-string/HEAD/src/main.ts -------------------------------------------------------------------------------- /src/static.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitaly-t/connection-string/HEAD/src/static.ts -------------------------------------------------------------------------------- /src/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitaly-t/connection-string/HEAD/src/tsconfig.json -------------------------------------------------------------------------------- /src/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitaly-t/connection-string/HEAD/src/types.ts -------------------------------------------------------------------------------- /test/main.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitaly-t/connection-string/HEAD/test/main.spec.ts --------------------------------------------------------------------------------