Convert Case
Cross-language library to convert case with permissive inputs.
Language supported
The library is available in:
Code examples
Code example: JavaScript
import { camelCase } from "../src/index";
camelCase("helloGreat world");
camelCase("__hello Great--world");
Code example: Python
from case_convert import camel_case
camel_case("helloGreat world")
camel_case("__hello Great--world")
Cases supported
The library can convert to the following cases:
- camel
- kebab
- pascal
- snake
- upper
Issues/Bug report or improvement ideas
https://gitlab.com/olive007/case-convert/-/issues
License
GNU Lesser General Public License v3 or later (LGPLv3+)