mirror of
https://github.com/yingziwu/mastodon.git
synced 2026-02-04 11:35:13 +00:00
11 lines
222 B
TypeScript
11 lines
222 B
TypeScript
export function compareId(id1: string, id2: string) {
|
|
if (id1 === id2) {
|
|
return 0;
|
|
}
|
|
|
|
if (id1.length === id2.length) {
|
|
return id1 > id2 ? 1 : -1;
|
|
} else {
|
|
return id1.length > id2.length ? 1 : -1;
|
|
}
|
|
}
|