Checks if t is not a number or within specified range.
Returns [false, reason:string] if invalid or [true] if valid.
Use throwNumberTest to throw an error rather than return result.
Alternatives: integerTest for additional integer check, percentTest for percentage-range.
(empty, default): must be a number type and not NaN.
finite: must be a number, not NaN and not infinite
Checks if
t
is not a number or within specified range. Returns[false, reason:string]
if invalid or[true]
if valid. Use throwNumberTest to throw an error rather than return result.Alternatives: integerTest for additional integer check, percentTest for percentage-range.