UNPKG

@a11ywatch/core

Version:
12 lines 330 B
"use strict"; 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