Skip to content

Instantly share code, notes, and snippets.

@aramis-it
Created November 29, 2018 02:28
Show Gist options
  • Save aramis-it/f2c9931770ec4373a700913c125f8552 to your computer and use it in GitHub Desktop.
Save aramis-it/f2c9931770ec4373a700913c125f8552 to your computer and use it in GitHub Desktop.
array group by field
groupBy(xs, key) {
return xs.reduce(function(rv, x) {
(rv[x[key]] = rv[x[key]] || []).push(x);
return rv;
}, {});
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment