Files
2019-01-25 17:01:52 +08:00

6 lines
166 B
JavaScript

// Exports true if environment provides native `Symbol` implementation
'use strict';
module.exports = typeof Symbol === 'function' && typeof Symbol() === 'symbol';