/scratch/workspace/artdaq-demo-v2_10_00/SLF6/s48-e10-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'); // => []

 All Classes Namespaces Files

Generated on 1 Jun 2017 for artdaq_node_server by  doxygen 1.6.1