Convert a string from any convention to Snake Case convention.
A string to be converted to Snake Case.
A string in snake_case convention.
snakeCase('hello world'); // 'hello_world' Copy
snakeCase('hello world'); // 'hello_world'
Convert a string from any convention to Snake Case convention.