MCPcopy
hub / github.com/openclaw/clawsweeper / stringFromUnknown

Function stringFromUnknown

src/repair/apply-result.ts:1653–1655  ·  view source on GitHub ↗
(value: JsonValue)

Source from the content-addressed store, hash-verified

1651}
1652
1653function stringFromUnknown(value: JsonValue) {
1654 return typeof value === "string" ? value : "";
1655}
1656
1657function stringOrNull(value: JsonValue) {
1658 return typeof value === "string" && value.trim() ? value : null;

Calls

no outgoing calls

Tested by

no test coverage detected