Converts string to snake case.
snakeCase("TypeScript");// => "type_script" Copy
snakeCase("TypeScript");// => "type_script"
The string to convert.
Returns the snake cased string.
Converts string to snake case.
Example