Go to file
Joshua Chaitin-Pollak a2c126df64 fix: capitalize characters after -
feat: created ToLowerCamel() to not capitalize the first letter
2017-06-14 14:26:32 -04:00
.travis.yml Simpler travis.yml 2015-10-16 15:33:57 +11:00
camel_test.go Make repository public 2015-10-09 20:13:05 +11:00
camel.go fix: capitalize characters after - 2017-06-14 14:26:32 -04: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