(value: unknown)
| 104 | } |
| 105 | |
| 106 | export function isLteOperator(value: unknown): value is LteOperator { |
| 107 | return ( |
| 108 | typeof value === 'object' && |
| 109 | value != null && |
| 110 | '$$lte' in value && |
| 111 | typeof value['$$lte'] === 'number' |
| 112 | ); |
| 113 | } |
| 114 | |
| 115 | export const SpecialOperatorKeys = [ |
| 116 | '$$exists', |
no outgoing calls
no test coverage detected