()
| 934 | * @since 4.0.0 |
| 935 | */ |
| 936 | export function camelToSnake<E extends string>(): Getter<string, E> { |
| 937 | return transform(Str.camelToSnake) |
| 938 | } |
| 939 | |
| 940 | /** |
| 941 | * Converts a string to lowercase. |
nothing calls this directly
no test coverage detected