Files
alfresco-ng2-components/ng2-components/ng2-alfresco-documentslist/dist/node_modules/es6-symbol/is-native-implemented.js
Mario Romano 07807e7bc3 # add dist
2016-04-21 11:56:31 +01:00

9 lines
221 B
JavaScript

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