(sortKey1: SortKey, sortKey2: SortKey)
| 41 | const ascend = (sortKey1: SortKey, sortKey2: SortKey): number => |
| 42 | (sortKey1 ?? 0) > (sortKey2 ?? 0) ? 1 : -1; |
| 43 | const descend = (sortKey1: SortKey, sortKey2: SortKey): number => |
| 44 | (sortKey1 ?? 0) < (sortKey2 ?? 0) ? 1 : -1; |
| 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) => |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…