📅  最后修改于: 2022-03-11 15:01:12.100000             🧑  作者: Mango
function isConstructor(func) {
return (func && typeof func === "function" && func.prototype && func.prototype.constructor) === func;
}