const re = /^(\p{Ll})+$/u;
/**
* Test a string for all lower case characters
*
* @param input string to test
* @return true, if all characters in the string are lower case
*/exportfunctionisLowerCase(input) {
return re.test(input);
}
exportdefault isLowerCase;