caseconv
A very simple case converter in go
Install
go get github.com/fredr/caseconv
Test
go test -v
Use
package main
import (
"fmt"
"github.com/fredr/caseconv"
)
func main() {
fmt.Println(caseconv.CamelToSnake("HelloWorld"))
}
A very simple case converter in go
go get github.com/fredr/caseconv
go test -v
package main
import (
"fmt"
"github.com/fredr/caseconv"
)
func main() {
fmt.Println(caseconv.CamelToSnake("HelloWorld"))
}