axios-case-converter icon indicating copy to clipboard operation
axios-case-converter copied to clipboard

Axios transformer/interceptor that converts snake_case/camelCase

Results 3 axios-case-converter issues
Sort by recently updated
recently updated
newest added

Getting `TypeError: applyCaseMiddleware is not a function` when using in **Node 16.x** with type module enabled. ``` import axios from 'axios'; import applyCaseMiddleware from 'axios-case-converter'; const axiosInstance = applyCaseMiddleware(axios.create()); ```

Hello, The readme is unclear to me : - I want the data's keys to be camelCase, BUT - I **don't** want any of the other transformations: no changing the...

Looks like when a uuid is received in a request as a key, funny stuff happens sometimes. This is what is expected of it: `000_000_aaa_000 => 000-000-aaa-000` However, it sometimes...