1
0
mirror of https://github.com/duke-git/lancet.git synced 2026-02-10 07:42:27 +08:00

fix: fix go report validation issue

This commit is contained in:
dudaodong
2023-06-01 11:49:49 +08:00
parent b787e99528
commit 286a187942
2 changed files with 3 additions and 7 deletions

View File

@@ -112,7 +112,6 @@ func ContainLetter(str string) bool {
return letterRegexMatcher.MatchString(str)
}
// ContainLetter check if the string contain at least one number.
func ContainNumber(input string) bool {
return numberRegexMatcher.MatchString(input)