(left: SQLWrapper, right: unknown)
| 213 | * @see gt for a strictly greater-than condition |
| 214 | */ |
| 215 | export const gte: BinaryOperator = (left: SQLWrapper, right: unknown): SQL => { |
| 216 | return sql`${left} >= ${bindIfParam(right, left)}`; |
| 217 | }; |
| 218 | |
| 219 | /** |
| 220 | * Test that the first expression passed is less than |