package util

import "unicode"

func IsDigit(ch rune) bool {
	return unicode.IsDigit(ch)
}
