export function maxValue(values) { const arr = values; if (arr.length == 0) return 0; const max1 = arr.reduce(function (a, b) { return Math.max(a, b); }, -Infinity); return max1; }