remove dynamic equality

This commit is contained in:
2025-06-16 13:48:09 -05:00
parent 9c0565d34f
commit 794baf8598
70 changed files with 462 additions and 461 deletions

View File

@@ -1,7 +1,7 @@
// Test module - should NOT have access to $_
function test() {
if (typeof $_ !== 'undefined') {
if (typeof $_ != 'undefined') {
log.error("✗ Module incorrectly has access to $_!");
return "ERROR: Module has $_ access";
} else {