mirror of
https://github.com/TryGhost/Ghost.git
synced 2025-04-01 02:41:39 -05:00
Fixed lint
no issue - Fixed useless-escape in validator email regex
This commit is contained in:
parent
c2d52681ed
commit
f47cacd299
1 changed files with 1 additions and 1 deletions
|
@ -1,4 +1,4 @@
|
|||
export const isValidEmail = (email) => {
|
||||
const re = /^[a-zA-Z0-9.!#$%&'*+\/=?^_`{|}~-]+@[a-zA-Z0-9](?:[a-zA-Z0-9-]{0,61}[a-zA-Z0-9])?(?:\.[a-zA-Z0-9](?:[a-zA-Z0-9-]{0,61}[a-zA-Z0-9])?)*$/;
|
||||
const re = /^[a-zA-Z0-9.!#$%&'*+/=?^_`{|}~-]+@[a-zA-Z0-9](?:[a-zA-Z0-9-]{0,61}[a-zA-Z0-9])?(?:\.[a-zA-Z0-9](?:[a-zA-Z0-9-]{0,61}[a-zA-Z0-9])?)*$/;
|
||||
return !!email && re.test(String(email).toLowerCase());
|
||||
};
|
||||
|
|
Loading…
Add table
Reference in a new issue