Skip to content

Instantly share code, notes, and snippets.

@balanza
Created October 23, 2015 13:34
Show Gist options
  • Save balanza/416a5328927f7255e4cf to your computer and use it in GitHub Desktop.
Save balanza/416a5328927f7255e4cf to your computer and use it in GitHub Desktop.
_.chain(obj)
.map(function(e){
//my mapping operation
})
.reduce(function(m, e){
//my reducing operation
})
.filter(function(e){
//guess what?
})
.sortBy('sort_key')
.value();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment