/scratch/workspace/artdaq-demo-v2_10_00/SLF6/s47-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'

 All Classes Namespaces Files

Generated on 1 Jun 2017 for artdaq_node_server by  doxygen 1.6.1