Last active
August 29, 2015 14:07
lodash and underscore .where
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//underscore does not search nested objects in .where | |
//lodash does | |
var _ = require('underscore'); | |
var lodash = require('lodash'); | |
var object = { | |
nestedObject: { | |
value: true | |
} | |
}; | |
var list = [object]; | |
console.log(_.where(list, { nestedObject: { value: true } } ).length); //0 | |
console.log(lodash.where(list, { nestedObject: { value: true } } ).length); //1 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment