MCPcopy Create free account
hub / github.com/UsefulSoftwareCo/executor / xmlUnescape

Function xmlUnescape

apps/cli/src/service.ts:147–153  ·  view source on GitHub ↗
(value: string)

Source from the content-addressed store, hash-verified

145 .replaceAll("'", "'");
146
147const xmlUnescape = (value: string): string =>
148 value
149 .replaceAll("'", "'")
150 .replaceAll(""", '"')
151 .replaceAll(">", ">")
152 .replaceAll("&lt;", "<")
153 .replaceAll("&amp;", "&");
154
155// ---------------------------------------------------------------------------
156// Shared service environment + program args

Callers 1

readBundleIdentifierFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected