File tree 2 files changed +4
-4
lines changed
2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 1
1
module github.com/smartystreets/redact
2
2
3
- go 1.17
3
+ go 1.21
Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ type Redactor struct {
11
11
maxLength int
12
12
}
13
13
14
- ////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
14
+ // //////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
15
15
type phoneRedaction struct {
16
16
* matched
17
17
start int
@@ -49,12 +49,12 @@ type emailRedaction struct {
49
49
length int
50
50
}
51
51
52
- ////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
52
+ // //////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
53
53
func isNumeric (value byte ) bool {
54
54
return value >= '0' && value <= '9'
55
55
}
56
56
57
- ////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
57
+ // //////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
58
58
const (
59
59
MaxEmailLength = 254
60
60
You can’t perform that action at this time.
0 commit comments