Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
atom / usr / share / atom / resources / app / apm / node_modules / es6-symbol / is-native-implemented.js
Size: Mime:
// Exports true if environment provides native `Symbol` implementation

'use strict';

module.exports = (function () {
	if (typeof Symbol !== 'function') return false;
	return (typeof Symbol.iterator === 'symbol');
}());