Skip to content

Instantly share code, notes, and snippets.

@rik
Created December 26, 2024 15:03
Show Gist options
  • Save rik/90c45d5fb657a17eb3f6bff140ad65d6 to your computer and use it in GitHub Desktop.
Save rik/90c45d5fb657a17eb3f6bff140ad65d6 to your computer and use it in GitHub Desktop.
Python > JS
gens.sort((a, b) => {
const messagesCmp = b.messages - a.messages
if (messagesCmp != 0) {
return messagesCmp
}
return b.anciennete - a.anciennete
})
gens.sort(attrgetter('messages', 'anciennete'))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment