export function maxValue(values) {
if (values == `${[]}`) {
return 0
} else {
return Math.max.apply(null, values);
}