We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 57d3223 commit 3fb1e0bCopy full SHA for 3fb1e0b
packages/integrations/rollup.config.js
@@ -43,7 +43,11 @@ function mergeIntoSentry() {
43
return `
44
__window.Sentry = __window.Sentry || {};
45
__window.Sentry.Integrations = __window.Sentry.Integrations || {};
46
- Object.assign(__window.Sentry.Integrations, exports);
+ for (var key in exports) {
47
+ if (Object.prototype.hasOwnProperty.call(exports, key)) {
48
+ __window.Sentry.Integrations[key] = exports[key];
49
+ }
50
51
`;
52
}
53
0 commit comments