(sortKey1: SortKey, sortKey2: SortKey, sliceId: Id)
| 45 | const oddAscend = (sortKey1: SortKey, sortKey2: SortKey, sliceId: Id) => |
| 46 | sliceId == 'odd' ? ((sortKey1 ?? 0) > (sortKey2 ?? 0) ? 1 : -1) : 0; |
| 47 | const oddDescend = (sortKey1: SortKey, sortKey2: SortKey, sliceId: Id) => |
| 48 | sliceId == 'odd' ? ((sortKey1 ?? 0) < (sortKey2 ?? 0) ? 1 : -1) : 0; |
| 49 | |
| 50 | beforeEach(() => { |
| 51 | store = createStore(); |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…