We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
I'm currently trying to normalize stack frame function names across javascript engines, by building on top of this library.
Anonymous functions from IE stack frames are filtered out, and the functionName property on the StackFrame object is set to undefined in https://github.com/stacktracejs/error-stack-parser/blob/master/error-stack-parser.js#L65
functionName
StackFrame
Knowing that a given function is anonymous is valuable information and shouldn't be filtered out.
Current output:
{ fileName: 'http://localhost:8080/test.html', lineNumber: 20, columnNumber: 9, source: ' at Anonymous function (http://localhost:8080/test.html:20:9)' },
Expect output:
{ functionName: 'Anonymous function', fileName: 'http://localhost:8080/test.html', lineNumber: 20, columnNumber: 9, source: ' at Anonymous function (http://localhost:8080/test.html:20:9)' },
I'm currently trying to normalize stack frame function names across javascript engines, by building on top of this library.
Anonymous functions from IE stack frames are filtered out, and the
functionNameproperty on theStackFrameobject is set to undefined in https://github.com/stacktracejs/error-stack-parser/blob/master/error-stack-parser.js#L65Knowing that a given function is anonymous is valuable information and shouldn't be filtered out.
Current output:
Expect output: