gitfoss-fork | 78652eda9c628558d7bdff02857604aba4f83a0e | app/utils/shared/escapeHtmlCode.ts ∙ GitFOSS
.ts
TypeScript
(application/typescript)
export function escapeHtmlCode(text: string): string {
  return (text || "")
    .split(/&/gm)
    .join("&")
    .split(/</gm)
    .join("&lt;")
    .split(/>/gm)
    .join("&gt;");
}