Assert that input is a string representing an integer.
input
assertIsIntString('42'); // does not throwassertIsIntString('42.5'); // throws TypeError: input is not an integer string Copy
assertIsIntString('42'); // does not throwassertIsIntString('42.5'); // throws TypeError: input is not an integer string
Assert that
inputis a string representing an integer.