UNPKG

112 BPlain TextView Raw
1export function sortByID(a: { id: string }, b: { id: string }): number {
2 return a.id.localeCompare(b.id);
3}