JS Sprawdź, czy funkcja jest konstruktorem

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