Assert that input is a string representing a numeric value.
input
assertIsNumericString('3.14'); // does not throwassertIsNumericString('abc'); // throws TypeError: input is not a numeric string Copy
assertIsNumericString('3.14'); // does not throwassertIsNumericString('abc'); // throws TypeError: input is not a numeric string
Assert that
inputis a string representing a numeric value.