Fix typo in _.where.

Former-commit-id: e4da5a993a26eb3e408c9a2ddd408ee785671088
This commit is contained in:
John-David Dalton
2012-10-17 23:26:16 -07:00
parent 0aa158824f
commit 782df659bc

View File

@@ -2495,7 +2495,7 @@
result = [];
forEach(collection, function(value) {
var index = -1, passed = true;
var index = -1;
while (++index < length) {
var prop = props[index],
pass = value[prop] === properties[prop];