no message

This commit is contained in:
A1300399510
2024-01-03 10:32:21 +08:00
parent 5ad39c3e39
commit 42abde5285
987 changed files with 140612 additions and 3 deletions

20
.output/server/node_modules/lodash-es/_baseMean.js generated vendored Normal file
View File

@@ -0,0 +1,20 @@
import baseSum from './_baseSum.js';
/** Used as references for various `Number` constants. */
var NAN = 0 / 0;
/**
* The base implementation of `_.mean` and `_.meanBy` without support for
* iteratee shorthands.
*
* @private
* @param {Array} array The array to iterate over.
* @param {Function} iteratee The function invoked per iteration.
* @returns {number} Returns the mean.
*/
function baseMean(array, iteratee) {
var length = array == null ? 0 : array.length;
return length ? (baseSum(array, iteratee) / length) : NAN;
}
export default baseMean;