export function containsUppercase(str: string): boolean { return Boolean(str.match(/[A-Z]/)); }