检查给定的参数是否是一个 symbol。
使用 typeof 来检查一个值是否为一个 symbol 。
typeof
const isSymbol = val => typeof val === 'symbol';
isSymbol(Symbol('x')); // true