Nie możesz wybrać więcej, niż 25 tematów Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.
Ma_124 24e04f3d6a Added screaming and doc 5 lat temu
.travis.yml Simpler travis.yml 8 lat temu
LICENSE Added license notices of Ian Coleman to each file 5 lat temu
README.md Added license notices of Ian Coleman to each file 5 lat temu
camel.go Added license notices of Ian Coleman to each file 5 lat temu
camel_test.go Added license notices of Ian Coleman to each file 5 lat temu
numbers.go Added license notices of Ian Coleman to each file 5 lat temu
others.go Added ToDelimited 5 lat temu
snake.go Added screaming and doc 5 lat temu
snake_test.go Added ToDelimited 5 lat temu

README.md

strcase Build Status Coverage

strcase is a go package for converting string case to snake case or camel case.

Example

x := "AnyKind of_string"
xSnake := strcase.ToSnake(x) // any_kind_of_string
xCamel := strcase.ToCamel(x) // AnyKindOfString