* Performs a deep comparison between each element in `collection` and the * source object, returning the first element that has equivalent property * values. * * **Note:** This method supports comparing arrays, booleans, `Date` objects, * numbers, `Object` objects, regexes,
(collection, source)
| 7890 | * // => 'fred' |
| 7891 | */ |
| 7892 | function findWhere(collection, source) { |
| 7893 | return find(collection, baseMatches(source)); |
| 7894 | } |
| 7895 | |
| 7896 | /** |
| 7897 | * Iterates over elements of `collection` invoking `iteratee` for each element. |
nothing calls this directly
no test coverage detected