(a, b)
| 76 | } |
| 77 | |
| 78 | const queryHashSort: SortFn = (a, b) => a.queryHash.localeCompare(b.queryHash) |
| 79 | |
| 80 | const dateSort: SortFn = (a, b) => |
| 81 | a.state.dataUpdatedAt < b.state.dataUpdatedAt ? 1 : -1 |
nothing calls this directly
no outgoing calls
no test coverage detected