feat: Only show existing data
This commit is contained in:
@@ -0,0 +1,8 @@
|
||||
function ifdef(variable, prefix = "", suffix = "") {
|
||||
if (variable !== undefined) {
|
||||
return prefix + variable + suffix;
|
||||
} else {
|
||||
return "";
|
||||
}
|
||||
|
||||
}
|
Reference in New Issue
Block a user