81046c10ba7e79b815ef74dddaee436a8961ee8426e7105660e23a8ca9a552938691cfbb2da437067abbad0ce695ba8eba3426eebd6458f2f1839c04c99343 252 B

123456789101112131415
  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;