d562957ef22a831f6222259cdc48c13fd5c39066
[yaffs-website] / node_modules / uncss / node_modules / lodash / dropRightWhile.js
1 var baseIteratee = require('./internal/baseIteratee'),
2     baseWhile = require('./internal/baseWhile');
3
4 /**
5  * Creates a slice of `array` excluding elements dropped from the end.
6  * Elements are dropped until `predicate` returns falsey. The predicate is
7  * invoked with three arguments: (value, index, array).
8  *
9  * @static
10  * @memberOf _
11  * @category Array
12  * @param {Array} array The array to query.
13  * @param {Function|Object|string} [predicate=_.identity] The function invoked per iteration.
14  * @returns {Array} Returns the slice of `array`.
15  * @example
16  *
17  * var users = [
18  *   { 'user': 'barney',  'active': true },
19  *   { 'user': 'fred',    'active': false },
20  *   { 'user': 'pebbles', 'active': false }
21  * ];
22  *
23  * _.dropRightWhile(users, function(o) { return !o.active; });
24  * // => objects for ['barney']
25  *
26  * // using the `_.matches` iteratee shorthand
27  * _.dropRightWhile(users, { 'user': 'pebbles', 'active': false });
28  * // => objects for ['barney', 'fred']
29  *
30  * // using the `_.matchesProperty` iteratee shorthand
31  * _.dropRightWhile(users, ['active', false]);
32  * // => objects for ['barney']
33  *
34  * // using the `_.property` iteratee shorthand
35  * _.dropRightWhile(users, 'active');
36  * // => objects for ['barney', 'fred', 'pebbles']
37  */
38 function dropRightWhile(array, predicate) {
39   return (array && array.length)
40     ? baseWhile(array, baseIteratee(predicate, 3), true, true)
41     : [];
42 }
43
44 module.exports = dropRightWhile;