1var toString = {}.toString; 2 3module.exports = function (it) { 4 return toString.call(it).slice(8, -1); 5}; 6