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