├── .github ├── FUNDING.yml ├── ISSUE_TEMPLATE │ └── bug_report.md └── test.yaml ├── .gitignore ├── .husky └── pre-commit ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── SECURITY.md ├── index.ts ├── package.json ├── src └── asyncErrorHandler.ts ├── test └── asyncErrorHandler.test.ts └── tsconfig.json /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pacifiquem/node-async-handler/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pacifiquem/node-async-handler/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pacifiquem/node-async-handler/HEAD/.github/test.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pacifiquem/node-async-handler/HEAD/.gitignore -------------------------------------------------------------------------------- /.husky/pre-commit: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env sh 2 | . "$(dirname -- "$0")/_/husky.sh" 3 | 4 | yarn test 5 | -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pacifiquem/node-async-handler/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pacifiquem/node-async-handler/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pacifiquem/node-async-handler/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pacifiquem/node-async-handler/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pacifiquem/node-async-handler/HEAD/SECURITY.md -------------------------------------------------------------------------------- /index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pacifiquem/node-async-handler/HEAD/index.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pacifiquem/node-async-handler/HEAD/package.json -------------------------------------------------------------------------------- /src/asyncErrorHandler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pacifiquem/node-async-handler/HEAD/src/asyncErrorHandler.ts -------------------------------------------------------------------------------- /test/asyncErrorHandler.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pacifiquem/node-async-handler/HEAD/test/asyncErrorHandler.test.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pacifiquem/node-async-handler/HEAD/tsconfig.json --------------------------------------------------------------------------------