projects
/
platform
/
framework
/
web
/
crosswalk-tizen.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
a8cb8b8681ee691b0e02e761d7dd72d27087b8db
[platform/framework/web/crosswalk-tizen.git]
/
1
// Exports true if environment provides native `Symbol` implementation
2
3
'use strict';
4
5
module.exports = (function () {
6
if (typeof Symbol !== 'function') return false;
7
return (typeof Symbol.iterator === 'symbol');
8
}());