deno.land / x / lodash@4.17.19 / npm-package / _baseExtremum.js

_baseExtremum.js
نووسراو ببینە
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
var isSymbol = require('./isSymbol');
/** * The base implementation of methods like `_.max` and `_.min` which accepts a * `comparator` to determine the extremum value. * * @private * @param {Array} array The array to iterate over. * @param {Function} iteratee The iteratee invoked per iteration. * @param {Function} comparator The comparator used to compare values. * @returns {*} Returns the extremum value. */function baseExtremum(array, iteratee, comparator) { var index = -1, length = array.length;
while (++index < length) { var value = array[index], current = iteratee(value);
if (current != null && (computed === undefined ? (current === current && !isSymbol(current)) : comparator(current, computed) )) { var computed = current, result = value; } } return result;}
module.exports = baseExtremum;
lodash

Version Info

Tagged at
3 years ago

External Dependencies

No external dependencies 🎉