JS Verifique se a função é um construtor
function isConstructor(func) {
return (func && typeof func === "function" && func.prototype && func.prototype.constructor) === func;
}
Long Lobster