Versions in this module Expand all Collapse all v1 v1.0.0 Jan 12, 2024 Changes in this version + func CanPreserve(input string) (can bool) + func ProfileCase(input string) (breaker, lower, upper, kebab, underscore bool) + type Case uint8 + const CamelCase + const KebabCase + const LowerCamelCase + const LowerCase + const ScreamingKebabCase + const ScreamingSnakeCase + const SnakeCase + const UnknownCase + const UpperCase + func DetectCase(input string) (detected Case) + func (c Case) Apply(input string) (modified string) + func (c Case) String() (name string) + type CaseDetector interface + Detect func(input string) (c Case) + Reset func() + func NewCaseDetector() (d CaseDetector)