JS Vérifiez si la fonction est un constructeur

function isConstructor(func) {
    return (func && typeof func === "function" && func.prototype && func.prototype.constructor) === func;
}
Long Lobster