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.

8 lines
213 B

4 years ago
  1. 'use strict';
  2. module.exports = function average(key) {
  3. if (key === undefined) {
  4. return this.sum() / this.items.length;
  5. }
  6. return new this.constructor(this.items).pluck(key).sum() / this.items.length;
  7. };