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

Function isRawNode

apps/sim/lib/table/__tests__/sql.test.ts:39–41  ·  view source on GitHub ↗
(n: unknown)

Source from the content-addressed store, hash-verified

37}
38
39function isRawNode(n: unknown): n is { rawSql: string } {
40 return typeof n === 'object' && n !== null && 'rawSql' in n
41}
42
43function isJoinNode(n: unknown): n is { fragments: unknown[]; separator: unknown } {
44 return (

Callers 1

renderSqlFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected