no message

This commit is contained in:
A1300399510
2024-05-15 12:08:59 +08:00
parent a2b20f1738
commit 3b0cff8ca4
900 changed files with 98716 additions and 138 deletions

25
.output/server/node_modules/lodash-es/findLast.js generated vendored Normal file
View File

@@ -0,0 +1,25 @@
import createFind from './_createFind.js';
import findLastIndex from './findLastIndex.js';
/**
* 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);
export default findLast;