Package-level declarations

Types

Link copied to clipboard

Naming conventions for values.

Link copied to clipboard

Utility for converting strings between different naming conventions.

Functions

Link copied to clipboard

Simple function cleaning String from typographic apostrophes and quotes

Link copied to clipboard

Converts snake_case to camelCase. Used e.g., when mapping from database (user_id -> userId).

Link copied to clipboard

Converts snake_case to PascalCase. Used e.g., when mapping class names (table_name -> TableName).

Link copied to clipboard

Converts any Camel/Pascal case text to snake_case. Used e.g., to generate column names from field names (userId -> user_id).