blob: 5f073a19cab7c8763da72909b0ab2782e7adf09c (
plain)
1
2
3
4
5
6
7
8
|
// Exports true if environment provides native `Symbol` implementation
'use strict';
module.exports = (function () {
if (typeof Symbol !== 'function') return false;
return (typeof Symbol() === 'symbol');
}());
|