( value: unknown, filter: Readonly<Record<string, unknown>>, )
| 1399 | }; |
| 1400 | |
| 1401 | const matchesWhereOperators = ( |
| 1402 | value: unknown, |
| 1403 | filter: Readonly<Record<string, unknown>>, |
| 1404 | ): boolean => { |
| 1405 | for (const [operator, operand] of Object.entries(filter)) { |
| 1406 | if (!matchesWhereOperator(operator, value, operand)) return false; |
| 1407 | } |
| 1408 | return true; |
| 1409 | }; |
| 1410 | |
| 1411 | const rowMatchesPluginStorageWhere = ( |
| 1412 | row: CoreRow<"plugin_storage">, |
no test coverage detected