CoolFace
Datasetpublic

basant307/AI_Governance_Project

sourceHugging Faceapache-2.0updated 2mo agoView on Hugging Face
0likes45downloads
min.js30 linesDownload Raw Back to lodash
1var baseExtremum = require('./_baseExtremum'),2    baseLt = require('./_baseLt'),3    identity = require('./identity');4 5/**6 * Computes the minimum value of `array`. If `array` is empty or falsey,7 * `undefined` is returned.8 *9 * @static10 * @since 0.1.011 * @memberOf _12 * @category Math13 * @param {Array} array The array to iterate over.14 * @returns {*} Returns the minimum value.15 * @example16 *17 * _.min([4, 2, 8, 6]);18 * // => 219 *20 * _.min([]);21 * // => undefined22 */23function min(array) {24  return (array && array.length)25    ? baseExtremum(array, identity, baseLt)26    : undefined;27}28 29module.exports = min;30 
basant307/AI_Governance_Project · CoolFace