Checks if the given string is all in upper case.
isUpperCase('FOOBAR'); // true isUpperCase('FooBaR'); // false isUpperCase('foobar'); // false
The string to check.
Whether the string is all in upper case.
Generated using TypeDoc
Checks if the given string is all in upper case.
isUpperCase('FOOBAR'); // true isUpperCase('FooBaR'); // false isUpperCase('foobar'); // false