JS überprüfen, ob die Funktion ein Konstruktor ist

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