UNPKG

text-is-upper-case

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