in internal/lib/strings.go [4:11]
func IsNumber(str string) bool { for _, r := range str { if r < '0' || r > '9' { return false } } return true }