Repository URL to install this package:
Version:
1.16.0 ▾
|
atom
/
usr
/
share
/
atom
/
resources
/
app
/
apm
/
node_modules
/
es6-symbol
/
is-native-implemented.js
|
---|
// Exports true if environment provides native `Symbol` implementation
'use strict';
module.exports = (function () {
if (typeof Symbol !== 'function') return false;
return (typeof Symbol.iterator === 'symbol');
}());