( value: unknown, filter: Readonly<Record<string, unknown>>, )
| 1112 | }; |
| 1113 | |
| 1114 | const matchesWhereOperators = ( |
| 1115 | value: unknown, |
| 1116 | filter: Readonly<Record<string, unknown>>, |
| 1117 | ): boolean => { |
| 1118 | for (const [operator, operand] of Object.entries(filter)) { |
| 1119 | if (!matchesWhereOperator(operator, value, operand)) return false; |
| 1120 | } |
| 1121 | return true; |
| 1122 | }; |
| 1123 | |
| 1124 | const rowMatchesPluginStorageWhere = ( |
| 1125 | row: CoreRow<"plugin_storage">, |
no test coverage detected