Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
First solution in Clear category for All Upper I by wbl4126
function isAllUpper(text: string): boolean {
return text === text.toUpperCase();
}
Dec. 23, 2020