// Auto-created source file for testing export function isValidEmail(email: string): boolean { return /^[^@]+@[^@]+.[^@]+$/.test(email); }