MCPcopy Index your code
hub / github.com/simstudioai/sim / isNullableString

Function isNullableString

apps/sim/hooks/queries/mothership-chats.ts:73–75  ·  view source on GitHub ↗
(value: unknown)

Source from the content-addressed store, hash-verified

71}
72
73function isNullableString(value: unknown): value is string | null {
74 return value === null || typeof value === 'string'
75}
76
77function isResourceType(value: unknown): value is MothershipResource['type'] {
78 return (

Callers 1

parseChatHistoryFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected