UNPKG

text-is-lower-case

Version:
13 lines (12 loc) 372 B
"use strict"; 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; }