.gitignore added
[dotfiles/.git] / .config / coc / extensions / node_modules / coc-prettier / node_modules / core-js / internals / to-string-tag-support.js
1 var wellKnownSymbol = require('../internals/well-known-symbol');
2
3 var TO_STRING_TAG = wellKnownSymbol('toStringTag');
4 var test = {};
5
6 test[TO_STRING_TAG] = 'z';
7
8 module.exports = String(test) === '[object z]';