fix operator
This commit is contained in:
parent
d466e05eda
commit
a7a630bfd0
1 changed files with 1 additions and 1 deletions
|
@ -102,7 +102,7 @@ function theRuleBody(context,node) {
|
||||||
// sometimes we get MemberExpression nodes that have a
|
// sometimes we get MemberExpression nodes that have a
|
||||||
// *descendent* with the right identifier: skip them, we'll get
|
// *descendent* with the right identifier: skip them, we'll get
|
||||||
// the right ones as well
|
// the right ones as well
|
||||||
if (node.object?.name != 'i18n') {
|
if (node.object?.name !== 'i18n') {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue