(sortKey1: SortKey, sortKey2: SortKey)
| 39 | const letters = (getCell: GetCell) => (getCell('c1') + '').split(''); |
| 40 | |
| 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) => |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…