is-native-implemented.js 166 Bytes Raw Blame History Permalink 1 2 3 4 5 // Exports true if environment provides native `Symbol` implementation 'use strict'; module.exports = typeof Symbol === 'function' && typeof Symbol() === 'symbol';