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

refactor(integrations): extraerrordata #4024

Merged
merged 1 commit into from
Oct 4, 2021

Conversation

naseemkullah
Copy link
Contributor

just 4 fun

@naseemkullah naseemkullah changed the title refactor extraerrorata refactor(integrations): extraerrorata Oct 1, 2021
// We are trying to enhance already existing event, so no harm done if it won't succeed
try {
const nativeKeys = ['name', 'message', 'stack', 'line', 'column', 'fileName', 'lineNumber', 'columnNumber'];
const errorKeys = Object.getOwnPropertyNames(error).filter(key => nativeKeys.indexOf(key) === -1);
const errorKeys = Object.getOwnPropertyNames(error).filter(key => !nativeKeys.includes(key));
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Think we can’t use .includes because of IE, but might be taken care of when transpiled to the es5 bundle. @kamilogorek can you confirm?

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Exactly, we cannot. It's not transpiled, so we'd end up with requiring people to add polyfills for it.

@naseemkullah naseemkullah changed the title refactor(integrations): extraerrorata refactor(integrations): extraerrordata Oct 1, 2021
@kamilogorek kamilogorek merged commit d1c471f into getsentry:master Oct 4, 2021
@naseemkullah naseemkullah deleted the refactor-extraerrordata branch October 4, 2021 12:22
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

Successfully merging this pull request may close these issues.

None yet

3 participants