You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
453 B
26 lines
453 B
5 years ago
|
import number from "./number";
|
||
|
|
||
|
export default function(values, valueof) {
|
||
|
var n = values.length,
|
||
|
m = n,
|
||
|
i = -1,
|
||
|
value,
|
||
|
sum = 0;
|
||
|
|
||
|
if (valueof == null) {
|
||
|
while (++i < n) {
|
||
|
if (!isNaN(value = number(values[i]))) sum += value;
|
||
|
else --m;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
else {
|
||
|
while (++i < n) {
|
||
|
if (!isNaN(value = number(valueof(values[i], i, values)))) sum += value;
|
||
|
else --m;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
if (m) return sum / m;
|
||
|
}
|