mirror of
https://github.com/whoisclebs/lodash.git
synced 2026-02-12 20:07:49 +00:00
Bump to v3.1.0.
This commit is contained in:
committed by
John-David Dalton
parent
3b2df88eab
commit
1608d89174
@@ -1,4 +1,4 @@
|
||||
define(['./filter', '../utility/matches'], function(filter, matches) {
|
||||
define(['../internal/baseMatches', './filter'], function(baseMatches, filter) {
|
||||
|
||||
/**
|
||||
* Performs a deep comparison between each element in `collection` and the
|
||||
@@ -28,7 +28,7 @@ define(['./filter', '../utility/matches'], function(filter, matches) {
|
||||
* // => ['barney', 'fred']
|
||||
*/
|
||||
function where(collection, source) {
|
||||
return filter(collection, matches(source));
|
||||
return filter(collection, baseMatches(source));
|
||||
}
|
||||
|
||||
return where;
|
||||
|
||||
Reference in New Issue
Block a user