go-rfc2396/digit/byte.go

6 lines
85 B
Go

package digit
func ByteIs(value byte) bool {
return '0' <= value && value <= '9'
}