Constnium/node_modules/has-tostringtag/index.js

8 lines
169 B
JavaScript
Raw Normal View History

2022-06-23 02:27:43 +02:00
'use strict';
var hasSymbols = require('has-symbols');
module.exports = function hasToStringTag() {
return hasSymbols() && typeof Symbol.toStringTag === 'symbol';
};