isSymbol.js 92 B

12345
  1. exports = function(val) {
  2. return typeof val === 'symbol';
  3. };
  4. module.exports = exports;