The string to be checked.
A boolean indicating whether the string is numeric or not.
This function will return true if the string can be converted to a finite number, false otherwise.
isNumericString("123");;
//=> true
isNumericString("abc");;
//=> false
Generated using TypeDoc
Checks if a given string is numeric.