We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 877d39e commit 24687ecCopy full SHA for 24687ec
error-stack-parser.js
@@ -28,7 +28,7 @@
28
return this.parseOpera(error);
29
} else if (error.stack && error.stack.match(CHROME_IE_STACK_REGEXP)) {
30
return this.parseV8OrIE(error);
31
- } else if (error.stack && error.stack.match(FIREFOX_SAFARI_STACK_REGEXP)) {
+ } else if (error.stack) {
32
return this.parseFFOrSafari(error);
33
} else {
34
throw new Error('Cannot parse given Error object');
0 commit comments