( value: unknown, filter: Readonly<Record<string, unknown>>, )
| 875 | }; |
| 876 | |
| 877 | const matchesWhereOperators = ( |
| 878 | value: unknown, |
| 879 | filter: Readonly<Record<string, unknown>>, |
| 880 | ): boolean => { |
| 881 | for (const [operator, operand] of Object.entries(filter)) { |
| 882 | if (!matchesWhereOperator(operator, value, operand)) return false; |
| 883 | } |
| 884 | return true; |
| 885 | }; |
| 886 | |
| 887 | const rowMatchesPluginStorageWhere = ( |
| 888 | row: CoreRow<"plugin_storage">, |
no test coverage detected