| [ Web Proxy ] |
| Viewing: https://raw.githubusercontent.com/argszero/opencode/dev/packages/opencode/src/util/html.ts | [Back] [Original] |
export function escapeHtml(value: string) {
return value
.replaceAll("&", "&")
.replaceAll("", ">")
.replaceAll('"', """)
.replaceAll("'", "'")
}
| Web Proxy Viewer | New URL | Original Page |