Files
website-astro-stefanimhoff.de/src/utils/sort-by-alphabet.ts
2023-06-09 18:35:09 +02:00

4 lines
105 B
TypeScript

export const sortByAlphabet = (a: any, b: any) => {
return a.data.title.localeCompare(b.data.title);
};