новенькое

This commit is contained in:
Igor I
2024-10-21 16:31:14 +05:00
parent afbf168bd8
commit 6155890816
3 changed files with 17 additions and 6 deletions

View File

@ -21,7 +21,10 @@ function trt(key)
}
}
}
if(val==null || val===undefined) return (''+key).replace(/_/g, ' ');
if(val==null || val===undefined) {
return ('' + key).replace(/_/g, ' ');
}
else return val;
}