2022-10-27 15:07:13 +00:00
|
|
|
export function maxValue(values) {
|
|
|
|
// implementar logica aqui
|
2022-10-28 18:26:05 +00:00
|
|
|
if (values.length === 0) {
|
|
|
|
return 0;
|
|
|
|
} else {
|
|
|
|
const maxValue = Math.max(...Object.values(values));
|
|
|
|
return maxValue
|
|
|
|
}
|
2022-10-27 15:07:13 +00:00
|
|
|
}
|