├── .eslintrc.yml ├── .github └── workflows │ └── ci.yml ├── .gitignore ├── .nvmrc ├── LICENSE.md ├── README.md ├── index.d.ts ├── index.js ├── index.js.map ├── jest.config.ts ├── package.json ├── src └── index.ts └── tsconfig.json /.eslintrc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NishuGoel/lambda-server-timing/HEAD/.eslintrc.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NishuGoel/lambda-server-timing/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NishuGoel/lambda-server-timing/HEAD/.gitignore -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | v18 -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NishuGoel/lambda-server-timing/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NishuGoel/lambda-server-timing/HEAD/README.md -------------------------------------------------------------------------------- /index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NishuGoel/lambda-server-timing/HEAD/index.d.ts -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NishuGoel/lambda-server-timing/HEAD/index.js -------------------------------------------------------------------------------- /index.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NishuGoel/lambda-server-timing/HEAD/index.js.map -------------------------------------------------------------------------------- /jest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NishuGoel/lambda-server-timing/HEAD/jest.config.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NishuGoel/lambda-server-timing/HEAD/package.json -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NishuGoel/lambda-server-timing/HEAD/src/index.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NishuGoel/lambda-server-timing/HEAD/tsconfig.json --------------------------------------------------------------------------------