fix operator

This commit is contained in:
dakkar 2024-10-17 17:02:12 +01:00
parent d466e05eda
commit a7a630bfd0

View file

@ -102,7 +102,7 @@ function theRuleBody(context,node) {
// sometimes we get MemberExpression nodes that have a
// *descendent* with the right identifier: skip them, we'll get
// the right ones as well
if (node.object?.name != 'i18n') {
if (node.object?.name !== 'i18n') {
return;
}