export function getArrMin (arr) { return Math.min.apply(null, arr) } export function getArrMax (arr) { return Math.max.apply(null, arr) }