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