CoolFace
Datasetpublic

basant307/AI_Governance_Project

sourceHugging Faceapache-2.0updated 2mo agoView on Hugging Face
0likes45downloads
_baseExtremum.js33 linesDownload Raw Back to lodash-es
1import isSymbol from './isSymbol.js';2 3/**4 * The base implementation of methods like `_.max` and `_.min` which accepts a5 * `comparator` to determine the extremum value.6 *7 * @private8 * @param {Array} array The array to iterate over.9 * @param {Function} iteratee The iteratee invoked per iteration.10 * @param {Function} comparator The comparator used to compare values.11 * @returns {*} Returns the extremum value.12 */13function baseExtremum(array, iteratee, comparator) {14  var index = -1,15      length = array.length;16 17  while (++index < length) {18    var value = array[index],19        current = iteratee(value);20 21    if (current != null && (computed === undefined22          ? (current === current && !isSymbol(current))23          : comparator(current, computed)24        )) {25      var computed = current,26          result = value;27    }28  }29  return result;30}31 32export default baseExtremum;33 
basant307/AI_Governance_Project · CoolFace