MCPcopy Create free account
hub / github.com/bearlyai/OpenADE / optionalString

Function optionalString

projects/openade-module/src/yjsProjection.ts:42–44  ·  view source on GitHub ↗
(value: unknown)

Source from the content-addressed store, hash-verified

40}
41
42function optionalString(value: unknown): string | undefined {
43 return typeof value === "string" ? value : undefined
44}
45
46function optionalBoolean(value: unknown): boolean | undefined {
47 return typeof value === "boolean" ? value : undefined

Callers 2

toOpenADETaskPreviewFunction · 0.70
readTaskFunction · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected