Constnium/node_modules/has-tostringtag/index.js
2022-06-23 02:27:43 +02:00

7 lines
169 B
JavaScript

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