react-code-dataset / spectrum /src /helpers /directMessageThreads.js
Devendra174's picture
Upload folder using huggingface_hub
1e92f2d verified
raw
history blame
271 Bytes
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;
};