├── .editorconfig ├── .eslintignore ├── .eslintrc ├── .gitattributes ├── .github └── workflows │ ├── ci.yml │ └── release.yml ├── .gitignore ├── .npmignore ├── .prettierrc ├── LICENSE ├── README.md ├── jest.config.js ├── jest.resolver.js ├── package.json ├── rollup.config.js ├── src ├── decorators.ts ├── index.ts ├── middleware.ts ├── transformers.ts ├── types.ts └── util.ts ├── test ├── axios-headers-dirty-hacks.ts ├── integration │ ├── basic.ts │ ├── internet-explorer.ts │ └── react-native.ts └── unit │ ├── decorators.ts │ ├── transformers.ts │ └── util.ts ├── tsconfig.es.json ├── tsconfig.json ├── tsconfig.typings.json └── tsconfig.umd.json /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpyw/axios-case-converter/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpyw/axios-case-converter/HEAD/.eslintignore -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpyw/axios-case-converter/HEAD/.eslintrc -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | *.config.js linguist-vendored 2 | -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpyw/axios-case-converter/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpyw/axios-case-converter/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpyw/axios-case-converter/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpyw/axios-case-converter/HEAD/.npmignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpyw/axios-case-converter/HEAD/.prettierrc -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpyw/axios-case-converter/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpyw/axios-case-converter/HEAD/README.md -------------------------------------------------------------------------------- /jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpyw/axios-case-converter/HEAD/jest.config.js -------------------------------------------------------------------------------- /jest.resolver.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpyw/axios-case-converter/HEAD/jest.resolver.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpyw/axios-case-converter/HEAD/package.json -------------------------------------------------------------------------------- /rollup.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpyw/axios-case-converter/HEAD/rollup.config.js -------------------------------------------------------------------------------- /src/decorators.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpyw/axios-case-converter/HEAD/src/decorators.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpyw/axios-case-converter/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/middleware.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpyw/axios-case-converter/HEAD/src/middleware.ts -------------------------------------------------------------------------------- /src/transformers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpyw/axios-case-converter/HEAD/src/transformers.ts -------------------------------------------------------------------------------- /src/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpyw/axios-case-converter/HEAD/src/types.ts -------------------------------------------------------------------------------- /src/util.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpyw/axios-case-converter/HEAD/src/util.ts -------------------------------------------------------------------------------- /test/axios-headers-dirty-hacks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpyw/axios-case-converter/HEAD/test/axios-headers-dirty-hacks.ts -------------------------------------------------------------------------------- /test/integration/basic.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpyw/axios-case-converter/HEAD/test/integration/basic.ts -------------------------------------------------------------------------------- /test/integration/internet-explorer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpyw/axios-case-converter/HEAD/test/integration/internet-explorer.ts -------------------------------------------------------------------------------- /test/integration/react-native.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpyw/axios-case-converter/HEAD/test/integration/react-native.ts -------------------------------------------------------------------------------- /test/unit/decorators.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpyw/axios-case-converter/HEAD/test/unit/decorators.ts -------------------------------------------------------------------------------- /test/unit/transformers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpyw/axios-case-converter/HEAD/test/unit/transformers.ts -------------------------------------------------------------------------------- /test/unit/util.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpyw/axios-case-converter/HEAD/test/unit/util.ts -------------------------------------------------------------------------------- /tsconfig.es.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpyw/axios-case-converter/HEAD/tsconfig.es.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpyw/axios-case-converter/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tsconfig.typings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpyw/axios-case-converter/HEAD/tsconfig.typings.json -------------------------------------------------------------------------------- /tsconfig.umd.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpyw/axios-case-converter/HEAD/tsconfig.umd.json --------------------------------------------------------------------------------