text-is-lower-case
Version:
Returns `true` if text is lower case only
13 lines (12 loc) • 372 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.isLowerCase = isLowerCase;
/**
* Returns a boolean indicating whether text is lower case.
*/
function isLowerCase(input) {
// Handle null/undefined inputs gracefully
if (!input)
return false;
return input.toLowerCase() === input && input.toUpperCase() !== input;
}