refactor(language-service): use strict comparisons (#33114)

PR Close #33114
This commit is contained in:
ayazhafiz
2019-10-11 15:36:42 -05:00
committed by Matias Niemelä
parent 9e7668f16b
commit d2222541e8
3 changed files with 10 additions and 10 deletions

View File

@ -399,7 +399,7 @@ export class SchemaInformation {
}
}
properties.forEach((property: string) => {
if (property == '') {
if (property === '') {
} else if (property.startsWith('*')) {
type[property.substring(1)] = EVENT;
} else if (property.startsWith('!')) {