-
-
Notifications
You must be signed in to change notification settings - Fork 2.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(isFQDN): fix tld validation (#1091)
* feat(isFQDN): fix tld validation * feat(isFQDN): fix tld validation * fix: combine two instruction into one * fix: run testing commands Co-authored-by: Amine <[email protected]>
- Loading branch information
1 parent
4db2711
commit 2a3ad84
Showing
5 changed files
with
12 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -113,6 +113,8 @@ describe('Validators', () => { | |
'[email protected]', | ||
'wrong()[]",:;<>@@gmail.com', | ||
'"wrong()[]",:;<>@@gmail.com', | ||
'[email protected]�', | ||
'[email protected]©', | ||
], | ||
}); | ||
}); | ||
|
@@ -829,6 +831,8 @@ describe('Validators', () => { | |
's!ome.com', | ||
'domain.com/', | ||
'/more.com', | ||
'domain.com�', | ||
'domain.com©', | ||
], | ||
}); | ||
}); | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters