Converts string to screaming snake case.
string
The string to convert.
Returns the screaming snake cased string.
toScreamingSnakeCase('Hello, world!')// => 'HELLO_WORLD' Copy
toScreamingSnakeCase('Hello, world!')// => 'HELLO_WORLD'
Converts
string
to screaming snake case.