(operator: string, value: unknown, operand: unknown)
| 1084 | isPluginStorageRecord(data) ? data[field] : undefined; |
| 1085 | |
| 1086 | const matchesWhereOperator = (operator: string, value: unknown, operand: unknown): boolean => { |
| 1087 | if (operator === "eq") return comparePluginStorageValues(value, operand) === 0; |
| 1088 | if (operator === "in") { |
| 1089 | return ( |
| 1090 | Array.isArray(operand) && |
| 1091 | operand.some((item) => comparePluginStorageValues(value, item) === 0) |
| 1092 | ); |
| 1093 | } |
| 1094 | if (operator === "gt") return comparePluginStorageValues(value, operand) > 0; |
| 1095 | if (operator === "gte") return comparePluginStorageValues(value, operand) >= 0; |
| 1096 | if (operator === "lt") return comparePluginStorageValues(value, operand) < 0; |
| 1097 | if (operator === "lte") return comparePluginStorageValues(value, operand) <= 0; |
| 1098 | return false; |
| 1099 | }; |
| 1100 | |
| 1101 | const matchesWhereOperators = ( |
| 1102 | value: unknown, |
no test coverage detected