# StringFormatter
The StringFormatter class provides utilities for formatting strings.

# Constructor
## constructor()
creates an `StringFormatter` instance.

### Arguments
The `StringFormatter` constructor does not accept any arguments.

### Errors
The `StringFormatter` class does not throw any errors.

# Methodds
| **Method** | **Arguments** | **Return Type** | **Description** |
| ----------- | ----------- | ----------- | ----------- |
| camelCase() | (any) input | string | Converts an input into camel case. If the input is not a string type, camelCase() will attempt to convert it to a string. |
| capitalCase() | (any) input | string | Converts an input into capital case. If the input is not a string type, capitalCase() will attempt to convert it to a string. |
| constantCase() | (any) input | string | Converts an input into constant case. If the input is not a string type, constantCase() will attempt to convert it to a string. |
| dotCase() | (any) input | string | Converts an input into dot case. If the input is not a string type, dotCase() will attempt to convert it to a string. |
| headerCase() | (any) input | string | Converts an input into header case. If the input is not a string type, headerCase() will attempt to convert it to a string. |
| noCase() | (any) input | string | Converts an input into no case. If the input is not a string type, noCase() will attempt to convert it to a string. |
| paramCase() | (any) input | string | Converts an input into param case. If the input is not a string type, paramCase() will attempt to convert it to a string. |
| pascalCase() | (any) input | string | Converts an input into pascal case. If the input is not a string type, pascalCase() will attempt to convert it to a string.|
| pathCase() | (any) input | string | Converts an input into path case. If the input is not a string type, pathCase() will attempt to convert it to a string. |
| snakeCase() | (any) input | string | Converts an input into snake case. If the input is not a string type, snakeCase() will attempt to convert it to a string. |
