blob: a8cb8b8681ee691b0e02e761d7dd72d27087b8db [file] [log] [blame]
// Exports true if environment provides native `Symbol` implementation
'use strict';
module.exports = (function () {
if (typeof Symbol !== 'function') return false;
return (typeof Symbol.iterator === 'symbol');
}());