4 lines
65 B
JavaScript
4 lines
65 B
JavaScript
|
exports.print = function(obj) {
|
||
|
return obj.constructor.name;
|
||
|
}
|