mirror of
https://github.com/BradNut/boredgame
synced 2025-09-08 17:40:22 +00:00
3 lines
85 B
TypeScript
3 lines
85 B
TypeScript
|
|
export function isValidEmail(email: string): boolean {
|
||
|
|
return /.+@.+/.test(email);
|
||
|
|
}
|