()
| 909 | * @since 4.0.0 |
| 910 | */ |
| 911 | export function snakeToCamel<E extends string>(): Getter<string, E> { |
| 912 | return transform(Str.snakeToCamel) |
| 913 | } |
| 914 | |
| 915 | /** |
| 916 | * Converts a `camelCase` string to `snake_case`. |
nothing calls this directly
no test coverage detected