e4.0.0 Refactored, file watcher and improved builder, doc update
This commit is contained in:
12
helper.go
12
helper.go
@ -85,16 +85,4 @@ func isValidKeySegment(s string) bool {
|
||||
}
|
||||
}
|
||||
return true
|
||||
}
|
||||
|
||||
// isAlpha checks if a character is a letter (A-Z, a-z)
|
||||
// Note: not used, potential future use.
|
||||
func isAlpha(c rune) bool {
|
||||
return (c >= 'a' && c <= 'z') || (c >= 'A' && c <= 'Z')
|
||||
}
|
||||
|
||||
// isNumeric checks if a character is a digit (0-9)
|
||||
// Note: not used, potential future use.
|
||||
func isNumeric(c rune) bool {
|
||||
return c >= '0' && c <= '9'
|
||||
}
|
||||
Reference in New Issue
Block a user