Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Let the code work on classes as well #14

Open
perdevpernull opened this issue Aug 2, 2023 · 0 comments
Open

Let the code work on classes as well #14

perdevpernull opened this issue Aug 2, 2023 · 0 comments

Comments

@perdevpernull
Copy link

perdevpernull commented Aug 2, 2023

I suggest changing line 31
'- var prototype = Object.getPrototypeOf(object)

'+ var prototype;
switch (typeof object) {
case 'function': // class
prototype = object.prototype;
break;
case 'object': // instance of a class
prototype = Object.getPrototypeOf(object);
break;
default:
throw new Error('The argument has to be a class or an instance of a class.');
}

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant