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