Files
w4rpservices/node_modules/es6-symbol/is-native-implemented.js
2018-10-27 03:51:47 -05:00

6 lines
166 B
JavaScript
Vendored

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