]> git.r.bdr.sh - rbdr/dotfiles/blob
a8cb8b8681ee691b0e02e761d7dd72d27087b8db
[rbdr/dotfiles] /
1 // Exports true if environment provides native `Symbol` implementation
2
3 'use strict';
4
5 module.exports = (function () {
6 if (typeof Symbol !== 'function') return false;
7 return (typeof Symbol.iterator === 'symbol');
8 }());