function isClasslike()

in lib/index.ts [119:121]


function isClasslike(obj: { prototype: any }): boolean {
    return !!(obj.prototype && Object.getOwnPropertyNames(obj.prototype).length > 1);
}