gitfoss-fork-fork | b6b0778009540e97c2e4eb6969a6187fe9f4eec9 | 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;");
}