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