2023-05-09 21:41:18 +00:00
|
|
|
export function compareId(id1: string, id2: string) {
|
2018-05-27 17:33:28 +00:00
|
|
|
if (id1 === id2) {
|
|
|
|
return 0;
|
|
|
|
}
|
2019-07-16 04:30:47 +00:00
|
|
|
|
2018-05-27 17:33:28 +00:00
|
|
|
if (id1.length === id2.length) {
|
|
|
|
return id1 > id2 ? 1 : -1;
|
|
|
|
} else {
|
|
|
|
return id1.length > id2.length ? 1 : -1;
|
|
|
|
}
|
2023-02-03 19:52:07 +00:00
|
|
|
}
|