error: string|Error = 'input is not an array of symbol'
Returns assertsinputissymbol[]
Example
assertIsSymbolArray([Symbol('a'), Symbol('b')]); // does not throw assertIsSymbolArray([Symbol('a'), 'b']); // throws TypeError: input is not an array of symbol
Assert that
inputis an array of symbols.