b22cf3ba2bb4d9fd0d2d2bbe3b604c54edc35a9dbcd9f8de305d86d65992e5f409c3cc4ae33687f92c13425e6185169a46b2a6f8cb235554bbf1eccd18645b 269 B

1234567891011121314
  1. /**
  2. * Gets the stack value for `key`.
  3. *
  4. * @private
  5. * @name get
  6. * @memberOf Stack
  7. * @param {string} key The key of the value to get.
  8. * @returns {*} Returns the entry value.
  9. */
  10. function stackGet(key) {
  11. return this.__data__.get(key);
  12. }
  13. export default stackGet;