Vendored
+6
@@ -0,0 +1,6 @@
|
||||
|
||||
//判断字符串是否为邮箱
|
||||
function isValidEmail(email) {
|
||||
const regex = /^[a-zA-Z0-9._%+-]+@[a-zA-Z0-9.-]+\.[a-zA-Z]{2,}$/;
|
||||
return regex.test(email);
|
||||
}
|
||||
Reference in New Issue
Block a user