Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 | 1x 1x 1x 23x 8x 1x |
// sort alphabetically
export const sortAlphabetically = (a: string, b: string) => {
if (a < b) return -1;
if (a > b) return 1;
return 0;
} |