(result: boolean | null)
| 69 | * - null (UNKNOWN) → false (exclude row, matching SQL behavior) |
| 70 | */ |
| 71 | export function toBooleanPredicate(result: boolean | null): boolean { |
| 72 | return result === true |
| 73 | } |
| 74 | |
| 75 | /** |
| 76 | * Compiled expression evaluator function type |
no outgoing calls
no test coverage detected