anvyne
anvyne
`_.findKeys` is a nice method! For what ever it is worth, you could also save some bytes on `_.filter` by using `_.findKeys`: _.filter = function(obj, predicate, context) { return _.map(_.findKeys(obj,...
There is a sort of precedence, actually, if we look at `_.find`, which is analogous to `_.filter`. `_.find` returns the first value that passes a truth test, while `_.filter` returns...
I think that the conditional expression after `||` is used to favor some element in the collection over the default `Infinity` result. For `_.min`, `Infinity` is the default result. It...