BlakeGuilloud / ganon

A javascript library
MIT License
92 stars 197 forks source link

Implement isSymbol function #780

Closed al3rez closed 6 years ago

al3rez commented 6 years ago

How? Identify symbols using typeof operator. for example;

typeof Symbol() === 'symbol'
typeof Symbol('foo') === 'symbol'
typeof Symbol.iterator === 'symbol'

https://goo.gl/qkq2Rq

Closes #762