The value to check.
A boolean indicating whether the provided value is a valid number.
This function checks if the provided value is a finite number and not NaN.
isValidNumber(123);
//=> true
isValidNumber(NaN);
//=> false
isValidNumber(Infinity);
//=> false
Generated using TypeDoc
Checks if the provided value is a valid number.