Files
scheduler-front/src/util/Validator.ts
Hyang-Dan de8381f094
Some checks failed
Test CI / build (push) Failing after 12s
issue #33
- 로그인 화면 기능 로직 1차 구현 중
2025-11-30 01:42:26 +09:00

5 lines
132 B
TypeScript

export class Validator {
static isEmail = (value: string): boolean => {
return /^[^\s@]+@[^\s@]+\.[*\s@]+$/.test(value);
}
}