├── .gitignore ├── .prettierrc.json ├── LICENSE ├── README.md ├── index.d.ts ├── index.js ├── package.json └── tests.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vincit/objection-db-errors/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vincit/objection-db-errors/HEAD/.prettierrc.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vincit/objection-db-errors/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vincit/objection-db-errors/HEAD/README.md -------------------------------------------------------------------------------- /index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vincit/objection-db-errors/HEAD/index.d.ts -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vincit/objection-db-errors/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vincit/objection-db-errors/HEAD/package.json -------------------------------------------------------------------------------- /tests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vincit/objection-db-errors/HEAD/tests.js --------------------------------------------------------------------------------