Ohm-Management - Projektarbeit B-ME
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

_stackClear.js 254B

123456789101112131415
  1. var ListCache = require('./_ListCache');
  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. module.exports = stackClear;