Skip to content

Commit

Permalink
fix #66478
Browse files Browse the repository at this point in the history
  • Loading branch information
jrieken committed Jan 15, 2019
1 parent 26cca95 commit f2e2024
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/vs/base/common/uri.ts
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,10 @@ export class URI implements UriComponents {
&& typeof (<URI>thing).fragment === 'string'
&& typeof (<URI>thing).path === 'string'
&& typeof (<URI>thing).query === 'string'
&& typeof (<URI>thing).scheme === 'string';
&& typeof (<URI>thing).scheme === 'string'
&& typeof (<URI>thing).fsPath === 'function'
&& typeof (<URI>thing).with === 'function'
&& typeof (<URI>thing).toString === 'function';
}

/**
Expand Down

0 comments on commit f2e2024

Please sign in to comment.