( value: unknown, filter: Readonly<Record<string, unknown>>, )
| 1099 | }; |
| 1100 | |
| 1101 | const matchesWhereOperators = ( |
| 1102 | value: unknown, |
| 1103 | filter: Readonly<Record<string, unknown>>, |
| 1104 | ): boolean => { |
| 1105 | for (const [operator, operand] of Object.entries(filter)) { |
| 1106 | if (!matchesWhereOperator(operator, value, operand)) return false; |
| 1107 | } |
| 1108 | return true; |
| 1109 | }; |
| 1110 | |
| 1111 | const rowMatchesPluginStorageWhere = ( |
| 1112 | row: CoreRow<"plugin_storage">, |
no test coverage detected