-
Notifications
You must be signed in to change notification settings - Fork 1.4k
Closed
Labels
bugcurrent functionality does not work as desiredcurrent functionality does not work as desiredhelp wanted
Milestone
Description
The line at
Line 31 in e9a69dc
| if (callSite.file === normalizedFile) { |
should be changed to
if (callsite && callSite.file === normalizedFile) {since the previous line
const callSite = stackUtils.parseLine(line);may, and sometimes does, initialize callSite to null. Once this is fixed, if the catch at
Line 39 in e9a69dc
| } catch {} |
was there only because of this one error, then this do-nothing catch should be removed.
Metadata
Metadata
Assignees
Labels
bugcurrent functionality does not work as desiredcurrent functionality does not work as desiredhelp wanted