@a11ywatch/core
Version:
a11ywatch central API
12 lines • 330 B
JavaScript
Object.defineProperty(exports, "__esModule", { value: true });
exports.arrayAverage = void 0;
function arrayAverage(arr = []) {
let sum = 0;
for (const i in arr) {
sum += arr[i];
}
return sum / (arr.length || 1);
}
exports.arrayAverage = arrayAverage;
//# sourceMappingURL=calculations.js.map
;