Assert that input is an array of strings.
input
assertIsStringArray(['a', 'b']); // does not throwassertIsStringArray(['a', 42]); // throws TypeError: input is not an array of string Copy
assertIsStringArray(['a', 'b']); // does not throwassertIsStringArray(['a', 42]); // throws TypeError: input is not an array of string
Assert that
inputis an array of strings.