Files
2023-07-12 16:31:19 +01:00

6 lines
166 B
JavaScript
Executable File

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