我有一个需要 afunction
或Component
. 所以我想通过检查道具的类型来区分它是组件还是函数。我目前正在使用以下一个。当代码被混淆时,这可能在 prod 中不起作用。想知道更好的解决方案吗?
let isSvelteComponent = component => {
return (
typeof component !== "undefined" &&
component.__proto__.name === "SvelteComponentDev"
);
};