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