Skip to content

Commit 2aa255d

Browse files
committed
Less lazy
1 parent 3817ae7 commit 2aa255d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/core/src/utils/node-stack-trace.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ export function filenameIsInApp(filename: string, isNative: boolean = false): bo
5353
export function node(getModule?: GetModuleFn): StackLineParserFn {
5454
const FILENAME_MATCH = /^\s*[-]{4,}$/;
5555
const FULL_MATCH = /at (?:async )?(?:(.+?)\s+\()?(?:(.+):(\d+):(\d+)?|([^)]+))\)?/;
56-
const DATA_URI_MATCH = /at (?:async )?(.+?) \(data:(.+),/;
56+
const DATA_URI_MATCH = /at (?:async )?(.+?) \(data:(.+?),/;
5757

5858
// eslint-disable-next-line complexity
5959
return (line: string) => {

0 commit comments

Comments
 (0)