2023-05-10 03:02:12 +10:00
|
|
|
export function compareId(id1: string, id2: string) {
|
2018-04-19 00:50:19 +10:00
|
|
|
if (id1 === id2) {
|
|
|
|
return 0;
|
|
|
|
}
|
2019-07-16 14:30:47 +10:00
|
|
|
|
2018-04-19 00:50:19 +10:00
|
|
|
if (id1.length === id2.length) {
|
|
|
|
return id1 > id2 ? 1 : -1;
|
|
|
|
} else {
|
|
|
|
return id1.length > id2.length ? 1 : -1;
|
|
|
|
}
|
2022-12-19 02:51:37 +11:00
|
|
|
}
|