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