Files
JiboSDK/node_modules/es6-symbol/is-native-implemented.js

9 lines
221 B
JavaScript
Raw Normal View History

2026-03-22 03:21:45 +02:00
// Exports true if environment provides native `Symbol` implementation
'use strict';
module.exports = (function () {
if (typeof Symbol !== 'function') return false;
return (typeof Symbol.iterator === 'symbol');
}());