|
@@ -25,7 +25,8 @@ class CallbacksRegistry {
|
|
|
|
|
|
while ((match = regexp.exec(stackString)) !== null) {
|
|
|
const location = match[1]
|
|
|
- if (location.includes('native')) continue
|
|
|
+ if (location.includes('(native)')) continue
|
|
|
+ if (location.includes('(<anonymous>)')) continue
|
|
|
if (location.includes('electron.asar')) continue
|
|
|
|
|
|
const ref = /([^/^)]*)\)?$/gi.exec(location)
|