├── .eslintrc.json ├── .github ├── CODE_OF_CONDUCT.md └── workflows │ ├── bun.yml │ ├── node.yml │ └── npm-publish.yml ├── .gitignore ├── LICENSE ├── Makefile ├── README.md ├── changelog.md ├── package.json ├── src └── index.ts ├── test └── tests.ts └── tsconfig.json /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/curveball/http-errors/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.github/CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/curveball/http-errors/HEAD/.github/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /.github/workflows/bun.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/curveball/http-errors/HEAD/.github/workflows/bun.yml -------------------------------------------------------------------------------- /.github/workflows/node.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/curveball/http-errors/HEAD/.github/workflows/node.yml -------------------------------------------------------------------------------- /.github/workflows/npm-publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/curveball/http-errors/HEAD/.github/workflows/npm-publish.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/curveball/http-errors/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/curveball/http-errors/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/curveball/http-errors/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/curveball/http-errors/HEAD/README.md -------------------------------------------------------------------------------- /changelog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/curveball/http-errors/HEAD/changelog.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/curveball/http-errors/HEAD/package.json -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/curveball/http-errors/HEAD/src/index.ts -------------------------------------------------------------------------------- /test/tests.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/curveball/http-errors/HEAD/test/tests.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/curveball/http-errors/HEAD/tsconfig.json --------------------------------------------------------------------------------