(value)
| 15971 | |
| 15972 | // An internal function to generate lookup iterators. |
| 15973 | var lookupIterator = function(value) { |
| 15974 | return _.isFunction(value) ? value : function(obj){ return obj[value]; }; |
| 15975 | }; |
| 15976 | |
| 15977 | // Sort the object's values by a criterion produced by an iterator. |
| 15978 | _.sortBy = function(obj, value, context) { |
no outgoing calls
no test coverage detected