8
0

_stackDelete.js 335 B

1234567891011121314
  1. /**
  2. * Removes `key` and its value from the stack.
  3. *
  4. * @private
  5. * @name delete
  6. * @memberOf Stack
  7. * @param {string} key The key of the value to remove.
  8. * @returns {boolean} Returns `true` if the entry was removed, else `false`.
  9. */
  10. function stackDelete(key) {
  11. return this.__data__['delete'](key);
  12. }
  13. export default stackDelete;