github-pages-deploy-action/node_modules/core-js-pure/es/object/to-string.js

9 lines
270 B
JavaScript
Raw Normal View History

2020-03-07 11:45:40 +08:00
require('../../modules/es.object.to-string');
require('../../modules/es.math.to-string-tag');
require('../../modules/es.json.to-string-tag');
var classof = require('../../internals/classof');
module.exports = function (it) {
return '[object ' + classof(it) + ']';
};