remove undefined; only use null now

This commit is contained in:
2025-06-17 14:32:27 -05:00
parent 3459d85a82
commit c9adbed3ff
85 changed files with 1132 additions and 1232 deletions

View File

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