Sha256: 597dfdf45138116afbe4d7c2d1c82bbd7ba8f635c549ccc43815f08ca89eece8
Contents?: true
Size: 745 Bytes
Versions: 153
Compression:
Stored size: 745 Bytes
Contents
var baseEachRight = require('../internal/baseEachRight'), createFind = require('../internal/createFind'); /** * This method is like `_.find` except that it iterates over elements of * `collection` from right to left. * * @static * @memberOf _ * @category Collection * @param {Array|Object|string} collection The collection to search. * @param {Function|Object|string} [predicate=_.identity] The function invoked * per iteration. * @param {*} [thisArg] The `this` binding of `predicate`. * @returns {*} Returns the matched element, else `undefined`. * @example * * _.findLast([1, 2, 3, 4], function(n) { * return n % 2 == 1; * }); * // => 3 */ var findLast = createFind(baseEachRight, true); module.exports = findLast;
Version data entries
153 entries across 80 versions & 8 rubygems