-
Notifications
You must be signed in to change notification settings - Fork 432
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
fix: browser compatibility issues #319
Conversation
src/component.ts
Outdated
'prototype': true, | ||
'arguments': true, | ||
'callee': true, | ||
'caller': true |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Can we remove the quotes?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Sure, quotes are removed, thank you for your kind advice!
src/component.ts
Outdated
@@ -117,7 +124,7 @@ function forwardStaticMembers ( | |||
// We have to use getOwnPropertyNames since Babel registers methods as non-enumerable | |||
Object.getOwnPropertyNames(Original).forEach(key => { | |||
// `prototype` should not be overwritten |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Let's update this comment 🙂
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Done, thank you 🙂
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks!
No description provided.