keys.js 221 B

1234567891011
  1. 'use strict';
  2. module.exports = function keys() {
  3. var collection = Object.keys(this.items);
  4. if (Array.isArray(this.items)) {
  5. collection = collection.map(Number);
  6. }
  7. return new this.constructor(collection);
  8. };