This repository has been archived on 2024-07-22. You can view files and clone it, but cannot push or open issues or pull requests.
2019-07-15 21:30:47 -07:00
|
|
|
export default function compareId (id1, id2) {
|
2018-05-27 10:33:28 -07:00
|
|
|
if (id1 === id2) {
|
|
|
|
return 0;
|
|
|
|
}
|
2019-07-15 21:30:47 -07:00
|
|
|
|
2018-05-27 10:33:28 -07:00
|
|
|
if (id1.length === id2.length) {
|
|
|
|
return id1 > id2 ? 1 : -1;
|
|
|
|
} else {
|
|
|
|
return id1.length > id2.length ? 1 : -1;
|
|
|
|
}
|
2019-07-15 21:30:47 -07:00
|
|
|
};
|