dropRightWhile source npm
_.dropRightWhile(array, [predicate=_.identity])
Creates a slice of array
excluding elements dropped from the end.
Elements are dropped until predicate
returns falsey. The predicate is
invoked with three arguments: (value, index, array).
Arguments
- array (Array)
The array to query.
- [predicate=_.identity] (Function|Object|string)
The function invoked per iteration.
Returns (Array)
Returns the slice of array
.
Example
var resolve = _.partial(_.map, _, 'user');
var users = [
{ 'user': 'barney', 'active': true },
{ 'user': 'fred', 'active': false },
{ 'user': 'pebbles', 'active': false }
];
resolve( _.dropRightWhile(users, function(o) { return !o.active; }) );
// => ['barney']
// using the `_.matches` callback shorthand
resolve( _.dropRightWhile(users, { 'user': 'pebbles', 'active': false }) );
// => ['barney', 'fred']
// using the `_.matchesProperty` callback shorthand
resolve( _.dropRightWhile(users, ['active', false]) );
// => ['barney']
// using the `_.property` callback shorthand
resolve( _.dropRightWhile(users, 'active') );
// => ['barney', 'fred', 'pebbles']