Assert that input is a string that contains digits only.
input
assertIsDigitsString('12345'); // does not throwassertIsDigitsString('123.45'); // throws TypeError: input is not a string of integers only Copy
assertIsDigitsString('12345'); // does not throwassertIsDigitsString('123.45'); // throws TypeError: input is not a string of integers only
Assert that
inputis a string that contains digits only.