@@ -38,6 +38,10 @@ func isNumber(v any) (ok bool) {
return isFloat(v) || isInteger(v)
}
func isNumOrFract(v any) (ok bool) {
return isFloat(v) || isInteger(v) || isFraction(v)
func isNumberString(v any) (ok bool) {
return isString(v) || isNumber(v)
The note is not visible to the blocked user.