Dashboard sipadu mbip
Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

forget.js 182B

1234567891011
  1. 'use strict';
  2. module.exports = function forget(key) {
  3. if (Array.isArray(this.items)) {
  4. this.items.splice(key, 1);
  5. } else {
  6. delete this.items[key];
  7. }
  8. return this;
  9. };