-
-
Save ozzyr/3ff7cbeb756d878404f3fbf9fc04c3d3 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