qauMaWeb/node_modules/core-js/es/object/to-string.js

10 lines
321 B
JavaScript
Raw Normal View History

2024-10-13 18:02:27 +08:00
require('../../modules/es.json.to-string-tag');
require('../../modules/es.math.to-string-tag');
require('../../modules/es.object.to-string');
require('../../modules/es.reflect.to-string-tag');
var classof = require('../../internals/classof');
module.exports = function (it) {
return '[object ' + classof(it) + ']';
};