Last active
July 15, 2024 20:48
-
-
Save suissa/4653e18db66174f5aab768bdb583804c to your computer and use it in GitHub Desktop.
Group by bem facinho
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const groupBy = (xs, key) => xs.reduce((rv, x) => ({ | |
...rv, [x[key]]: [...(rv[x[key]] || []), x] | |
}), {}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment