mirror of
https://git.kescher.at/CatCatNya/catstodon.git
synced 2024-11-23 23:58:06 +01:00
96e99e2170
Port 51b83ed195
to glitch-soc
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;
|
|
}
|
|
}
|