export function maxValue(values) {
if(values.length < 1){
return 0;
}
let maior = Math.max.apply(null, values)
return maior;