1
0
mirror of https://git.boykissers.com/pawkey/pawkey-sk.git synced 2025-12-20 04:04:16 +00:00

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;
}