mirror of
https://github.com/Alfresco/alfresco-ng2-components.git
synced 2025-07-24 17:32:15 +00:00
9 lines
221 B
JavaScript
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');
|
|
}());
|