080675b38f
Co-authored-by: Dominik Pschenitschni <mail@celement.de> Reviewed-on: https://kolaente.dev/vikunja/frontend/pulls/1810 Reviewed-by: konrad <k@knt.li> Co-authored-by: Dominik Pschenitschni <dpschen@noreply.kolaente.de> Co-committed-by: Dominik Pschenitschni <dpschen@noreply.kolaente.de>
6 lines
164 B
TypeScript
6 lines
164 B
TypeScript
export function isEmail(email: string): boolean {
|
|
const format = /^.+@.+$/
|
|
const match = email.match(format)
|
|
|
|
return match === null ? false : match.length > 0
|
|
}
|