File size: 271 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 11 12 |
export const sortThreadsByLatestActivity = (
threads: Array<Object>
): Array<Object> => {
// copy the array of threads
const unsortedThreads = threads.slice(0);
// for each thread
const sortedThreads = unsortedThreads.sort((x, y));
return sortedThreads;
};
|