d2-ui
Version:
44 lines (40 loc) • 960 B
JavaScript
;
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.default = arrayMin;
/**
* Return the lowest value (number) in the given array
*
* @param {Array} array The array to be scanned
* @returns {Array} The lowest value
*
* @throws {TypeError} When the passed array is not actually an array.
*
* @example
* const sourceArray = [3,1,2];
* arrayMax(sourceArray); // Returns: 1
*
* @example
* arrayClean() // throws: Cannot read property 'length' of undefined
*/
function arrayMin(array, comparisonFn) {
var i = 0,
ln = array.length,
item,
min = array[0];
for (; i < ln; i++) {
item = array[i];
if (comparisonFn) {
if (comparisonFn(min, item) === 1) {
min = item;
}
} else {
if (item < min) {
min = item;
}
}
}
return min;
}
//# sourceMappingURL=arrayMin.js.map