isEmpty.js 168 B

123456789
  1. 'use strict';
  2. module.exports = function isEmpty() {
  3. if (Array.isArray(this.items)) {
  4. return !this.items.length;
  5. }
  6. return !Object.keys(this.items).length;
  7. };