Non puoi selezionare più di 25 argomenti Gli argomenti devono iniziare con una lettera o un numero, possono includere trattini ('-') e possono essere lunghi fino a 35 caratteri.
 
 
 

16 righe
252 B

  1. import ListCache from './_ListCache.js';
  2. /**
  3. * Removes all key-value entries from the stack.
  4. *
  5. * @private
  6. * @name clear
  7. * @memberOf Stack
  8. */
  9. function stackClear() {
  10. this.__data__ = new ListCache;
  11. this.size = 0;
  12. }
  13. export default stackClear;