We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1d31662 commit 4bb8be9Copy full SHA for 4bb8be9
packages/browser/src/integrations/helpers.ts
@@ -66,7 +66,7 @@ export function wrap(
66
// NOTE: If you are a Sentry user, and you are seeing this stack frame, it
67
// means Raven caught an error invoking your application code. This is
68
// expected behavior and NOT indicative of a bug with Raven.js.
69
- const wrappedArguments = Array.from(arguments).map(arg => wrap(arg, options));
+ const wrappedArguments = Array.prototype.slice.call(arguments).map((arg: any) => wrap(arg, options));
70
71
if (fn.handleEvent) {
72
return fn.handleEvent.apply(this, wrappedArguments);
0 commit comments