export function isAlpha(input: string): boolean { return /^[a-zA-Z]+$/.test(input); }