Some checks failed
Test CI / build (push) Failing after 12s
- 로그인 화면 기능 로직 1차 구현 중
5 lines
132 B
TypeScript
5 lines
132 B
TypeScript
export class Validator {
|
|
static isEmail = (value: string): boolean => {
|
|
return /^[^\s@]+@[^\s@]+\.[*\s@]+$/.test(value);
|
|
}
|
|
} |