Skip to content

Commit 1632a19

Browse files
committed
chore: fix lint error in channel.ts
1 parent 4d3d1b8 commit 1632a19

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/vscode/src/vs/server/node/channel.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -907,5 +907,5 @@ function transformIncoming(remoteAuthority: string, uri: UriComponents | undefin
907907
}
908908

909909
function isDefined<T>(t: T | undefined): t is T {
910-
return typeof t !== "undefined";
910+
return typeof t !== 'undefined';
911911
}

0 commit comments

Comments
 (0)