is-native-implemented.js 214 Bytes Edit Raw Blame History 1 2 3 4 5 6 7 8 // Exports true if environment provides native `Symbol` implementation 'use strict'; module.exports = (function () { if (typeof Symbol !== 'function') return false; return (typeof Symbol() === 'symbol'); }());