package
0.11.2
Repository: https://github.com/twdp/hiboot.git
Documentation: pkg.go.dev

# Functions

Convert convert string to specific data type.
InSlice check if specific string is in slice.
LowerFirst lower case first character of specific string.
ToCamel Converts a string to CamelCase.
ToDelimited Converts a string to delimited.snake.case (in this case `del = '.'`).
ToKebab Converts a string to kebab-case.
ToLowerCamel converts a string to lowerCamelCase.
ToScreamingDelimited Converts a string to SCREAMING.DELIMITED.SNAKE.CASE (in this case `del = '.'; screaming = true`) or delimited.snake.case (in this case `del = '.'; screaming = false`).
ToScreamingKebab Converts a string to SCREAMING-KEBAB-CASE.
ToScreamingSnake Converts a string to SCREAMING_SNAKE_CASE.
ToSnake Converts a string to snake_case.
UpperFirst upper case first character of specific string.

# Constants

EmptyString the empty string "".