fix: resolve ts build errors
This commit is contained in:
@@ -30,6 +30,6 @@ export function applyTemplate(str: string | undefined, ctx: TemplateContext) {
|
||||
if (!str) return "";
|
||||
return str.replace(/{{\s*(\w+)\s*}}/g, (_, key) => {
|
||||
const value = ctx[key as keyof TemplateContext];
|
||||
return value ?? "";
|
||||
return value == null ? "" : String(value);
|
||||
});
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user