(data: Record<string, any>)
| 155 | } |
| 156 | |
| 157 | function lte(data: Record<string, any>): string { |
| 158 | return `${data.name}:<=${JSON.stringify(data.value)}`; |
| 159 | } |
| 160 | |
| 161 | function eq(data: Record<string, any>): string { |
| 162 | return `${data.name}:${JSON.stringify(data.value)}`; |
no outgoing calls
no test coverage detected