mirror of
https://github.com/whoisclebs/lodash.git
synced 2026-02-07 18:07:49 +00:00
Fix typo in _.where.
Former-commit-id: e4da5a993a26eb3e408c9a2ddd408ee785671088
This commit is contained in:
@@ -2495,7 +2495,7 @@
|
|||||||
result = [];
|
result = [];
|
||||||
|
|
||||||
forEach(collection, function(value) {
|
forEach(collection, function(value) {
|
||||||
var index = -1, passed = true;
|
var index = -1;
|
||||||
while (++index < length) {
|
while (++index < length) {
|
||||||
var prop = props[index],
|
var prop = props[index],
|
||||||
pass = value[prop] === properties[prop];
|
pass = value[prop] === properties[prop];
|
||||||
|
|||||||
Reference in New Issue
Block a user