Assert that input is a string.
input
assertIsString('hello'); // does not throwassertIsString(42); // throws TypeError: input is not a string Copy
assertIsString('hello'); // does not throwassertIsString(42); // throws TypeError: input is not a string
Assert that
inputis a string.