MCPcopy Create free account
hub / github.com/zxlie/FeHelper / htmlspecialchars

Function htmlspecialchars

apps/json-format/json-utils.js:8–15  ·  view source on GitHub ↗
(str)

Source from the content-addressed store, hash-verified

6
7// ─── HTML 转义 ──────────────────────────────────────────────
8export function htmlspecialchars(str) {
9 return str
10 .replace(/&/g, '&')
11 .replace(/</g, '&lt;')
12 .replace(/>/g, '&gt;')
13 .replace(/"/g, '&quot;')
14 .replace(/'/g, '&#039;');
15}
16
17// ─── URL 检测 ───────────────────────────────────────────────
18export function isUrl(str) {

Callers 2

json-utils.test.jsFile · 0.90
createSafeToastHTMLFunction · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected