MCPcopy Create free account
hub / github.com/Gan-Xing/CodexBridge / rawString

Function rawString

packages/codex-native-api/src/native_api_server.ts:3032–3034  ·  view source on GitHub ↗
(value: unknown)

Source from the content-addressed store, hash-verified

3030}
3031
3032function rawString(value: unknown): string {
3033 return typeof value === 'string' ? value : '';
3034}
3035
3036function normalizeString(value: unknown): string {
3037 return typeof value === 'string' ? value.trim() : '';

Calls

no outgoing calls

Tested by

no test coverage detected