8000
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 df5d38f commit 280acd5Copy full SHA for 280acd5
error-stack-parser.js
@@ -62,7 +62,7 @@
62
63
// capture and preseve the parenthesized location "(/foo/my bar.js:12:87)" in
64
// case it has spaces in it, as the string is split on \s+ later on
65
- var location = sanitizedLine.match(/ (\((.+):(\d+):(\d+)\)$)/);
+ var location = sanitizedLine.match(/ (\(.+\)$)/);
66
67
// remove the parenthesized location from the line, if it was matched
68
sanitizedLine = location ? sanitizedLine.replace(location[0], '') : sanitizedLine;
0 commit comments