6 lines
175 B
TypeScript
6 lines
175 B
TypeScript
const SYNTHETIC_DOMAINS = ['vk.local']
|
|
|
|
export function isSyntheticEmail(email: string): boolean {
|
|
return SYNTHETIC_DOMAINS.some((domain) => email.endsWith(`@${domain}`))
|
|
}
|