Created
October 23, 2015 13:34
-
-
Save balanza/416a5328927f7255e4cf to your computer and use it in GitHub Desktop.
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
_.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