staticoso/Source/node_modules/has-tostringtag/index.js

8 lines
169 B
JavaScript

'use strict';
var hasSymbols = require('has-symbols');
module.exports = function hasToStringTag() {
return hasSymbols() && typeof Symbol.toStringTag === 'symbol';
};