Go to file
2018-07-03 20:36:59 +02:00
.travis.yml Simpler travis.yml 2015-10-16 15:33:57 +11:00
camel_test.go Added license notices of Ian Coleman to each file 2018-07-03 19:52:40 +02:00
camel.go Added doc and kebab 2018-07-03 20:36:59 +02:00
LICENSE Added license notices of Ian Coleman to each file 2018-07-03 19:52:40 +02:00
numbers.go Added license notices of Ian Coleman to each file 2018-07-03 19:52:40 +02:00
README.md Added license notices of Ian Coleman to each file 2018-07-03 19:52:40 +02:00
snake_test.go Added ToDelimited 2018-07-03 20:24:52 +02:00
snake.go Added doc and kebab 2018-07-03 20:36:59 +02:00

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