refactor(language-service): use strict comparisons (#33114)
PR Close #33114
This commit is contained in:

committed by
Matias Niemelä

parent
9e7668f16b
commit
d2222541e8
@ -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('!')) {
|
||||
|
Reference in New Issue
Block a user