()
| 884 | * @since 4.0.0 |
| 885 | */ |
| 886 | export function uncapitalize<E extends string>(): Getter<string, E> { |
| 887 | return transform(Str.uncapitalize) |
| 888 | } |
| 889 | |
| 890 | /** |
| 891 | * Converts a `snake_case` string to `camelCase`. |
nothing calls this directly
no test coverage detected