projecte_ionic/node_modules/core-js/internals/to-string-tag-support.js
2022-02-09 18:30:03 +01:00

9 lines
210 B
JavaScript
Executable file

var wellKnownSymbol = require('../internals/well-known-symbol');
var TO_STRING_TAG = wellKnownSymbol('toStringTag');
var test = {};
test[TO_STRING_TAG] = 'z';
module.exports = String(test) === '[object z]';