export function maxValue(values) { if(values.length === 0){ return 0; } return Math.max(...values); }