Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
quick no golf solution in Clear category for All Upper II by vincent.tscherter
function isAllUpper(text: string): boolean {
return !!text.match(/[A-Z]/) && text.toUpperCase() == text
}
April 30, 2020
Comments: