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