artdaq_node_server  v1_00_08
 All Classes Namespaces Files Variables Pages
/scratch/workspace/artdaq-demo-v2_10_00/SLF7/s48-e14-prof/build/artdaq_node_server/v1_00_08/src/node_modules/xml2js/node_modules/xmlbuilder/node_modules/lodash/findLastKey.js

var users = { 'barney': { 'age': 36, 'active': true }, 'fred': { 'age': 40, 'active': false }, 'pebbles': { 'age': 1, 'active': true } };

_.findLastKey(users, function(o) { return o.age < 40; }); // => returns 'pebbles' assuming _.findKey returns 'barney'

// The _.matches iteratee shorthand. _.findLastKey(users, { 'age': 36, 'active': true }); // => 'barney'

// The _.matchesProperty iteratee shorthand. _.findLastKey(users, ['active', false]); // => 'fred'

// The _.property iteratee shorthand. _.findLastKey(users, 'active'); // => 'pebbles'