mirror of
https://github.com/musix-org/musix-oss
synced 2024-11-13 02:20:18 +00:00
9 lines
270 B
JavaScript
9 lines
270 B
JavaScript
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) + ']';
|
|
};
|