( value: unknown, filter: Readonly<Record<string, unknown>>, )
| 1121 | }; |
| 1122 | |
| 1123 | const matchesWhereOperators = ( |
| 1124 | value: unknown, |
| 1125 | filter: Readonly<Record<string, unknown>>, |
| 1126 | ): boolean => { |
| 1127 | for (const [operator, operand] of Object.entries(filter)) { |
| 1128 | if (!matchesWhereOperator(operator, value, operand)) return false; |
| 1129 | } |
| 1130 | return true; |
| 1131 | }; |
| 1132 | |
| 1133 | const rowMatchesPluginStorageWhere = ( |
| 1134 | row: CoreRow<"plugin_storage">, |
no test coverage detected