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