deno.land / x / lodash@4.17.19 / npm-package / findLast.js

نووسراو ببینە
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
var createFind = require('./_createFind'), findLastIndex = require('./findLastIndex');
/** * This method is like `_.find` except that it iterates over elements of * `collection` from right to left. * * @static * @memberOf _ * @since 2.0.0 * @category Collection * @param {Array|Object} collection The collection to inspect. * @param {Function} [predicate=_.identity] The function invoked per iteration. * @param {number} [fromIndex=collection.length-1] The index to search from. * @returns {*} Returns the matched element, else `undefined`. * @example * * _.findLast([1, 2, 3, 4], function(n) { * return n % 2 == 1; * }); * // => 3 */var findLast = createFind(findLastIndex);
module.exports = findLast;
lodash

Version Info

Tagged at
3 years ago

External Dependencies

No external dependencies 🎉