-
Notifications
You must be signed in to change notification settings - Fork 0
/
doc.go
14 lines (14 loc) · 966 Bytes
/
doc.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// Package anycase converts strings to various cases. See the conversion table below:
// | Function | Result |
// | ----------------------------------------- | -------------------- |
// | `ToSnake(s)` | `any_kind_of_string` |
// | `ToSnakeAndIgnore(s, '.')` | `any_kind.of_string` |
// | `ToSnakeUppercase(s)` | `ANY_KIND_OF_STRING` |
// | `ToKebab(s)` | `any-kind-of-string` |
// | `ToKebabUppercase(s)` | `ANY-KIND-OF-STRING` |
// | `ToCamel(s)` | `AnyKindOfString` |
// | `ToLowerCamel(s)` | `anyKindOfString` |
// | `ToDelimited(s, '.')` | `any.kind.of.string` |
// | `ToDelimitedUppercase(s, '.', ' ', true)` | `ANY.KIND OF.STRING` |
// | `ToDelimitedUppercase(s, '.', '', true)` | `ANY.KIND.OF.STRING` |
package anycase