summaryrefslogtreecommitdiff
path: root/includes/external/school/node_modules/lodash/mean.js
diff options
context:
space:
mode:
Diffstat (limited to 'includes/external/school/node_modules/lodash/mean.js')
-rw-r--r--includes/external/school/node_modules/lodash/mean.js22
1 files changed, 0 insertions, 22 deletions
diff --git a/includes/external/school/node_modules/lodash/mean.js b/includes/external/school/node_modules/lodash/mean.js
deleted file mode 100644
index e3ffff6..0000000
--- a/includes/external/school/node_modules/lodash/mean.js
+++ /dev/null
@@ -1,22 +0,0 @@
-var baseMean = require('./_baseMean'),
- identity = require('./identity');
-
-/**
- * Computes the mean of the values in `array`.
- *
- * @static
- * @memberOf _
- * @since 4.0.0
- * @category Math
- * @param {Array} array The array to iterate over.
- * @returns {number} Returns the mean.
- * @example
- *
- * _.mean([4, 2, 8, 6]);
- * // => 5
- */
-function mean(array) {
- return baseMean(array, identity);
-}
-
-module.exports = mean;