Skip to content

Instantly share code, notes, and snippets.

@sherpc
Created June 22, 2016 07:39
Show Gist options
  • Save sherpc/960cf47c14fc426e047205f284855234 to your computer and use it in GitHub Desktop.
Save sherpc/960cf47c14fc426e047205f284855234 to your computer and use it in GitHub Desktop.
var xs = _.chain(results)
.sortBy(function (x) { return x.pos; })
.groupBy("level")
.map(function (value, key) { return { depth: key, hits: value }; })
.value();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment