| 123456789101112 |
- export const compare = (a: string, b: string, sort: string): number => {
- if (sort === 'asc') {
- if (a > b) return 1;
- else if (b > a) return -1;
- return 0;
- } else if (sort === 'desc') {
- if (a > b) return -1;
- else if (b > a) return 1;
- return 0;
- }
- return 0;
- };
|