├── .c8rc ├── .gitattributes ├── .github ├── dependabot.yml ├── stale.yml └── workflows │ └── ci.yml ├── .gitignore ├── .npmrc ├── LICENSE ├── README.md ├── eslint.config.js ├── index.js ├── lib └── utils.js ├── package.json ├── test ├── global-compress.test.js ├── global-decompress.test.js ├── regression │ └── issue-288.test.js ├── routes-compress.test.js ├── routes-decompress.test.js └── utils.test.js └── types ├── index.d.ts └── index.test-d.ts /.c8rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastify/fastify-compress/HEAD/.c8rc -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastify/fastify-compress/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastify/fastify-compress/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/stale.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastify/fastify-compress/HEAD/.github/stale.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastify/fastify-compress/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastify/fastify-compress/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- 1 | ignore-scripts=true 2 | package-lock=false 3 | 4 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastify/fastify-compress/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastify/fastify-compress/HEAD/README.md -------------------------------------------------------------------------------- /eslint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastify/fastify-compress/HEAD/eslint.config.js -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastify/fastify-compress/HEAD/index.js -------------------------------------------------------------------------------- /lib/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastify/fastify-compress/HEAD/lib/utils.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastify/fastify-compress/HEAD/package.json -------------------------------------------------------------------------------- /test/global-compress.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastify/fastify-compress/HEAD/test/global-compress.test.js -------------------------------------------------------------------------------- /test/global-decompress.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastify/fastify-compress/HEAD/test/global-decompress.test.js -------------------------------------------------------------------------------- /test/regression/issue-288.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastify/fastify-compress/HEAD/test/regression/issue-288.test.js -------------------------------------------------------------------------------- /test/routes-compress.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastify/fastify-compress/HEAD/test/routes-compress.test.js -------------------------------------------------------------------------------- /test/routes-decompress.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastify/fastify-compress/HEAD/test/routes-decompress.test.js -------------------------------------------------------------------------------- /test/utils.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastify/fastify-compress/HEAD/test/utils.test.js -------------------------------------------------------------------------------- /types/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastify/fastify-compress/HEAD/types/index.d.ts -------------------------------------------------------------------------------- /types/index.test-d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastify/fastify-compress/HEAD/types/index.test-d.ts --------------------------------------------------------------------------------