Files
core_ng/server/util/nl2br.ts
T
2023-08-05 12:12:18 +00:00

5 lines
89 B
TypeScript

export function nl2br(text: string): string {
return text.replace(/\n/g, "<br>");
}