Created
March 28, 2014 19:06
-
-
Save benaston/9840598 to your computer and use it in GitHub Desktop.
map reduce
This file contains 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
return _bookmarks.map(function (a) { | |
return _.any(a, function (i) { | |
return i === id; | |
}); | |
}).reduce(function (prev, curr) { | |
return prev || curr; | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment