Cleanup - unused files / unused exports / duplicate exports
[ProtonMail-WebClient.git] / packages / utils / compare.ts
blob4043051167fb41879aa3b62ba3bb8d788ad7d666
1 /**
2  * Basic comparator function that transforms order via >,< into the numeric order that sorting functions typically require
3  */
4 const compare = (a: any, b: any) => {
5     if (a > b) {
6         return 1;
7     }
8     if (a < b) {
9         return -1;
10     }
11     return 0;
14 export default compare;