feat: Only show existing data

This commit is contained in:
2025-01-09 19:26:33 +01:00
parent 0c94049e21
commit c6af3e8d04
3 changed files with 12 additions and 2 deletions

View File

@@ -0,0 +1,8 @@
function ifdef(variable, prefix = "", suffix = "") {
if (variable !== undefined) {
return prefix + variable + suffix;
} else {
return "";
}
}