We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1d29896 commit 2dc9474Copy full SHA for 2dc9474
README.md
@@ -0,0 +1,18 @@
1
+
2
+# go-utils
3
4
+Currently this is just a wrapper around github.com/segmentio's 2 fast case parses:
5
6
+[github.com/segmentio/go-camelcase](https://github.com/segmentio/go-camelcase)
7
8
+[github.com/segmentio/go-snakecase](https://github.com/segmentio/go-snakecase)
9
10
+With an added Pascal Case function:
11
12
+```
13
+func CamelCase(str string) string
14
+func SnakeCase(str string) string
15
+func PascalCase(str string) string
16
17
18
+Thank you @tj for switching to Go just before we did! ;)
0 commit comments