We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3fe0699 commit 64531f5Copy full SHA for 64531f5
1 file changed
extensions/ql-vscode/src/pure/errors.ts
@@ -79,7 +79,7 @@ export interface ErrorLike {
79
function isErrorLike(error: any): error is ErrorLike {
80
if (
81
typeof error.message === "string" &&
82
- (typeof error.stack === "undefined" || typeof error.stack === "string")
+ (error.stack === undefined || typeof error.stack === "string")
83
) {
84
return true;
85
}
0 commit comments