Assert that input is an array of booleans.
input
assertIsBooleanArray([true, false]); // does not throwassertIsBooleanArray([true, 'false']); // throws TypeError: input is not an array of boolean Copy
assertIsBooleanArray([true, false]); // does not throwassertIsBooleanArray([true, 'false']); // throws TypeError: input is not an array of boolean
Assert that
inputis an array of booleans.