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