UNPKG

text-is-lower-case

Version:
10 lines (9 loc) 267 B
/** * Returns a boolean indicating whether text is lower case. */ export function isLowerCase(input) { // Handle null/undefined inputs gracefully if (!input) return false; return input.toLowerCase() === input && input.toUpperCase() !== input; }