go-rfc3986/digit.go

10 lines
118 B
Go
Raw Normal View History

2024-08-24 15:53:20 +00:00
package rfc3986
import (
"github.com/reiver/go-rfc2234"
)
func IsDigit(r rune) bool {
return rfc2234.IsDigit(r)
}