├── .eslintrc.json ├── .gitignore ├── .prettierrc.js ├── .travis.yml ├── LICENSE ├── README.md ├── dist ├── index.d.ts └── index.js ├── lib └── index.ts ├── logo.png ├── package.json ├── tests ├── app.ts ├── async-handler.spec.ts └── tsconfig.json └── tsconfig.json /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techbless/express-safe-async/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techbless/express-safe-async/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techbless/express-safe-async/HEAD/.prettierrc.js -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techbless/express-safe-async/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techbless/express-safe-async/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techbless/express-safe-async/HEAD/README.md -------------------------------------------------------------------------------- /dist/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techbless/express-safe-async/HEAD/dist/index.d.ts -------------------------------------------------------------------------------- /dist/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techbless/express-safe-async/HEAD/dist/index.js -------------------------------------------------------------------------------- /lib/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techbless/express-safe-async/HEAD/lib/index.ts -------------------------------------------------------------------------------- /logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techbless/express-safe-async/HEAD/logo.png -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techbless/express-safe-async/HEAD/package.json -------------------------------------------------------------------------------- /tests/app.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techbless/express-safe-async/HEAD/tests/app.ts -------------------------------------------------------------------------------- /tests/async-handler.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techbless/express-safe-async/HEAD/tests/async-handler.spec.ts -------------------------------------------------------------------------------- /tests/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techbless/express-safe-async/HEAD/tests/tsconfig.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techbless/express-safe-async/HEAD/tsconfig.json --------------------------------------------------------------------------------