constantCase
constantCase(target)
Converts target
string to CONSTANT_CASE format.
ts
constantCase("hello world"); // "HELLO_WORLD"
constantCase("helloWorld"); // "HELLO_WORLD"
ts
pipe("hello world", constantCase()); // "HELLO_WORLD"
pipe("helloWorld", constantCase()); // "HELLO_WORLD"