to-string.js 270 B

12345678
  1. require('../../modules/es.object.to-string');
  2. require('../../modules/es.math.to-string-tag');
  3. require('../../modules/es.json.to-string-tag');
  4. var classof = require('../../internals/classof');
  5. module.exports = function (it) {
  6. return '[object ' + classof(it) + ']';
  7. };