Expand description
String case-conversion utilities used across the ferriorm workspace.
Provides to_snake_case, to_pascal_case, and to_camel_case for
converting between naming conventions (e.g., model names to table names,
column names to Rust field names).
Functionsยง
- to_
camel_ case - Convert
snake_casetocamelCase. - to_
pascal_ case - Convert
snake_casetoPascalCase. - to_
snake_ case - Convert
PascalCaseorcamelCasetosnake_case.