mirror of
https://github.com/rjNemo/federation
synced 2026-06-10 12:06:40 +00:00
5 lines
106 B
JavaScript
5 lines
106 B
JavaScript
var toString = {}.toString;
|
|
|
|
module.exports = function (it) {
|
|
return toString.call(it).slice(8, -1);
|
|
};
|