Validation API
isSymbol()
Validates that the passed arguments are of type Symbol.
- Accepts any arguments.
- Returns true if all provided arguments pass the validation, otherwise, returns false.
Example:
isSymbol(Symbol('one'));
isSymbol(Symbol.iterator, Symbol('two'));
// true
isSymbol(null);
isSymbol('symbol');
isSymbol(Symbol('one'), {});
// false