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

var users = [ { 'user': 'barney', 'active': true }, { 'user': 'fred', 'active': false }, { 'user': 'pebbles', 'active': false } ];

_.takeRightWhile(users, function(o) { return !o.active; }); // => objects for ['fred', 'pebbles']

// The _.matches iteratee shorthand. _.takeRightWhile(users, { 'user': 'pebbles', 'active': false }); // => objects for ['pebbles']

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

// The _.property iteratee shorthand. _.takeRightWhile(users, 'active'); // => []