Go to file
2017-06-15 12:36:32 +10:00
.travis.yml Simpler travis.yml 2015-10-16 15:33:57 +11:00
camel_test.go Add test for Issue #2 2017-06-15 12:34:40 +10:00
camel.go Make toCamelInitCase private 2017-06-15 12:36:32 +10:00
LICENSE Make repository public 2015-10-09 20:13:05 +11:00
README.md Coverage badge 2015-10-16 15:34:13 +11:00
snake_test.go Make repository public 2015-10-09 20:13:05 +11:00
snake.go Make repository public 2015-10-09 20:13:05 +11: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