mirror of https://github.com/lukechilds/node.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
599 B
19 lines
599 B
10 years ago
|
'use strict';
|
||
|
|
||
|
module.exports = function () {
|
||
|
var symbol;
|
||
|
if (typeof Symbol !== 'function') return false;
|
||
|
symbol = Symbol('test symbol');
|
||
|
try { String(symbol); } catch (e) { return false; }
|
||
|
if (typeof Symbol.iterator === 'symbol') return true;
|
||
|
|
||
|
// Return 'true' for polyfills
|
||
|
if (typeof Symbol.isConcatSpreadable !== 'object') return false;
|
||
|
if (typeof Symbol.iterator !== 'object') return false;
|
||
|
if (typeof Symbol.toPrimitive !== 'object') return false;
|
||
|
if (typeof Symbol.toStringTag !== 'object') return false;
|
||
|
if (typeof Symbol.unscopables !== 'object') return false;
|
||
|
|
||
|
return true;
|
||
|
};
|