6 lines
106 B
JavaScript
Raw Normal View History

2021-02-11 21:31:41 +08:00
var toString = {}.toString;
module.exports = function (it) {
return toString.call(it).slice(8, -1);
};