├── .eslintrc.js ├── .gitignore ├── .npmignore ├── LICENSE ├── README.md ├── bun.lockb ├── example └── index.ts ├── package.json ├── src ├── index.ts ├── stream.ts └── utils.ts ├── tests ├── index.test.ts └── mei.jpg ├── tsconfig.cjs.json ├── tsconfig.esm.json └── tsconfig.json /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gusb3ll/elysia-compression/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | 3 | node_modules 4 | .pnpm-debug.log 5 | dist 6 | 7 | build -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gusb3ll/elysia-compression/HEAD/.npmignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gusb3ll/elysia-compression/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gusb3ll/elysia-compression/HEAD/README.md -------------------------------------------------------------------------------- /bun.lockb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gusb3ll/elysia-compression/HEAD/bun.lockb -------------------------------------------------------------------------------- /example/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gusb3ll/elysia-compression/HEAD/example/index.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gusb3ll/elysia-compression/HEAD/package.json -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gusb3ll/elysia-compression/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/stream.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gusb3ll/elysia-compression/HEAD/src/stream.ts -------------------------------------------------------------------------------- /src/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gusb3ll/elysia-compression/HEAD/src/utils.ts -------------------------------------------------------------------------------- /tests/index.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gusb3ll/elysia-compression/HEAD/tests/index.test.ts -------------------------------------------------------------------------------- /tests/mei.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gusb3ll/elysia-compression/HEAD/tests/mei.jpg -------------------------------------------------------------------------------- /tsconfig.cjs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gusb3ll/elysia-compression/HEAD/tsconfig.cjs.json -------------------------------------------------------------------------------- /tsconfig.esm.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gusb3ll/elysia-compression/HEAD/tsconfig.esm.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gusb3ll/elysia-compression/HEAD/tsconfig.json --------------------------------------------------------------------------------