Converts a string to snake case.
the input string
the string converted to snake case
console.log(snakeCase('Hello World')); // 'hello_world' Copy
console.log(snakeCase('Hello World')); // 'hello_world'
Generated using TypeDoc
Converts a string to snake case.