mirror of
https://github.com/yangjian102621/geekai.git
synced 2025-11-12 04:03:42 +08:00
11 lines
261 B
JavaScript
11 lines
261 B
JavaScript
// 正则校验工具函数
|
|
|
|
export function validateEmail(email) {
|
|
const regex = /^[^\s@]+@[^\s@]+\.[^\s@]+$/;
|
|
return regex.test(email);
|
|
}
|
|
|
|
export function validateMobile(mobile) {
|
|
const regex = /^1[3456789]\d{9}$/;
|
|
return regex.test(mobile);
|
|
} |