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.

10 lines
218 B

4 years ago
  1. 'use strict';
  2. module.exports = function count() {
  3. var arrayLength = 0;
  4. if (Array.isArray(this.items)) {
  5. arrayLength = this.items.length;
  6. }
  7. return Math.max(Object.keys(this.items).length, arrayLength);
  8. };