You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
which is the most important part of the stack.
In practice, this happens when require('package-name'); throws due to eg.: syntax error in the package's index.js file...
I see HERE that node-stack-trace always skips the first line of the call stack, why is that so?
Node version: 8.11.3
The text was updated successfully, but these errors were encountered:
The following pseudo code:
console.log(e.stack) prints:
console.log(stackTrace.parse(e)); prints:
Meaning, the parsed call stack doesn't include:
which is the most important part of the stack.
In practice, this happens when
require('package-name');
throws due to eg.: syntax error in the package'sindex.js
file...I see HERE that
node-stack-trace
always skips the first line of the call stack, why is that so?Node version:
8.11.3
The text was updated successfully, but these errors were encountered: