# Functions
IsCamelCase whether argument is camelCase style string, return true.
IsChainCase whether argument is chain-case style string, return true.
IsChainCaseForRouting whether argument is chain-case style string, return true.
IsFlatCase whether argument is flatcase style string, return true.
IsPascalCase whether argument is PascalCase style string, return true.
IsSnakeCase check whether argument is snake_case style string, return true.
IsUpperCase whether argument is UPPER_CASE style string, return true.
Remove remove target from string list.
Split splits the camelcase word and returns a list of words.
ToCamelCase convert argument to camelCase style string If argument is empty, return itself.
ToChainCase convert argument to chain-case style string.
ToChainCaseForRouting convert argument to chain case style string.
ToFlatCase convert argument to flatcase style string If argument is empty, return itself.
ToPascalCase convert argument to PascalCase style string If argument is empty, return itself.
ToSnakeCase convert argument to snake_case style string.
ToUpperCase convert argument to UPPER_CASE style string.