( sortKey1: SortKey, sortKey2: SortKey, )
| 10 | export * from './hash.ts'; |
| 11 | |
| 12 | export const defaultSorter: typeof defaultSorterDecl = ( |
| 13 | sortKey1: SortKey, |
| 14 | sortKey2: SortKey, |
| 15 | ): number => ((sortKey1 ?? 0) < (sortKey2 ?? 0) ? -1 : 1); |
no outgoing calls
no test coverage detected
searching dependent graphs…