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