is-native-implemented.js 221 B

12345678
  1. // Exports true if environment provides native `Symbol` implementation
  2. 'use strict';
  3. module.exports = (function () {
  4. if (typeof Symbol !== 'function') return false;
  5. return (typeof Symbol.iterator === 'symbol');
  6. }());