"All Upper I" solution in Clear category for All Upper I by capback250
var isAllUpper = (text: string): boolean => !/[a-z]/.test(text);
Aug. 31, 2020