-
Notifications
You must be signed in to change notification settings - Fork 0
/
ascii.go
37 lines (29 loc) · 809 Bytes
/
ascii.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
package checker
import (
"reflect"
"unicode"
)
// CheckerASCII is the name of the checker.
const CheckerASCII = "ascii"
// ResultNotASCII indicates that the given string contains non-ASCII characters.
const ResultNotASCII = "NOT_ASCII"
// IsASCII checks if the given string consists of only ASCII characters.
func IsASCII(value string) Result {
for _, c := range value {
if c > unicode.MaxASCII {
return ResultNotASCII
}
}
return ResultValid
}
// makeASCII makes a checker function for the ASCII checker.
func makeASCII(_ string) CheckFunc {
return checkASCII
}
// checkASCII checks if the given string consists of only ASCII characters.
func checkASCII(value, _ reflect.Value) Result {
if value.Kind() != reflect.String {
panic("string expected")
}
return IsASCII(value.String())
}