This commit is contained in:
2026-04-16 16:25:16 +08:00
parent aedab4b0ee
commit 88c080889e
4165 changed files with 926326 additions and 0 deletions
+10
View File
@@ -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");
}