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 3817ae7 commit 2aa255dCopy full SHA for 2aa255d
packages/core/src/utils/node-stack-trace.ts
@@ -53,7 +53,7 @@ export function filenameIsInApp(filename: string, isNative: boolean = false): bo
53
export function node(getModule?: GetModuleFn): StackLineParserFn {
54
const FILENAME_MATCH = /^\s*[-]{4,}$/;
55
const FULL_MATCH = /at (?:async )?(?:(.+?)\s+\()?(?:(.+):(\d+):(\d+)?|([^)]+))\)?/;
56
- const DATA_URI_MATCH = /at (?:async )?(.+?) \(data:(.+),/;
+ const DATA_URI_MATCH = /at (?:async )?(.+?) \(data:(.+?),/;
57
58
// eslint-disable-next-line complexity
59
return (line: string) => {
0 commit comments