(schema: unknown)
| 13 | |
| 14 | /** Check if a schema was marked reactive. Used by Zod introspection for $binding<> prefix. */ |
| 15 | export function isReactiveSchema(schema: unknown): boolean { |
| 16 | return typeof schema === "object" && schema !== null && reactiveSchemas.has(schema as object); |
| 17 | } |
no test coverage detected