Frequently Asked Questions

TextKit supports 8 case formats: UPPERCASE, lowercase, Title Case, Sentence case, camelCase, PascalCase, snake_case, and kebab-case.
camelCase is a naming convention where the first word is lowercase and subsequent words start with uppercase letters, with no separators. It is commonly used in JavaScript and Java variable naming. Example: 'myVariableName'.
snake_case uses underscores to separate words, with all letters in lowercase. It is commonly used in Python, Ruby, and database column names. Example: 'my_variable_name'.
kebab-case uses hyphens to separate words, with all letters in lowercase. It is commonly used in URLs, CSS class names, and HTML attributes. Example: 'my-component-name'.
No. All case conversions happen entirely in your browser using JavaScript. Your text never leaves your device.